Querying user settings

Hi,
After quite a bit of experience developing ASP gadgets for version 4.5, we've recently moved to Plumtree version 5 and .Net.
One thing we would like to be able to do is provide a web service for use by other applications (outside the portal) which could request the retrieval of a specific User setting for a given user.
I've seen some examples of similar challenges, but still a bit bewildered how to go about this (on the Plumtree side of things, the actual process of building our own web service is fine).
The web service will be built with .Net & WSE, on a server with the Plumtree EDK installed. I've checked and our Plumtree installation also has the PTAPI QueryInterfaceAPI web service available.
Should I use a PRC session, and impersonate the user I need to get the settings for, or will setting up a session as an admin user be sufficient to query the User settings object for another user?
Any help offered would be gratefully received.
Thanks,
Charles

Sorry - I'm a doofus. I didn't read your post completely.
You're right - if you want to attach to this service w/o going through Plumtree/BEA first to obtain a login ID you'd need to impersonate a user (I'd suggest a secured admin account where the credentials are encrypted).
Try this... (server API)
In your web.config
<appSettings> <add key="UserID" value="administrator" /> <add key="UserPassword" value="" /></appSettings>
Encrypt these or do something to protect them.
Read: How to use the ASP.NET utility to encrypt credentials and session state connection strings
http://support.microsoft.com/default.aspx?scid=kb;en-us;329290
Code Sample for Password Reset (Similar thing)
'//create an admin connection Dim ptAdminSession As IPTSession = New Session 'PortalObjectsFactory.CreateSession ptAdminSession.Connect("administrator", "", Nothing) '//reference web.config values instead
Dim sNewPassword As String = ""
'//start user impersonation Dim ptUserSessionTemp As IPTSession = ptAdminSession.ImpersonateUser(iUserID)
'//get the user's email address Dim sEmail As String = "" sEmail = ptUserSessionTemp.GetUserInfo.GetEmail
If sEmail.Length > 0 Then '//open the user for editing Dim oUser As IPTUser = ptAdminSession.GetUsers().Open(iUserID, True)
'//reset the password oUser.SetPassword(sNewPassword)
'//mungle with server context - don't ask why we do this after we have a handle on the object - I don't know '//there's likely a very good reason for it, I'm sure Dim mySC As IPTServerContext = oUser.GetInterfaces("IPTServerContext") mySC.Store() mySC.UnlockObject()
'//send email
Else '//throw an exception here - return "no email address"
End If

Similar Messages

  • Set operations in AdHoc Query - user settings

    Hi
    I am checking out the Set operations in AdHoc Query.  The documentation says you should save the setting "Set operations shown" as a user setting.  Could anyone advise me where this is set?  I can't find a parameter for it, and can't find it in the regular settings.
    Any help appreciated.
    Kirsten

    The save is automatic upon exiting Ad Hoc query.  Once you do "Show Set Operations", work on a query, save and exit, the next time you open Ad Hoc query, Set Operations tab is displayed by default.
    Regards,
    RN.

  • Query security settings for users

    Hi again.
    I'm looking for a way of querying security settings for a user.
    ie I understand that company/division etc security is implemented through responsibilities.
    In which case, is there a way to retrieve those exclusions per user?
    (eg User 1 cant see company 50)
    Thanks,
    g.

    Hi again.
    I'm looking for a way of querying security settings for a user.
    ie I understand that company/division etc security is implemented through responsibilities.
    In which case, is there a way to retrieve those exclusions per user?
    (eg User 1 cant see company 50)
    Thanks,
    g.

  • Query user ACL results in exception, PortalException, Invalid pointer AxisFault

    Hi,
    I am developing a remote portlet application in Java for plumtree portal v 5.0.3, using EDK library v 5.0. The requirement is to determine if the user accessing the application has "Admin" privileges for the portlet or not.. For this, I query User (and all the user's groups) ACL to check if the AccessLevel is Admin. This method seemed to work fine on the development environment but fails on staging environment. I have checked the SOAP-API-URI and other settings like sending Login Tokens etc, and all seems to be fine. The application is written in Java hosted on a UNIX box, while the portal is on Windows environment.
    Following is the code where the error occurs:
    IPortletContext edk = PortletContextFactory.createPortletContext(request, response); IRemoteSession remoteSession = edk.getRemotePortalSession(); //IRemoteSession remoteSession = RemoteSessionFactory.getTokenContext(edk.getRequest().getRemoteAPIEndpoint(), edk.getRequest().getLoginToken()); -- Tried this but no difference
    IPortletManager portletManager = remoteSession.getPortletManager(); logger.debug("Got Remote portal session");
    int portletId = edk.getRequest().getPortletID(); IACL acl = portletManager.queryACL(portletId);<-- This is where it breaks
    Following is the exception stacktrace that I get.
    AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server faultString: Server was unable to process request. --> Invalid pointer faultActor: null faultDetail: stackTrace: AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server faultString: Server was unable to process request. --> Invalid pointer faultActor: null faultDetail:
    Server was unable to process request. --> Invalid pointer at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:135) at org.apache.axis.encoding.DeserializationContextImpl.endElement(DeserializationContextImpl.java:949) at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1203) at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:294) at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:261) at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:147) at oracle.xml.jaxp.JXSAXParser.parse(JXSAXParser.java:286) at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:232) at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:546) at org.apache.axis.Message.getSOAPEnvelope(Message.java:377) at org.apache.axis.client.Call.invokeEngine(Call.java:2132) at org.apache.axis.client.Call.invoke(Call.java:2102) at org.apache.axis.client.Call.invoke(Call.java:1851) at org.apache.axis.client.Call.invoke(Call.java:1777) at org.apache.axis.client.Call.invoke(Call.java:1315) at com.plumtree.remote.prc.soap.DirectoryAPISoapBindingStub.queryACL(Unknown Source) at com.plumtree.remote.prc.soap.DirectoryProcedures.QueryACL(Unknown Source) at com.plumtree.remote.prc.xp.XPACLPersistence.QueryEntries(Unknown Source) at com.plumtree.remote.prc.xp.XPACLPersistence.QueryACL(Unknown Source) at com.plumtree.remote.prc.xp.XPObjectManager.queryACL(Unknown Source) at com.plumtree.remote.prc.ObjectManagerWrapper.queryACL(Unknown Source) at com.enbridge.txb.web.shared.security.PortalAuthenticationUtil.isUserACLAdmin(PortalAuthenticationUtil.java:159) at com.enbridge.txb.web.shared.security.SetAdminPrefsAction.getAdminPrefs(SetAdminPrefsAction.java:82) at java.lang.reflect.Method.invoke(Native Method) at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:278) at com.enbridge.txb.web.shared.BaseAction.execute(BaseAction.java:116) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:465) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1422) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:505) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65) at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:560) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:148) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:72) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Unknown Source)
    Server was unable to process request. --> Invalid pointer at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:135) at org.apache.axis.encoding.DeserializationContextImpl.endElement(DeserializationContextImpl.java:949) at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1203) at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:294) at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:261) at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:147) at oracle.xml.jaxp.JXSAXParser.parse(JXSAXParser.java:286) at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:232) at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:546) at org.apache.axis.Message.getSOAPEnvelope(Message.java:377) at org.apache.axis.client.Call.invokeEngine(Call.java:2132) at org.apache.axis.client.Call.invoke(Call.java:2102) at org.apache.axis.client.Call.invoke(Call.java:1851) at org.apache.axis.client.Call.invoke(Call.java:1777) at org.apache.axis.client.Call.invoke(Call.java:1315) at com.plumtree.remote.prc.soap.DirectoryAPISoapBindingStub.queryACL(Unknown Source) at com.plumtree.remote.prc.soap.DirectoryProcedures.QueryACL(Unknown Source) at com.plumtree.remote.prc.xp.XPACLPersistence.QueryEntries(Unknown Source) at com.plumtree.remote.prc.xp.XPACLPersistence.QueryACL(Unknown Source) at com.plumtree.remote.prc.xp.XPObjectManager.queryACL(Unknown Source) at com.plumtree.remote.prc.ObjectManagerWrapper.queryACL(Unknown Source) at com.enbridge.txb.web.shared.security.PortalAuthenticationUtil.isUserACLAdmin(PortalAuthenticationUtil.java:159) at com.enbridge.txb.web.shared.security.SetAdminPrefsAction.getAdminPrefs(SetAdminPrefsAction.java:82) at java.lang.reflect.Method.invoke(Native Method) at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:278) at com.enbridge.txb.web.shared.BaseAction.execute(BaseAction.java:116) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:465) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1422) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:505) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65) at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:560) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:148) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:72) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Unknown Source)
    can anyone please help me? :-(
    Thanks,Gaurav

    Hi,
    By default on CE SLD is not available. Please go through this to configure SLD
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20c58fff-0c62-2b10-4381-9ac4d920a8cc
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c09527da-39a7-2b10-9f99-c6a007e516a5
    Regards
    Ayyapparaj

  • What is the best solution when dealing with user settings

    We have a webapp, when a user logs in, all the user en application settings are read (only once) from the database and stored in a session bean (for quick access).
    But when some application setting is changed, I want to tell all the session beans that they need to reload the settings.
    Is there a good solution for this?
    Thanks in advance.

    There are several ways to do this:
    1) Put a timestamp on the application settings tables whenever they are changed. At the beginning of each request, send a small query just for this timestamp and compare it to a timestamp for when the session was created. If it is newer then the session then force a full refresh of the session data, otherwise keep using pre-loaded session data. This keeps normal operation quick since the SQL needed for the intial test is simple and quick, but will get the user the new information they need when they need it.
    2) Collect your sessions into an external collection stored inside application scope. Have a trigger that when the application settings change, the session objects are iterated through and updated. This way the settings may be updated without the user making a request - and the updates may be time-invisible to the user. But you could get into situations where you are updating settings at the same time you are reading settings, so you will need to synchronize your access.
    3) Don't put application settings in the session. The session should be for user settings only. The application scope (Servlet Context) should be used to store the application settings. As such, when application level changes to the DB are made, the application-level object is reloaded. You only have one copy in memory, it updates just once, no need to iterate through sessions, and users who use the application settings are using the most recent copy.

  • Takes up to 5 min "Applying User Settings" with events ID 6005 6006 after a reboot - Win Server 2008 R2 Standard 64bit

    Hi,
    Has anybody seen the issue below showing in the logs? The time for the logs messages switch from the real time (17:57) to some random time (10:55). There seem to be a disconnect with the time. I noticed right when the status message while logging in switches
    to "apply user settings", the time get screwed up on the gpsvc.log file and switches to the random time (10:55) and keeps reporting that random time till "apply user settings" process completes and switches back to regular real time (17:57).
    I made sure the server is synced up with w32tm /resync command. Tried different DNS settings. Tried dis joining and rejoining to the domain. tried to block inheritance on GPMC to that OU. Created new domain user. Deleted local profiles. All with no luck and
    same behavior which is taking up to 5 min "applying user setting" only after a reboot. If I log in and out without reboot, it would log in just fine within seconds.
    Any thoughts or suggestions are appreciated!
    Thanks,
    Here is a copy from the gpsvc.log:
    GPSVC(338.354) 17:57:08:406 -------------------------------------------
    GPSVC(338.354) 17:57:08:406 Use the Event Viewer to analyze the Group Policy operational log for details on Group Policy service activity.
    GPSVC(338.354) 17:57:08:406 -------------------------------------------
    GPSVC(338.354) 17:57:08:406  
    GPSVC(338.354) 17:57:08:406 InitializeProductType: Product Type: 2
    GPSVC(338.354) 17:57:08:406 Register for connectivity notification is Enabled.
    GPSVC(338.354) 17:57:08:406 Connectivity manager class initialized with for IntranetAuth connectivity
    GPSVC(338.354) 17:57:08:640 Target = Machine
    GPSVC(338.350) 17:57:08:640 Target = Machine, ChangeNumber 0
    GPSVC(338.39c) 17:57:09:232 bMachine = 1 
    GPSVC(338.39c) 17:57:09:232 Setting GPsession state = 1
    GPSVC(338.27c) 17:57:09:232 Waiting for connectivity before applying policies
    GPSVC(338.27c) 17:57:09:232 Waiting for SamSs with timeout 8264
    GPSVC(338.39c) 17:57:09:232 Message Status = <Applying computer settings...>
    GPSVC(338.39c) 17:57:09:232 Target = Machine
    GPSVC(338.39c) 17:57:09:232 Target = Machine, ChangeNumber 0
    GPSVC(338.39c) 17:57:09:248 Setting GPsession state = 1
    GPSVC(338.27c) 17:57:09:357 Waiting for NTDS.IndexRecreateEvent with timeout 8139
    GPSVC(338.27c) 17:57:09:357 Waiting for NlaSvc with timeout 8139
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 1
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:576 UnLocked successfully
    GPSVC(338.350) 17:57:09:576 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:576 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:576 Async Lock called
    GPSVC(338.350) 17:57:09:576 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:576 Sid = (null)
    GPSVC(338.350) 17:57:09:576 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:591 Sid = (null), dwTimeout = 1, dwFlags = 268435459
    GPSVC(338.350) 17:57:09:591 LockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Async Lock called
    GPSVC(338.350) 17:57:09:591 Reader Lock got immediately. m_cReadersInLock : 2
    GPSVC(338.350) 17:57:09:591 Sid = (null)
    GPSVC(338.350) 17:57:09:591 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:591 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:591 UnLocked successfully
    GPSVC(338.350) 17:57:09:669 Sid = (null)
    GPSVC(338.350) 17:57:09:669 UnLockPolicySection called for user <Machine>
    GPSVC(338.350) 17:57:09:669 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.350) 17:57:09:669 Setting lock state as notLocked
    GPSVC(338.350) 17:57:09:669 UnLocked successfully
    GPSVC(338.27c) 10:55:29:426 Waiting for NETLOGON with timeout 6392
    GPSVC(338.27c) 10:55:29:426 Waiting for MUP with timeout 6392
    GPSVC(338.27c) 10:55:29:426 Waiting for wkssvc to signal MUP event
    GPSVC(338.5bc) 10:55:29:519 Target = Machine
    GPSVC(338.5bc) 10:55:29:519 Target = Machine, ChangeNumber 0
    GPSVC(3b0.67c) 10:55:29:535 CGPNotify::RegisterForNotification: Entering with target Machine and event 0x16c
    GPSVC(3b0.67c) 10:55:29:535 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.5bc) 10:55:29:535 Target = Machine
    GPSVC(3b0.67c) 10:55:29:535 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(3b0.67c) 10:55:29:535 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.6c4) 10:55:29:535 Target = Machine
    GPSVC(338.5b0) 10:55:29:535 Target = Machine, ChangeNumber 0
    GPSVC(338.5b0) 10:55:29:535 Sid = (null), dwTimeout = 600000, dwFlags = 268435456
    GPSVC(338.5b0) 10:55:29:535 LockPolicySection called for user <Machine>
    GPSVC(338.5b0) 10:55:29:535 Async Lock called
    GPSVC(338.5b0) 10:55:29:535 Reader Lock got immediately. m_cReadersInLock : 1
    GPSVC(338.5bc) 10:55:29:535 Sid = (null)
    GPSVC(338.5bc) 10:55:29:535 UnLockPolicySection called for user <Machine>
    GPSVC(338.5bc) 10:55:29:535 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.5bc) 10:55:29:535 Setting lock state as notLocked
    GPSVC(338.5bc) 10:55:29:535 UnLocked successfully
    GPSVC(338.754) 10:55:29:816 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xc18
    GPSVC(338.754) 10:55:29:816 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.350) 10:55:29:816 Target = Machine
    GPSVC(338.754) 10:55:29:816 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.754) 10:55:29:816 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.27c) 10:55:29:987 Done waiting for MUP
    GPSVC(338.27c) 10:55:29:987 Waiting for DS with timeout 5830
    GPSVC(338.27c) 10:55:29:987 Registered for NLA notification successfully
    GPSVC(338.27c) 10:55:29:987 NlaGetIntranetCapability returned Not Ready error. Consider it as NOT intranet capable.
    GPSVC(338.27c) 10:55:29:987 There is no connectivity. Waiting for connectivity again...
    GPSVC(338.27c) 10:55:30:455 There is connectivity.
    GPSVC(338.27c) 10:55:30:455 We have network connectivity... proceeding to apply policy.
    GPSVC(338.27c) 10:55:30:455 NlaQueryNetSignatures returned 1 networks
    GPSVC(338.27c) 10:55:30:455 Found a intranet+auth network
    GPSVC(338.27c) 10:55:30:455 # of interfaces : 1
    GPSVC(338.27c) 10:55:30:455 Interface ID: {9538E3E7-197E-4A34-82B6-F457DC25D35D}
    GPSVC(338.27c) 10:55:30:455 Compartment ID: 1
    GPSVC(338.27c) 10:55:30:455 Setting the CompartmentId [1] on the current thread
    GPSVC(338.27c) 10:55:30:455 GetDomainControllerConnectionInfo: Enabling bandwidth estimate.
    GPSVC(338.27c) 10:55:30:502 Started bandwidth estimation successfully
    GPSVC(338.27c) 10:55:30:502 GetDomainControllerConnectionInfo: Getting Ldap Handles.
    GPSVC(338.27c) 10:55:30:502 GetLdapHandle:  Getting ldap handle for host: DC-MLIB.DOMAIN-NAME in domain: DOMAIN-NAME.
    GPSVC(338.27c) 10:55:30:502 GetLdapHandle:  Server connection established.
    GPSVC(338.27c) 10:55:30:502 GetLdapHandle:  Binding using only kerberos.
    GPSVC(338.27c) 10:55:30:518 GetLdapHandle:  Bound successfully.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\dskquota.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.27c) 10:55:30:518 ProcessGPOs:  No site name defined.  Skipping site policy.
    GPSVC(338.27c) 10:55:30:518 GetGPOInfo:  ********************************
    GPSVC(338.27c) 10:55:30:518 GetGPOInfo:  Entering...
    GPSVC(338.27c) 10:55:30:533 GetMachineToken:  Looping for authentication again.
    GPSVC(338.27c) 10:55:30:580 GetMachineToken:  Looping for authentication again.
    GPSVC(338.27c) 10:55:30:596 GetMachineToken:  InitializeSecurityContext failed with 0x80090324
    GPSVC(338.27c) 10:55:30:596 GetGPOInfo:  Failed to get the machine token with  -2146893020
    GPSVC(338.27c) 10:55:30:596 GetGPOInfo:  Leaving with 0
    GPSVC(338.27c) 10:55:30:596 GetGPOInfo:  ********************************
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: GetGPOInfo failed.
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: No WMI logging done in this policy cycle.
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: Processing failed with error -2146893020.
    GPSVC(338.27c) 10:55:30:596 ProcessGPOs: Boot/Logon Policy processing - checking if UBPM trigger events need to be fired
    GPSVC(338.27c) 10:55:30:596 CheckAndFireGPTriggerEvent: Fired Policy present UBPM trigger event for Machine.
    GPSVC(338.27c) 10:55:30:596 Application complete with bConnectivityFailure = 0.
    GPSVC(338.27c) 10:55:30:596 Application complete with bConnectivityFailure = 0.
    GPSVC(338.4d0) 10:55:32:281 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xd94
    GPSVC(338.4d0) 10:55:32:281 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.4f0) 10:55:32:281 Target = Machine
    GPSVC(338.4d0) 10:55:32:281 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.4d0) 10:55:32:281 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.384) 10:55:32:281 Target = Machine, ChangeNumber 0
    GPSVC(338.384) 10:55:35:900 SID = S-1-5-21-1599696121-1964574698-334091239-301107
    GPSVC(338.384) 10:55:35:900 bMachine = 0 
    GPSVC(338.384) 10:55:35:900 Setting GPsession state = 1
    GPSVC(338.384) 10:55:35:900 Message Status = <Applying user settings...>
    GPSVC(338.6c4) 10:55:35:900 Setting GPsession state = 1
    GPSVC(338.718) 10:55:35:900 StartTime For network wait: 11200ms
    GPSVC(338.718) 10:55:35:900 Current Time: 19546ms
    GPSVC(338.718) 10:55:35:900 MaxTimeToWaitForNetwork: 7034ms
    GPSVC(338.718) 10:55:35:900 TimeRemainingToWaitForNetwork: 0ms
    GPSVC(338.718) 10:55:35:900 UserPolicy: Waiting for machine policy wait for network event with timeout 0 ms
    GPSVC(338.718) 10:55:35:915 GPLockPolicySection: Sid = (null), dwTimeout = 30000, dwFlags = 65538
    GPSVC(338.718) 10:55:35:915 LockPolicySection called for user <Machine>
    GPSVC(338.718) 10:55:35:915 Sync Lock Called
    GPSVC(338.718) 10:55:35:915 Reader Lock got immediately. m_cReadersInLock : 1
    GPSVC(338.718) 10:55:35:915 Lock taken successfully
    GPSVC(338.718) 10:55:35:915 UnLockPolicySection called for user <Machine>
    GPSVC(338.718) 10:55:35:915 Found the caller in the ReaderHavingLock List. Removing it...
    GPSVC(338.718) 10:55:35:915 Setting lock state as notLocked
    GPSVC(338.718) 10:55:35:915 UnLocked successfully
    GPSVC(338.718) 10:55:35:915 GetDomainControllerConnectionInfo: Enabling bandwidth estimate.
    GPSVC(338.718) 10:55:36:430 Started bandwidth estimation successfully
    GPSVC(338.718) 10:55:36:430 GetDomainControllerConnectionInfo: Getting Ldap Handles.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Getting ldap handle for host: DC-MLIB.DOMAIN-NAME in domain: DOMAIN-NAME.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Server connection established.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Bound successfully.
    GPSVC(338.718) 10:55:36:430 ProcessGPOs: Computer's domain is same as user's domain so using user's domain DC
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Getting ldap handle for host: DC-MLIB.DOMAIN-NAME in domain: <Unspecified>.
    GPSVC(338.718) 10:55:36:430 GetLdapHandle:  Server connection established.
    GPSVC(338.718) 10:55:36:446 GetLdapHandle:  Bound successfully.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\dskquota.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for C:\Windows\System32\iedkcs32.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ReadGPExtensions: Rsop entry point not found for gptext.dll.
    GPSVC(338.718) 10:55:36:446 ProcessGPOs:  No site name defined.  Skipping site policy.
    GPSVC(338.718) 10:55:36:446 GetGPOInfo:  ********************************
    GPSVC(338.718) 10:55:36:446 GetGPOInfo:  Entering...
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Searching <OU=People,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Found GPO(s):  < >
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Searching <DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 SearchDSObject:  Found GPO(s):  <[LDAP://CN={31B2F340-016D-11D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  ==============================
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Deferring search for <LDAP://CN={31B2F340-016D-11D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 EvaluateDeferredGPOs:  Searching for GPOs in cn=policies,cn=system,DC=ad,DC=*****,DC=****
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  ==============================
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Searching <CN={31B2F340-016D-11D2-945F-00C04FB984F9},CN=Policies,CN=System,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  User has access to this GPO.
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  GPO passes the filter check.
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Found functionality version of:  2
    GPSVC(338.718) 10:55:36:446 ProcessGPO:  Found file system path of:  <\\DOMAIN-NAME\sysvol\DOMAIN-NAME\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}>
    GPSVC(418.430) 17:59:09:821 CGPNotify::RegisterForNotification: Entering with target Machine and event 0x3dc
    GPSVC(418.430) 17:59:09:821 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.6b8) 17:59:09:821 Target = Machine
    GPSVC(418.430) 17:59:09:821 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(418.430) 17:59:09:821 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.30c) 17:59:09:821 Target = Machine, ChangeNumber 0
    GPSVC(418.430) 17:59:09:837 CGPNotify::RegisterForNotification: Entering with target Machine and event 0x448
    GPSVC(418.430) 17:59:09:837 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.30c) 17:59:09:837 Target = Machine
    GPSVC(418.430) 17:59:09:837 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(418.430) 17:59:09:837 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.6b8) 17:59:09:837 Target = Machine, ChangeNumber 0
    GPSVC(3b0.3c0) 17:59:11:085 CGPNotify::UnregisterNotification: Entering with event 0x16c
    GPSVC(3b0.3c0) 17:59:11:085 CGPNotify::AbortAsyncRegistration: No asyn registration is pending
    GPSVC(3b0.3c0) 17:59:11:085 CGPNotify::UnregisterNotification: Canceling pending calls
    GPSVC(3b0.3c0) 17:59:11:288 Client_CompleteNotificationCall: failed with 0x71a
    GPSVC(3b0.3c0) 17:59:11:288 CGPNotify::UnregisterNotification: Cancelled pending calls
    GPSVC(3b0.3c0) 17:59:11:288 CGPNotify::UnregisterNotification: Exiting with dwStatus = 0x0
    GPSVC(338.30c) 17:59:12:380 Target = Machine
    GPSVC(338.30c) 17:59:12:380 Target = Machine, ChangeNumber 0
    GPSVC(338.30c) 17:59:13:051 Target = Machine
    GPSVC(338.30c) 17:59:13:051 Target = Machine, ChangeNumber 0
    GPSVC(338.30c) 17:59:13:285 Target = Machine
    GPSVC(338.30c) 17:59:13:285 Target = Machine, ChangeNumber 0
    GPSVC(338.5a0) 17:59:14:143 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xf04
    GPSVC(338.5a0) 17:59:14:143 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.6b8) 17:59:14:143 Target = Machine
    GPSVC(338.5a0) 17:59:14:143 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.5a0) 17:59:14:143 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(204.228) 17:59:59:897 CGPNotify::RegisterForNotification: Entering with target Machine and event 0xb50
    GPSVC(204.228) 17:59:59:897 Client_InitialRegisterForNotification: User = machine, changenumber = 0
    GPSVC(338.6b8) 17:59:59:897 Target = Machine
    GPSVC(204.228) 17:59:59:897 Client_RegisterForNotification: User = machine, changenumber = 0
    GPSVC(204.228) 17:59:59:897 CGPNotify::RegisterForNotification: Exiting with status = 0
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found common name of:  <{31B2F340-016D-11D2-945F-00C04FB984F9}>
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found display name of:  <Default Domain Policy>
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found user version of:  GPC is 1, GPT is 1
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found flags of:  0
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  Found extensions:  [{3060E8D0-7020-11D2-842D-00C04FA372D4}{3060E8CE-7020-11D2-842D-00C04FA372D4}]
    GPSVC(338.718) 18:01:58:941 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:58:941 ProcessLocalGPO:  Local GPO's gpt.ini is not accessible, assuming default state.
    GPSVC(338.718) 18:01:58:941 ProcessLocalGPO:  GPO Local Group Policy doesn't contain any data since the version number is 0.  It will be skipped.
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  Leaving with 1
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  ********************************
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  ********************************
    GPSVC(338.718) 18:01:58:941 GetGPOInfo:  Entering...
    GPSVC(338.718) 18:01:59:097 SearchDSObject:  Searching <OU=FM-Security Video Servers,OU=FM-Servers,OU=FM,OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:097 SearchDSObject:  Found GPO(s):  <[LDAP://cn={B957D759-2AF4-4592-95B8-5B7C62F9B340},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 18:01:59:097 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={B957D759-2AF4-4592-95B8-5B7C62F9B340},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <OU=FM-Servers,OU=FM,OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Found GPO(s):  <[LDAP://cn={E8A9990E-57AD-4B7B-BAE4-C56E20FB6314},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={251254DD-27DC-419F-816D-C51CDB309D8F},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={E8A9990E-57AD-4B7B-BAE4-C56E20FB6314},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={251254DD-27DC-419F-816D-C51CDB309D8F},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <OU=FM,OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Found GPO(s):  <[LDAP://cn={1A42DA26-38F9-491C-940B-9D37895BE92A},cn=policies,cn=system,DC=ad,DC=*****,DC=****;1][LDAP://cn={F3D0434D-3EFF-4713-908C-3D8AB8189FB9},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={F03FA73B-A5B5-496B-94E5-5315D1D8F5F3},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={386C2C68-BB18-483B-AF36-92E76C1178D2},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={3D83F7A1-D4C2-4F8E-8808-CD5415D5A91E},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={462C2912-2318-4F46-A082-8BCC07EBDA29},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={7690B141-A1C2-4381-BD63-1AF5C09B4456},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={62C29217-3E25-42FC-8469-78312109323E},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={E795AC88-A750-45AF-870C-7EEDF00AA64A},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={B7C7410F-A3C0-4F12-8C3A-245C317EDFBA},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={CE1F85C1-DF2D-4E34-898B-2D6E3D0B55BE},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={D1B4C3BE-41CD-41B2-8A26-BE2EFD6953D0},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={E2673882-F33C-4879-AE75-583829D8BDA8},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={074DE127-4DBA-43F2-9C19-5953AD76CE9F},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={F4BAB9C5-0B6E-426B-93D3-1950A7002DC7},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0][LDAP://cn={4A2C73AF-509F-4434-AF58-1AB3888959B4},cn=policies,cn=system,DC=ad,DC=*****,DC=****;0]>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  The link to GPO LDAP://cn={1A42DA26-38F9-491C-940B-9D37895BE92A},cn=policies,cn=system,DC=ad,DC=*****,DC=**** is disabled.  It will be skipped for processing.
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={F3D0434D-3EFF-4713-908C-3D8AB8189FB9},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={F03FA73B-A5B5-496B-94E5-5315D1D8F5F3},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={386C2C68-BB18-483B-AF36-92E76C1178D2},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={3D83F7A1-D4C2-4F8E-8808-CD5415D5A91E},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={462C2912-2318-4F46-A082-8BCC07EBDA29},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={7690B141-A1C2-4381-BD63-1AF5C09B4456},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={62C29217-3E25-42FC-8469-78312109323E},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={E795AC88-A750-45AF-870C-7EEDF00AA64A},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={B7C7410F-A3C0-4F12-8C3A-245C317EDFBA},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={CE1F85C1-DF2D-4E34-898B-2D6E3D0B55BE},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={D1B4C3BE-41CD-41B2-8A26-BE2EFD6953D0},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={E2673882-F33C-4879-AE75-583829D8BDA8},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={074DE127-4DBA-43F2-9C19-5953AD76CE9F},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={F4BAB9C5-0B6E-426B-93D3-1950A7002DC7},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  ==============================
    GPSVC(338.718) 18:01:59:113 ProcessGPO:  Deferring search for <LDAP://cn={4A2C73AF-509F-4434-AF58-1AB3888959B4},cn=policies,cn=system,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <OU=Department OUs,DC=ad,DC=*****,DC=****>
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  No GPO(s) for this object.
    GPSVC(338.718) 18:01:59:113 SearchDSObject:  Searching <DC=ad,DC=*****,DC=****>

    > GPSVC(338.350) 17:57:09:669 UnLocked successfully
    > GPSVC(338.27c) 10:55:29:426 Waiting for NETLOGON with timeout 6392
    The numbers in parenthesis are PID.TID of gpsvc.exe. So we see a thread
    change, and this usually indicates that a different logon process has
    begun. Could you try to map this log entries to events in the group
    policy event log?
    But to be honest: No, I've never seen such a behavior in gpsvc.log :(
    I'm almost sure that a service is responsible, but how to identify it -
    I don't know. There's no auditing for system time changes, AFAIK.
    Greetings/Grüße,
    Martin
    Mal ein
    gutes Buch über GPOs lesen?
    Good or bad GPOs? - my blog…
    And if IT bothers me -
    coke bottle design refreshment (-:

  • How to transfer user settings from one account to another (on the same Mac)

    I'd like to create separate user accounts for "work" and "play" (so that I can do things like have separate address books, etc...). However, I already have LOTS of personalized settings (trackpad behavior, login items, etc) that I'd like to keep the same between the two accounts.
    Is there a way to transfer all of the user settings from one account to another?

    You'll need to copy your /Home/Library folder. Make sure you back up first before doing the following. Log out of both your Work and Play accounts. Log in to a third account with administrator privileges. Assuming you are copying from the account called "work" to the account called "play", enter the following in Terminal:
    sudo rm -rf ~play/Library (this deletes Play's Library folder.)
    sudo cp -R ~work/Library ~play/Library (this copies Work's Library folder to Play's folder.)
    sudo chown -R play ~play/Library (this fixes permissions of Play's new Library folder.)

  • Can I copy my apps/user settings from one drive/OS to another?

    I have one drive of my system with 10.3.9, that I've been using for quite awhile, with all my apps, preferences, registrations etc.
    I just installed a clean install of 10.4.3 on another drive.
    Is there away to clone/copy all my user settings from the 10.3.9 drive to the 10.4.3 drive, so that it behaves the same way?
    I didn't want to user the "transfer user settings" when I installed 10.4, because I need to keep the 10.3.9 system exactly as is.

    Just erase the hard drive first. Here's the basic cloning process using Disk Utility:
    1. Open Disk Utility from the Utilities folder.
    2. Select the startup volume from the left side list.
    3. Click on the Restore tab in the DU main window.
    4. Drag the startup volume to the Source entry field.
    5. Select the backup volume from the leftside list and drag it to the Destination entry field.
    6. Check the box to Erase Destination.
    7. Double-check you got it right, then click on the Restore button.
    If you prefer to keep your Panther system, then clone it to the new drive and update the new drive to Tiger. If you want both drives to have Tiger installed, then upgrade the Panther system to Tiger, then clone it to the new drive.
    If you'd rather see how it goes using Migration Assistant, then by all means give it a try. Worst thing that can happen is you end up doing it my way. If Migration Assistant works properly you'll save some time and effort.

  • Can I have multiple user settings for one user?

    In one user account I would like to save and access mutlipe users settings at the click of a button. Can this be done?

    Hello Jake,
    from the Appple menu you can change the location - the location describes your network settings, if you have wlan, ethernet, vpn etc, but unfortunately not the things you want to configure.
    If you want to set up your desktops and your Dock with different working sets depending on your task, then you need to create different accounts, one for a new user "Jake The Writer" and one for a new user "Jake the Graphics Designer". This you can do from the "System Preferences" -> "Users and Groups". To add an account click the padlock in the lower left corner, then the "+" and define the user name etc.
    If you click on "login options" you can set "show fast user switching". Then you can switch between your accounts from the main menu bar by clicking on the user icon in the upper right corner (right beside the spotlight searchfield).
    For each new user you can set up the Dock and the items on the Desktop, when you login as that user.
    However, seperate user accounts try to protect your data by sharing and permission settings. So you would not be able to access the data in your separate home folders when logged in from a different account. If you want to use these approach you should store your documents in the Shared folder and not in your home folder.
    Best Regards
    Léonie

  • User Settings not working.  Please help!

    <TD noWraplign=right>I am trying to build some interactive portlets using User prefs and have had no luck. Any help would be greatly appreciated.
    Here is my code for the first portlet (view_course_defaultView is set as a user preference in the web service):
    privatevoidPage_Load(objectsender, System.EventArgs e)
    IPortletContext context = PortletContextFactory.CreatePortletContext(Request, Response);
    IPortletRequest pRequest = context.GetRequest();
    IPortletResponse pResponse = context.GetResponse();
    IPortletUser user = context.GetUser();
    try
    if(user.HasSettingsRight(SettingType.User))
    pResponse.SetSettingValue(SettingType.User, "view_course_defaultView", "All");
    else
    Response.Write("You can't do that");
    catch(Exception ex)
    Response.Write(ex.Message + ex.StackTrace);
    Here is my code for the second portlet (again view_course_defaultView is set as a User preference in the Web Service):
    privatevoidPage_Load(objectsender, System.EventArgs e)
    try
    IPortletContext pContext = PortletContextFactory.CreatePortletContext(Request, Response);
    IPortletResponse pResponse = pContext.GetResponse();
    IPortletRequest pRequest = pContext.GetRequest();
    IPortletUser pUser = pContext.GetUser();
    if(pUser.HasSettingsRight(SettingType.User))
    Response.Write(pRequest.GetSettingValue(SettingType.User, "view_course_defaultView"));
    Response.Write(pRequest.GetSettingCollection(SettingType.User).Count);
    catch(Exception ex)
    Response.Write(ex.Message + ex.StackTrace);
    The only thing written to the screen in the second portlet is 0 for the User settings count. Does anyone see what I am doing wrong?
    Thanks,
    Jackie Kajdzik

    I am having the same issue.  The Admin, Portal and CommunityPortal prefs set fine.  However, the user pref will not set.  Could this be because this pref is not to be set in this manner?

  • User Settings Not Retained

    Second Admin account with different user name. Set up desktop/user settings etc. Log out and log back in. Hard drive and other icons not on desktop. Dock apps revert to default. Safari history and bookmarks disappeared. Other anomalies.
    ???

    My apologizes on the below post - do you get the same response when you reboot the WLC and hit 'ESC' for additional boot options - and then clear the config this way?

  • User settings migrated from Office 2007 to 2013 using OCT

    Does anyone know what user settings are retained after upgrading Office 2007 to 2013 using the OCT? I have set the checkbox to migrate user settings in the OCT but all of the user's pinned documents are not longer there after the upgrade. Is this normal?

    Microsoft doesn't support migrating directly from SharePoint 2007 to SharePoint 2013, likely part of your decision to use a third party tool.
    I'm not familiar with these error messages, I suspect they're from DocAve and not SharePoint.
    My suggestion is to contact AvePoint support. 
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights

  • User Settings in ALV - need to disable

    Hi - I need to disable the user settings for ALV, I try from if_salv_wd_std_functions ~ set_dialog_settings_allowed( abap_false ) but is working fine for the screen, if I go to the column and do right click, the user settings are enable at the column level.
    Is there any way I can disable the column user settings?
    thanks!
    Jason P-V

    Hi Jason,
    I simply set the WDDISABLEUSERPERSONALIZATION parameter of my component's apllication to 'X' and now i don't see the usersetting option when I right click even on the column of the ALV. You can try that.
    To do so: double click on your application, go to the parameters tab, make it editable, in the parameters column get 'WDDISABLEUSERPERSONALIZATION' parameter and set its value as 'X'.
    I hope it helps.
    Regards
    Arjun

  • Set Default User settings in BRF Plus

    Hi All,
    We want to set some default setting for a set of the users for BRFPlus gui.
    For Example:
    1. We want to display row no in the decision table as the first column for all users.
    2. In the decision table, we want some columns ( from result section)which are actually in the end  on the right of the screen should be visible as first column.
    I know these can be achieved using user settings. But we want to default this for all the BRF Plus users. 
    Can we create one setup and assign it or default it for all BRF Plus users? Like we do in SAP R3 defaulting menus for SAP users.
    Thanks In Advance.

    Hi Carsten,
    Thanks for the hint.
    We have already used the blog to hide some features from users view in custom catalog. After your reply I revisited the our code and added few more lines of codes to display row number. But the Row Number was not displayed. Guessing if anything is missing.
    Is it not possible to do at user profile level for mass users. Like we do it for SAP R3 Users?
    Code Snippet:
    METHOD if_fdt_wd_ui_mode~get_configuration.
    *Get the default configuration.
      CALL METHOD super-
    >if_fdt_wd_ui_mode~get_configuration
        RECEIVING
          ro_configuration = ro_configuration.
    * Remove repository view.
      ro_configuration->set_parameter( iv_name  =
    if_fdt_wd_user_configuration=>gc_parameter_repositor
    y_view
           iv_value = abap_false ).
      ro_configuration->set_parameter( iv_name  =
    if_fdt_wd_user_configuration=>gc_parameter_favorites
    _view
           iv_value = abap_false ).
      ro_configuration->set_parameter( iv_name  =
    if_fdt_wd_user_configuration=>gc_parameter_history_v
    iew
           iv_value = abap_false ).
    * Display row number
      ro_configuration->set_parameter( iv_name  =
    if_fdt_wd_user_configuration=>gc_parameter_disp_dt_r
    ow_num
          iv_value = abap_true ).

  • Microsoft Exchange Server 2013 - Windows Server 2013 Standard - When logging in user hangs on - "Applying user settings" message

    Dear colleges,
    Thanks in advance for viewing and suggesting!
    Now for whatever reason it is the XCHG server is not responsive at all when launching ECP from the other computer on the domain. When logging in to the virtual box EXCH server is hosted on it hangs on the "Applying user settings" message for
    an about an hour when finally logged in 4 or 5 XCHG services won't start... I don't remember exactly which ones - "...Mailbox Transport..." is one of them.
    I read about the similar being an issue with Win 2008 R2 and EXCH server 2010, and followed the advice that I needed to add some entries to the registry - didn't help, disabling IP6 (which by the way makes no sense as XCHG needs one) - still didn't help.
    Would you suggest to rebuild virtual server and reinstall EXCH all together as troubleshooting Windows issues may be lengthy?
    Thanks!

    Thanks folks! I think I have a clue what's going through don't know how fix it yet.
    The problem is with DNS unable to resolve my main domain vwc.local. It makes some XCHG services to time out when starting. The error messages in the event log suggest about domain being unavailable
    to contact.
    When I tried resolving vwc.local with nslookup and ping it pinged THE OLD domain's IP address. When I setup server at home I specified this old ip address but changed it to a new one when I
    moved box to the office. In the office everything worked very well - I introduced office's desktops to vwc.local, built a virtual box, introduced it the domain as well. Everything was good up until I started messing with XCHG. Now the domain is not resolvable
    even though I made to be pinged to the new address by updating network adapter settings at the main server by selecting some checkboxes. But the vwc.local is still not available at VW where the XCHG is hosted on. When I open Server Manager/AD DS/AD DS
    manager it gives me an error message about the DC being unavailable to contact.
    How do I fix this domain mess now? Now I have 3 issues to deal with:
    1. My remote desktop stopped working due to trial expiration even though I licensed server for 5 RDSCALs. This is a known issue with RDS and AD DS roles hosted on one physical box. Nobody seems
    to know the step by step solution to the issue. I just got bunch of recommendations that I already followed. It looks like I need to call Microsoft and have them deal with their buggy software altogether.
    2. DNS/domain issues described below. Something very weird. May I try re prepping the AD DS on the main server. I didn't try that may be I will.
    3. XCHG not receiving messages from the outside.
    :) Let's just focus on DNS/domain for a moment.
    Thanks in advance!

Maybe you are looking for

  • Not Enough Disk Space In Target Folder PLEASE HELP!

    I've produced a project with 10 menus and 21 tracks totaling 3.1 gigs and I can not burn it. Each time I get the remark "Not Enough Disk Space In Target Folder." I have 8.8 gigs on my internal harddrive and various externals. PLEASE SOMEBODY HELP. I

  • Bursting with JAVA APIs / MultiThreading / Errors Handling

    We are trying to use the bursting JAVA APIs 10.1.3.3.1 Standalone) to burst huge XML files and generate PDF Files from RTF templates. Here are a list of our issues with this feature: 1. We have some problems catching the errors when bursting. We have

  • Problem with unique key for Fiscal_T_Time dimension lookup

    Hi, In my mapping, I use Lookup on Fiscal_T_Time dimension provided by oracle. The validation gives me a warning,saying "VLD-1603:Lookup condition for key lookup Fiscal_T_Time does not contain a complete unique key". I'm using <source_group>.date as

  • Cannot download apps with PC, because I cannot login

    Dear Community, hope someone can help me. I have bought my Blackberry 9700 in Germany. There I have logged into the app world via my phone and downloaded a few apps. Now I am in Russia and would like to download an offline dictionary. However, I do n

  • Queries about storage - Nokia XL

    How do I activate the SD card for Media storage. unlike other android phones you have the option to choose the Default Storage you want. Nokia XL does not have that option;. Media content always goes to the phone memory. Please help me. Another thing