zoukankan      html  css  js  c++  java
  • How to solve the problem : "You have been logged on with a temporary profile"

    /*By Jiangong SUN*/


    I've encountered a problem in one server, which is : Every time I login into the server, it creates a new temporary user profile for my account.


    Here is the error message:

    "You have been logged on with a temporary profile. You cannot access your files and files created in this profile will be deleted when you log off. To fix this, log off and try logging on later. Please see the event log for details or contact your system administrator."


    You can check the registry to see if the account have a or several temporary profiles with the following path.

    HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionProfileList


    By check the profiles list, you may find there are two profiles using similar names.

    For example, a profile called "S-1-5-82" and another profile called "S-1-5-82.bak".

    If you check further, you will find the .bak profile's "ProfileImagePath" value is your account, and the currently used profile's "ProfileImagePath" is a temporary profile you're using right now.


    To solve this problem, you can just rename the profile "S-1-5-82" to "S-1-5-82.tmp", and revert "S-1-5-82.bak" to "S-1-5-82".

    In this way, the correct profile is used. 

    Then restart the server, and the problem should be fixed.




    Reference:

    http://www.techsupportall.com/how-to-fix-temporary-profile-in-windows-7/

    http://support.microsoft.com/kb/947242









  • 相关阅读:
    Python—将py文件编译成so文件
    Python—网络通信编程之套接字基本原理
    Python—IO多路复用之epoll总结
    Python—IO多路复用之poll总结
    Python—IO多路复用之select总结
    希尔排序
    直接插入排序
    冒泡排序
    选择排序(C++,Java,Python实现)
    二叉搜索树的相关功能的实现
  • 原文地址:https://www.cnblogs.com/blfbuaa/p/7364257.html
Copyright © 2011-2022 走看看