The profile folder for each user account on your computer is stored under C:\Users
. On some systems, the user profile folder may not appear when you open the “C:\Users” folder in File Explorer.
However, typing the command echo %userprofile% will tell that the profile folder is located at “C:\Users\{username}
“. You may wonder why the folder doesn’t appear in Explorer.
This post tells you how to make it visible.
Cause
The user profile folder may have the System or Hidden attributes or both. Clearing those attributes should resolve the issue. To check the attributes for the folder, run the attrib %userprofile%
command from a Command Prompt window.
The first command in the above screenshot is to check the attributes for the profile folder. It showed SH, which means “System” and “Hidden” attributes are enabled. The second command clears those attributes. Re-running the 1st command shows that the SH attributes are successfully removed.
Additionally, ensure there is no desktop.ini in the %userprofile% folder. The desktop.ini folder is usually hidden.
Resolution
Open a Command Prompt window.
Type the following commands and press Enter after each command:
attrib -s -h "%userprofile%"
del "%userprofile%\desktop.ini" /a
exit
That’s it. The user account home folder (a.k.a, profile folder) should be visible when you open the C:\Users
folder.
One small request: If you liked this post, please share this?
One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:- Pin it!
- Share it to your favorite blog + Facebook, Reddit
- Tweet it!