Skip to content
Follow
Windows

How to List User Profiles and Accounts in Windows 11

Richard
Written by
Richard
Mar 25, 2024 Updated Aug 13, 2026 3 min read
How to Add Music Folders in Windows Media Player
How to Add Music Folders in Windows Media Player

User profiles in Windows 11 are individual digital spaces that store personal files, app settings, and desktop layouts for everyone who shares the same computer. Finding these profiles takes more than checking the standard settings menu because Windows hides the actual folder setup.

Every account has its own folder stored inside 📁C:\Users, which helps you keep track of who owns what. When you need to find all user accounts on your PC, you can view this folder list to spot hidden accounts or clean up old storage fast.

⚡ Quick Answer

View profile folders in File Explorer by navigating to C:Users and enabling hidden items. Use the Command Prompt with `net user` or `wmic useraccount get name,SID` for a technical list. The Registry Editor at 🗝️HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionProfileList also links accounts to their paths.

Step 1View Profile Folders in File Explorer

To view all profile folders currently on the computer, open File Explorer and navigate to:

C:\Users

Windows user profiles folders
Windows user profiles folders

Note that certain directories remain hidden by default. Click the View menu in File Explorer , select Show, and check Hidden items to reveal them.

Step 2Using the Command Line to List Accounts

Right-click the Start button and select Terminal (Admin). Run net user to pull up every local account name on the machine.

Open the Windows Terminal with administrator privileges. To list all local user accounts, type the following command and press Enter:

💻Code
net user

This command reveals a list of account names. To retrieve deeper details, including the Security Identifier (SID)—a unique number identifying each account—use this command:

💻Code
wmic useraccount get name,SID

Step 3Matching Profiles via Registry Editor

Windows maps every account to its folder using the registry, a central database that stores core system settings. To find this connection, check a specific location within the Registry Editor. After opening regedit, navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList and look through the S-1-5 folders for the ProfileImagePath value.

1. Press Win + R, type regedit, and press Enter.
2. Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
3. Click through the folders starting with S-1-5 to examine the ProfileImagePath value.

list and match user profiles with accounts
list and match user profiles with accounts

Step 4Using Advanced Management Tools

Windows 11 Pro and Enterprise editions include a built-in utility called Local Users and Groups for deeper account management. Press Win + R, type lusrmgr.msc, and press Enter. This utility provides a visual interface to manage accounts, disable users, or reset passwords without touching the command line.

Summary

Managing user profiles remains vital for system health. Using the command line, Registry Editor, or Local Users and Groups tool maps user accounts to their folders accurately. This practice clarifies data storage locations and maintains a clean Windows 11 environment.

Why are some user profiles hidden in 🪟 Windows 11?

Windows hides certain profiles, such as the Default or Public accounts, to prevent users from accidentally deleting critical system files. These directories are essential for the operating system to function correctly. Enable the 'Hidden items' option in the File Explorer View menu settings to view them.

What is the difference between a local user and a Microsoft account profile?

A local user account operates exclusively on a single PC, keeping settings and files bound to that hardware. A Microsoft account uses an email address for sign-in and syncs settings and files across multiple devices.

Warning: Never manually rename or delete folders inside C:\Users. Doing so corrupts the user profile and triggers a temporary profile upon login, resulting in potential data loss. Always rely on the official Settings app to delete user accounts.

Can I see when a user profile was last accessed?

Determining when a user profile was last accessed involves checking the 'Date modified' timestamp on the NTUSER.DAT file located inside that user's directory.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Change Folder Layout View in Windows 11 File Explorer
Windows How to Change Folder Layout View in Windows 11 File Explorer
How to Enable or Disable Window Preloading in File Explorer on Windows 11
Windows How to Enable or Disable Window Preloading in File Explorer on Windows 11
How to View All User Accounts in Windows 11
Windows How to View All User Accounts in Windows 11
How to Rename User Profile Folder in Windows 11
Windows How to Rename User Profile Folder in Windows 11

1 Comment

Leave a Comment

Your email address will not be published. Required fields are marked *