Blogger Templates Skip to main content

You’ve been signed in with a Temporary Profile error in Windows: FIX

Why this problem occurs:
While we upgrade to windows 10, the upgrade actually creates a backup registry entry of your profile which you used for upgrade and ran into problems. 
When the user profile is corrupted, Windows 10 displays a notification like this:

You've been signed in with a temporary profile.
You can't access your files, and files created in this profile will be deleted when you sign out. To fix this, sign out and try signing in later. Please see the event log for more details or contact your system administrator.

Solution:
1.      Check the SID of the User Profile. To do so open Command Prompt as Admin enter the following command:
Whoami / user
You will get the result like below:
User Name                 SID
=============      ==============================================
shubam\shubam         S-1-5-21-3638800382-1909347390-2201382035-1001
Make a note of the SID.
2.       Press Windows key + R. In the run window, type regedit and press Enter. Click Yes if the UAC warning appears.
3.       In the left pane, double click on HKEY_LOCAL_MACHINE to expand it. Now click on Software under it. Similarly navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
4.      Under ProfileList in the left pane, locate the SID collected earlier. 
You will see two or more of these SID keys, probably one will have .bak at the end and other one will be without it.
5.      Click SID key without .bak and on the right double click on the ProfileImagePath value, copy the Path under the Value Data option (e.g. C:\Users\SHUBAM)
After copying the path right click on SID without .bak Delete. Click on Yes to confirm.

6.       Right click on the SID key with .bak, click on Rename, and rename the SID key to only remove ".bak" at the end of the key's name. On the right panel double click on the ProfileImagePath value name to modify it.
7.       Under the Value Data option enter the correct path of the user's profile folder (Found Earlier) and click on OK. Also verify that the State DWORD is set with a value data of 0.
8.       Close Registry Editor

Restart the computer and sign in to the account that got the temporary profile error to see if it is now fixed.  

Follow: Facebook Page
.

Comments

Popular posts from this blog

How To Create The Matrix Rain In Command Prompt

Step 1: Open Notepad. Step 2: Copy and paste the below code in your notepad @echo off color 02 :start echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%. goto start       Step 3: Click on ” File ” and then ” Save As ” option. Save your file with a ” .bat ” extension i.e ” Matrix.bat “. Step 4: Run that batch file as an administrator. To enlarge The Screen Step 5: Right-click on the command prompt and Click on the properties. Step 6: Click on the Layout tab.  Step 7: Click On the window size section and enter your required resolution. Step 8: To apply changes Click on ok. To Stop The Matrix Rain: Just press CTRL + C, Then you will be asked: ” whether to terminate the job “. Now type ” y ” to stop the program. Tips : You can even add colors to your command prompt background and text. This is just by changing color codes i.e if you...

By passing windows 7/8/8.1/10 login password using ease of access

I am almost certain that this has been covered elsewhere. If you have seen this before, then I am sorry I wasted a precious few minutes of your life. 1, Boot up using a Windows 7/8/8.1/10 Installation CD or Bootable Pendrive. 2, At the first splash screen click “INSTALL NOW” then accept the license agreement click "NEXT". 3, Press "SHIT+F10" Simultaneously. Command prompt will open up. 4, Now u need to find out at what partition your OS is installed. you can check this by typing DISKPART>LIST DISK >SELECT DISK 1 > LIST VOL and in the volumes check for the BOOT partition and note down the volume label e.g "C" (it can be different for you). 5, Type in the following commands: cd C: cd Windows/system32 copy UtilMan.exe abc.exe copy cmd.exe Utilman.exe So what did we just do here? The first two commands changed our current working directory to "/Windows/system32". This location contains both "cmd.exe" (...

Reserved Storage in Windows 10 - 1903

To make sure your device can successfully update and that it runs its best, Windows reserves a portion of storage space on your device for use by temporary files, caches, and other files. When your device is low on space, Windows will clear reserved storage so it can be used for other processes, like a Windows update. Reserving storage also helps keep disk space usage on your device more predictable and more stable. DISM Commands To Enable or Disable Reserved Storage in Windows 10 1. Open a new elevated command prompt. 2. Type DISM.exe /Online /Get-ReservedStorageState to see if the Reserved Space feature is enabled or disabled. 3. Execute the following command to enable Reserved Storage: DISM.exe /Online /Set-ReservedStorageState /State:Enabled. 4. Run the following command to disable Reserved Storage: DISM.exe /Online /Set-ReservedStorageState /State:Disabled. You are done. The change will be applied instantly, no restart required. Note: If Windows 10 is performing a ser...