Strange profile when I access with Domain Administrator accout

Hello,
It's the first time that I got this issue (I used to install Windows 2008 Server R2 many times a month) :
These are different steps :
- Windows 2008 Server R2 installed normally
- access with local administrator (account : administrator)
- doing updates
- creating new local user (account : admin)
- add this user to local administrator group ( group : Administrators)
- access with that new admin user
- delete administrator profile and disable that user
- restart
- add the server to a domain and then restart
- access to the server with domain administrator (account : domain\Administrator)
- then there's no mention of the domain administrator name in the profile
hatem

I'd check it again in between each of the steps you mentioned to see where it happens. Can't make much from the last screen shot since its blacked out. It may have been a one-off and will not happen next time.
Regards, Dave Patrick ....
Microsoft Certified Professional
Microsoft MVP [Windows]
Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

Similar Messages

  • Need to provide local administrator access without domain administrator rights

    Hi All,
    I need to provide local admin access to one account in windows environment without providing domain administrator rights.
    Windows 2008 DC. Desktops : windows 7
    So that we can use this account to install agents like SCCM\SCOM in all servers & desktops.
    Need suggestions.

    Hi,
    I agree with Senne, in addition, we can also use net command to perform local group management.
    More information for you:
    Add a member to a local group
    http://technet.microsoft.com/en-us/library/cc772524.aspx
    How to Make a Domain User the Local Administrator for all PCs
    http://social.technet.microsoft.com/wiki/contents/articles/7833.how-to-make-a-domain-user-the-local-administrator-for-all-pcs.aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Strange font when printing pdf with Reader X

    Hello,
    Who can help? I recently upgraded from Adobe Acrobat Reader 9 to Adobe Reader X. Since then, a strange problem occurs. When printing a pdf files to a printer, the font is changed. When viewing the file on the screen and printing them with version 9, everything is OK. The Arial font appears as it should. But when printing, a very ugly font type appears. The pdf files I use contain only a 'standard' Arial and Myriad Web font.This problem is very annoying.
    Can somebody help? I use version 10.0.1

    If you go the attached web page:
    http://www.adobe.com/support/reader/
    (http://www.adobe.com/support/reader/) ,  you
    will see "download an older version" underneath
    the Download Adobe reader.
    If you click in this link (download an older version), you
    can pick from version 8 and 9.
    Since erasing version 10 and downloading version 9.4,
    my problem has gone away completely.
    As with you, I consider this a major problem. It certainly added
    a lot of grief to my life when I could not trust my printer
    output at all.
    Hope this helps.
    Marsha

  • Strange issue when running sql with false condition

    Hi,
    I'm running this query from the application:
    select 22
    from DUAL
    where ( to_number(0) <> 0 ) and exists (
    select 'X'
    from TABULA.macdent$FNCITEMS
    where ( macdent$FNCITEMS.QIV = to_number(0) ) );
    And it takes a long time because it is checking the second condition.
    Even though the first one is False.
    When running it through sqlplus it takes nothing. and of course no rows returns.
    The 0 in to_number is a bind variable
    it looks like this:
    select :intvar
    from DUAL
    where ( to_number(:QIV$) <> 0 ) and exists ( select 'X'
    from TABULA.macdent$FNCITEMS
    where ( macdent$FNCITEMS.QIV = to_number(:QIV$) ) )
    1 - filter predicate: ( IS NOT NULL AND 0<>TO_NUMBER(TO_CHAR(:QIV$)))
    But in sqlplus the filter predicates is different.
    1 - filter(NULL IS NOT NULL AND EXISTS (SELECT 0 FROM "TABULA"."MACDENT$FNCITEMS" "MACDENT$FNCITEMS" WHERE
    SQL> select 22
    from DUAL
    where ( to_number(0) <> 0 ) and exists (
    select 'X'
    from TABULA.macdent$FNCITEMS
    where ( macdent$FNCITEMS.QIV = to_number(0) ) );
    2 3 4 5 6
    no rows selected
    Elapsed: 00:00:00.00
    Execution Plan
    Plan hash value: 883410849
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)|
    Time | TQ |IN-OUT| PQ Distrib |
    | 0 | SELECT STATEMENT | | 1 | | 0 (0)| | | | |
    |* 1 | FILTER | | | | | | | | |
    | 2 | FAST DUAL | | 1 | | 2 (0)|00:00:01 | | | |
    | 3 | PX COORDINATOR | | | | | | | | |
    | 4 | PX SEND QC (RANDOM)| :TQ10000 | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | P->S | QC (RAND) |
    | 5 | PX BLOCK ITERATOR | | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | PCWC | |
    |* 6 | TABLE ACCESS FULL| MACDENT$FNCITEMS | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | PCWP | |
    Predicate Information (identified by operation id):
    1 - filter(NULL IS NOT NULL AND EXISTS (SELECT 0 FROM "TABULA"."MACDENT$FNCITEMS" "MACDENT$FNCITEMS" WHERE
    "MACDENT$FNCITEMS"."QIV"=0))
    6 - filter("MACDENT$FNCITEMS"."QIV"=0)
    ANY SUGGESTIONS?
    Thanks,

    912294 wrote:
    Hi,
    I'm running this query from the application:
    select 22
    from DUAL
    where ( to_number(0) <> 0 ) and exists (
    select 'X'
    from TABULA.macdent$FNCITEMS
    where ( macdent$FNCITEMS.QIV = to_number(0) ) );
    Why are you using "to_number(0)"? the zero is already seen by oracle as a number.
    The to_number function expects to get a character string as the argument: to_number('0')
    See the difference?
    As you currently have it coded, you are forcing oracle to do an implicit conversion of the number zero to the character string '0' in order to pass it to to_number to convert it back to the number zero.
    And what is the point of "where to_number(0) <> 0"
    When would that EVER be true?
    And it takes a long time because it is checking the second condition.
    Even though the first one is False.
    When running it through sqlplus it takes nothing. and of course no rows returns.
    The 0 in to_number is a bind variable
    it looks like this:
    select :intvar
    from DUAL
    where ( to_number(:QIV$) <> 0 ) and exists ( select 'X'
    from TABULA.macdent$FNCITEMS
    where ( macdent$FNCITEMS.QIV = to_number(:QIV$) ) )
    So the query you showed at the top is not the query we are really dealing with. What is the data type of QIV$? At least now we know that comparison to zero is not a fixed value.
    1 - filter predicate: ( IS NOT NULL AND 0<>TO_NUMBER(TO_CHAR(:QIV$)))
    This suggests QIV$ is already a number, else why would you pass it to to_char? And as I said above, if it is already a number, why pass it to to_number? Here you appear to be explicitly doing what I described oracle as implicitly doing in your first query above.
    But in sqlplus the filter predicates is different.
    1 - filter(NULL IS NOT NULL AND EXISTS (SELECT 0 FROM "TABULA"."MACDENT$FNCITEMS" "MACDENT$FNCITEMS" WHERE
    SQL> select 22
    from DUAL
    where ( to_number(0) <> 0 ) and exists (
    select 'X'
    from TABULA.macdent$FNCITEMS
    where ( macdent$FNCITEMS.QIV = to_number(0) ) );
    2 3 4 5 6
    no rows selected
    Elapsed: 00:00:00.00
    Execution Plan
    Plan hash value: 883410849
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)|
    Time | TQ |IN-OUT| PQ Distrib |
    | 0 | SELECT STATEMENT | | 1 | | 0 (0)| | | | |
    |* 1 | FILTER | | | | | | | | |
    | 2 | FAST DUAL | | 1 | | 2 (0)|00:00:01 | | | |
    | 3 | PX COORDINATOR | | | | | | | | |
    | 4 | PX SEND QC (RANDOM)| :TQ10000 | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | P->S | QC (RAND) |
    | 5 | PX BLOCK ITERATOR | | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | PCWC | |
    |* 6 | TABLE ACCESS FULL| MACDENT$FNCITEMS | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | PCWP | |
    Predicate Information (identified by operation id):
    1 - filter(NULL IS NOT NULL AND EXISTS (SELECT 0 FROM "TABULA"."MACDENT$FNCITEMS" "MACDENT$FNCITEMS" WHERE
    "MACDENT$FNCITEMS"."QIV"=0))
    6 - filter("MACDENT$FNCITEMS"."QIV"=0)
    ANY SUGGESTIONS?
    Thanks,

  • NIO: Strange problem when using ByteBuffer with non-blocking SocketChannel

    Hi,
    I have a server that uses multiplexed, non-blocking I/O with java.nio. When a client connects, the server waits for the message: <system cmd="knock"/>, returns a message and disconnects the client. The clients are shortly serviced in less than a second.
    But the server newer receive anything from about 20% of the clients - even though it is sent. Or with other words: it is received and the data is contained in the ByteBuffer - SocketChannel.read(ByteBuffer) - but a call to ByteBuffer.remaing() returns 0 !!
    ByteBuffer receiveBuf = ByteBuffer.allocate(65536);
    receiveBuf.clear(); // the code is elsewhere used for longer living clients
    int readBytes = channel.read(receiveBuf);
    receiveBuf.flip();
    StringBuffer sb = new StringBuffer();
    System.out.println(" * Remaining: "+receiveBuf.remaining()); // writes: ' * Remaining: 0'
    System.out.println(" * Received: "+new String(receiveBuf.array())); // writes: ' * Received: <system cmd="knock"/>'
    while(receiveBuf.remaining() >= 2) {
      byte b = receiveBuf.get();
      sb.append((char)b);
    System.out.println(" * sb content: "+sb.toString()); // writes: ' * sb content: 'The ByteBuffer clearly receives the correct data, but the ByteBuffer.remaining() returns 0 and therefore the StringBuffer will never have any content.
    The problem seems to occur randomly and for about 20% of the clients (simulated from the same computer and therefore has the same bandwidth and so on).
    Anyone knows what is going on, and how to solve the problem !?

    It's always possible in any read that the number of bytes read is less than the number of bytes requested. You need to keep reading until you have got everything you expected, and cope with every possible error condition on each iteration.
    EJP

  • Strange error when doing anything with yaourt

    Hi
    I have just installed yaourt from the AUR on my arch install (with LXDE, if that makes a difference) and whenever I do anything with it, it gives me the following error:
    shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    This will happen whenever I run any command to do with yaourt, such as:
    yaourt -s virtualbox
    Normally, I only get one error, and then the command continues as normal. It does not appear to be affecting yaourt in any way. However, if I run the command as root, with sudo, I get many errrors. This is the output from running "sudo yaourt -s virtualbox":
    shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
    Basically, my question is whether or not this is 'normal', and whether or not it would be ok to just ignore it. It is quite annoying, so can anyone see a way to stop it?
    Thanks

    Hmmm... I haven't done anything, except maybe update the mirrors with pacman -Syy, and now the problem is gone. I don't know how I fixed it!
    Sorry for any inconvenience.
    Would I mark the thread as solved? Because it wasn't really solved, the problem merely 'disappeared'. What should I do?

  • Strange problem when syncing events with Google Ca...

    I'm trying to sync all my calendar events with Google Calendar. Everything works perfectly if I add or update events with my N9. All the changes and new events are synced to Google Calendar so that they are visible in web browser.
    But if I make changes or create new events with my computer (with web browser) those events are not visible in N9!!! When I tap "Syncronize" N9 show's how many events were added or updated, but they are not visible in the calendar.
    Everything worked before, but now the last visible event in the calendar (made with computer) is on October 25.
    I've tried set this account up with Mail for Exchange and CalDAV. Same problem with both of them...
    Any ideas why one account works, but another does not with same kind of settings!?
    EDIT:
    I just found this:
    http://forums.internettablettalk.com/showthread.ph​p?s=c06b3c1ac31df96bb331589237572569&p=1245121#pos​...
    So, it's probably a bug in PR1.3  :-(
    Solved!
    Go to Solution.

    Solution found!
    http://talk.maemo.org/showthread.php?p=1244209

  • MS OUTLOOK PROMPT USERNAME AND PASSWORD REPEATLY WHEN WE LOGIN WINDOWS 8.1 WITH DOMAIN USER ON WINDOWS SERVER 2008R2

    Dear Sir
       My name is sandeep and i have a technical issue with MS office Outlook 2007 standard. the problem is i have windows 8.1 pro. and i have installed office 2007 standard on it. i have also joined this windows 8.1  to Domain Network(I have
    domain Server on Windows server 2008R2) now problem is that when i login with domain user on this windows 8.1 and configure my MS outlook the it prompts user name and password again and again showing error "
    Server responded -ERR access denied"  and if i login windows 8.1 with its local administrator user the all runs file then ms outlook does
    not prompt for username and password. this problem with only windows 8.1 domain login.. please suggest what to do and how this problem will be resolved..
    Regards
    sandeep Kumar

    Hi,
    Did it work correctly before when logging in with domain user account? If so, please try opening Control Panel > Credential Manager and remove the cached credential entry of the Outlook account, and then restart Outlook to test the issue again.
    See:
    https://support.microsoft.com/en-us/kb/2762344/en-us
    Please also try logging into your email account from webmail access to see if there is any error.
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Strange SMB error for accessing folder

    Hello,
    I have this kind of problem here in my company.
    I have a AD domain with Xserve binded to it, and with OD configured as Master Directory.
    From a Server i try to connect to a shared folder, all was done, until I try to go into an internal folder. Then I receive a "Denied Access" error. I use the domain admin account. I've set up the right ACL for the folder, Using the permission inspector i see FULL CONTROL for that user, but i receive the same problem everytime.
    Here is the log of smb daemon:
    [2007/08/21 20:45:01, 1] /SourceCache/samba/samba-100.9/samba/source/smbd/service.c:makeconnectionsnum(648)
    10.0.26.210 (10.0.26.210) connect to service RedazioneMI
    initially as user administrator (uid=1230414794,
    gid=1851768627) (pid 374)
    [2007/08/21 20:45:01, 1] /SourceCache/samba/samba-100.9/samba/source/smbd/sesssetup.c:replyspnegokerberos(261)
    Username METRO_ITL\SERVER1$ is invalid on this system
    [2007/08/21 20:45:01, 1]
    /SourceCache/samba/samba-100.9/samba/source/smbd/sesssetup.c:replyspnegokerberos(265)
    Lookup trust account via passdb (METRO_ITL\SERVER1$)
    [2007/08/21 20:45:01, 1]
    /SourceCache/samba/samba-100.9/samba/source/smbd/sesssetup.c:replyspnegokerberos(271)
    trust account found via passdb fullname(SERVER1)
    [2007/08/21 20:45:01, 1]
    /SourceCache/samba/samba-100.9/samba/source/smbd/sesssetup.c:replyspnegokerberos(333)
    replyspnegokerberos: checksacl(METROITL\SERVER1$, smb)
    failed
    [2007/08/21 20:45:20, 1]
    /SourceCache/samba/samba-100.9/samba/source/smbd/sesssetup.c:replyspnegokerberos(261)
    Username METRO_ITL\SERVER1$ is invalid on this system
    [2007/08/21 20:45:20, 1]
    /SourceCache/samba/samba-100.9/samba/source/smbd/sesssetup.c:replyspnegokerberos(265)
    Lookup trust account via passdb (METRO_ITL\SERVER1$)
    [2007/08/21 20:45:20, 1]
    /SourceCache/samba/samba-100.9/samba/source/smbd/sesssetup.c:replyspnegokerberos(271)
    trust account found via passdb fullname(SERVER1)
    [2007/08/21 20:45:20, 1]
    /SourceCache/samba/samba-100.9/samba/source/smbd/sesssetup.c:replyspnegokerberos(333)
    replyspnegokerberos: checksacl(METROITL\SERVER1$, smb)
    failed
    Thank in advance.
    Andrea
    Message was edited by: Andrea Durante

    I can add this things:
    that happen only with domain administrator account...

  • When i login with microsoft account cannot access with administrative share c$

    i have a problem when i login to windows with microsoft account cannot access any network computer with administrative sharing c$,d$ with windows 8.1 
    but when i login with local account can access
    and some people tell  me create key in regedit t fix it 
    after enter user name and password show this error 
    and i apply your instruction  and not fix until now
    note:
     my Machine windows 8.1 if another machine in network windows 7 can access a hidden share if machine in network windows 8.1 show this message in image 2 
    but if i login with local user can i access all machine hidden share network windows 7 and 8.1

    yes this computer i want to access  name poland2-work and have two users 
    first :administrator
    second : poland 2

  • Access denied for folder when permissions set with WMI

    Hi,
    When I add/modify access rights based on the Win32_ACE class, there seems to be a difference in the result, then when setting it with the GUI in Windows.
    The situation is as follow:
    I want to set Modify access on a remote folder, but also want to avoid deletion of the folder itself. This can easily be done by setting "deny delete on this folder only" in addition to "allow modify to this folder, files and subfolders".
    So far no issue.
    Now I notice that, although the GUI shows exactly the same result in advanced settings of the security property, the folder set with WMI script gives a deny when opening it with the user account. The same folder, set with the same security and result in
    the advanced tab, but set in the GUI, works fine.
    Note: The reason that I use WMI is because the remote system is a standalone machine, not sharing the same domain or trust.
    I compared the ACEFlags, AceType and AccessMask for both the GUI set and script set permissions, and they are exactly the same.
    GUI => AccessMask:1179817 AceType:0 iAceFlags:3
    Script => AccessMask:1179817 AceType:0 iAceFlags:3
    What a strange world we live in... :-)
    Any idea?

    What Operating System Interface are you referring?  What program?
    You are being obtuse. What is it that you are trying to compare. THe settings in WMI cannot be directly compared to anything in the Security Wizard.
    ¯\_(ツ)_/¯
    Just the properties of the folder in Windows on the security tab. The result is the same for both the permissions set with the interface as well as the one set with the WMI script. The two references you see are just taken with WMI:
    Set by Windows interface => AccessMask:1179817 AceType:0 iAceFlags:3 
    Set by WMI script => AccessMask:1179817 AceType:0 iAceFlags:3
    This are the values "AceFlags", "AceType" and "AccessMask" from management class WIN32_ACE:
    http://msdn.microsoft.com/en-us/library/aa394063(v=vs.85).aspx
    I just want to show that the actual ACE object returns the same values for both methods, but the effect appear to be that the script set permission are denied. And I am looking for the reason why.
    Can you provide the script that you're using to create the ACE(s) and add them? If I'm understanding what you're trying to do, there should be two ACEs created: one to allow the modify access and one to deny the folder deletion. The ACE you're showing is just
    an allow ACE (AceType 0).
    That is correct there are (or should be) two ACEs. I cannot get hold on my source right now (will be later today), but my code is based on this source:
    http://www.minasi.com/forum/topic.asp?TOPIC_ID=7501
    What I basically do is getting the DACL properties, loop through it to check that the user exists that I want to update. If it does I check that the current AceType is of the same type (allow or deny) that I am updating/adding. If that type is a match, I
    replace the ACE object with the new Flag, Type and Mask using a Win32_ACE object. If type type doesn't match, then I add both the current ACE with the new ACE at the same time. I noticed that if I don't do it at the same time, only the last remains. If the
    user doesn't match I check that the AceFlags is not equal to 16 (inherit) and then add the original ACE object in the ACE array. At the end I add the new ACE if the user was not found at all (new). The array of individual ACE objects is added to List of managementobjects
    and then again linked to the DACL value.

  • Active Sync does not start as domain user with no Administrator rights.

    Hi all,
    Searched the forums and the net but can't find anything about this.
    Situation:
    In a domain where users only have standard users rights I installed on a PC as a domain admin Active Sync 4.5
    When I logon as a user the Active Sync software can not be started.
    I disabled the firewall and even set full rights permission on the Active Sync directory both didn't help out.
    When I m logged on as this user I can choose to Start the program as a different user.
    This only works when I Start it with the domain administrator account.
    I hope that I do not have to give that information to this user to make this software work.....
    Anyone had the same problems? Anyone a idea?
    Thx in advance.
    Kind regards,
    Aartjan

    try this:
    1. make sure you install "activesync" from local harddisk (not from network), and do not delete the setup file after
    installation
    2. local in as "local administrator" and connect your PDA and make sure it can sync, I did not create a profile and just leave PDA connect as "guest" for now
    3. log off and re-login as "domain user", connect with USB should work
    4. if they still cannot communicate, run "ActiveSync" from start menu
    it works for me

  • Use of domain administration port breaks session access?

    WLS 8.1.2;
              We have a third-party app deployed in a pretty basic cluster setup (two managed servers, each on a separate machine). When accessing the main web app, it works fine. If/when we enable the domain-wide administration port (DAP)(after enabling SSL on each server), we can no longer access the application - we get the exception shown below.
              Note - if we shut down one of the two managed servers with DAP enabled, the app works. If we disable DAP and run both managed servers using SSL, the app works.
              What have done wrong?
              tia,
              Rick
              <snip>
              ####<Jun 9, 2005 10:26:49 AM EDT> <Error> <HTTP Session> <OYARSA4> <ep01> <ExecuteThread: '9' for queue: 'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-100060> <An unexpected error occurred while retrieving the session for Web application: ServletContext(id=247422,name=eprovision-client,context-path=/eprovision-client).
              java.lang.SecurityException: User <anonymous> does not have access to the administrator port.
                   at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
                   at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:138)
                   at weblogic.cluster.replication.ReplicationManager_812_WLStub.create(Unknown Source)
                   at weblogic.cluster.replication.ReplicationManager.trySecondary(ReplicationManager.java:1064)
                   at weblogic.cluster.replication.ReplicationManager.createSecondary(ReplicationManager.java:997)
                   at weblogic.cluster.replication.ReplicationManager.register(ReplicationManager.java:391)
                   at weblogic.cluster.replication.ReplicationManager.register(ReplicationManager.java:376)
                   at weblogic.cluster.replication.ReplicationManager.register(ReplicationManager.java:370)
                   at weblogic.servlet.internal.session.ReplicatedSessionData.<init>(ReplicatedSessionData.java:95)
                   at weblogic.servlet.internal.session.ReplicatedSessionContext.getNewSession(ReplicatedSessionContext.java:304)
                   at weblogic.servlet.internal.ServletRequestImpl.getNewSession(ServletRequestImpl.java:2472)
                   at weblogic.servlet.internal.ServletRequestImpl.getSession(ServletRequestImpl.java:2169)
                   at weblogic.servlet.security.internal.SecurityModule$SessionRetrievalAction.run(SecurityModule.java:637)
                   at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
                   at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
                   at weblogic.servlet.security.internal.SecurityModule.getUserSession(SecurityModule.java:612)
                   at weblogic.servlet.security.internal.FormSecurityModule.stuffSession(FormSecurityModule.java:404)
                   at weblogic.servlet.security.internal.FormSecurityModule.checkUserPerm(FormSecurityModule.java:391)
                   at weblogic.servlet.security.internal.SecurityModule.beginCheck(SecurityModule.java:197)
                   at weblogic.servlet.security.internal.FormSecurityModule.checkA(FormSecurityModule.java:181)
                   at weblogic.servlet.security.internal.ServletSecurityManager.checkAccess(ServletSecurityManager.java:145)
                   at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3539)
                   at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2585)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              Caused by: java.lang.SecurityException: User <anonymous> does not have access to the administrator port.
                   at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:910)
                   at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:844)
                   at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.java:222)
                   at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:794)
                   at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:570)
                   at weblogic.socket.SSLFilter.dispatch(SSLFilter.java:281)
                   at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:105)
                   at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
              </snip>

    An unexpected error occurred while retrieving the session for Web application: logContext.
              Cause might Failed to retrieve the session from persistent store.
              pl. check your configuration
              Prasanna Yalam

  • Strange issues with domain controller/DNS server

    Our domain controller/DNS server was working fine this morning. Then suddenly we stopped being able to access certain things on it. I could ping it, RDP into it, and access some files on it, but I couldn't run any applications hosted on it, accessing shared
    network files was slow, and different people around the office were getting access denied errors to files and folders they had full control of in NTFS (and in shared permissions).
    At first I noticed an NTP error so I registered w32tm and started the service and that got rid of the error but didn't fix anything.
    Oddly, machines still had internet access.
    We tried rebooting everything, restarting services, nothing has helped.
    When I accessed the server directly through the console I could access everything, could connect to any machine in the office, nothing seemed to be wrong with it.
    Any ideas?

    Is there any recent changes in your network or firewall or antivirus? Is there any change/updates performed in the AD side? I would suggest find out changes being done at the AD or Network/FIrewall level. You can run various diagnostic test within your AD
    environment to find the overall health of the AD infra.
    What does DCDIAG actually… do?
    Active Directory Replication Status Tool Released 
    http://msmvps.com/blogs/ad/archive/2008/06/03/active-directory-health-checks-for-domain-controllers.aspx
    Awinish Vishwakarma - MVP
    My Blog: awinish.wordpress.com
    Disclaimer This posting is provided AS-IS with no warranties/guarantees and confers no rights.

  • Rd web showing all remoteapps when logging in with an account of a trusted domain

    we have a dmz with a separate domain. there is a one way trust to our local domain
    In the dmz domain there is a rdweb and rd gateway. When logging in with an account from the dmz domain in the rdweb it's all fine but when logging in with an account from the trusted domain all remoteapp's are shown
    all servers are 2012r2

    Hi sir,
    Please make sure your account has already added into your Pay-As-You-Go subscription as co-administrator role . If the account was not in your subscription please add it and try to login on from your VS again.
    If you always occurred this issue, you can try to download the publish file and import it into you VS, please follow this steps:
    http://azure.microsoft.com/en-us/documentation/articles/mobile-services-windows-how-to-import-publishsettings/
    Regards,
    Will 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for