Windows 11, like its predecessors, provides users with the flexibility to create multiple accounts beyond the administrator account. Managing these accounts, including signing out without switching, is a seamless process. This guide unveils various methods to sign out other users on Windows 11, catering to diverse preferences.
Contents
Methods to Sign Out Other Users on Windows 11
1. Sign Out Using Task Manager:
Utilizing the Task Manager simplifies the process significantly. Here’s a step-by-step guide:
- Type “Task Manager” in the Windows 11 search bar and open the Task Manager from the results.

- In the Task Manager, navigate to the Navigation menu and select the Users tab to view all signed-in user accounts.
- Right-click on the user account you want to sign out and choose Sign off.

- Confirm the action by clicking Sign out user on the prompt.
2. Sign Out Using Command Prompt:
The Command Prompt offers another avenue for signing out other users:
- Type “Command Prompt” in the Windows 11 search bar, right-click, and select Run as administrator.

- Execute the command query session to list all signed-in users.

- Note the ID number associated with the user account you wish to log off.
- Use the command logoff ID-Number, replacing “ID-Number” with the user account’s associated number.

3. Sign Out Using PowerShell:
PowerShell provides another powerful tool for signing out users:
- Type “PowerShell” in the Windows 11 search bar, right-click, and select Run as administrator.

- Execute query session to list all signed-in users.
- Execute hostname to get the name of your computer.

- Finally, execute the command, replacing ‘Computer_Name’ and ‘User_Name’ accordingly:
$sessionID = ((quser /server:'Computer_Name' | Where-Object { $_ -match 'User_Name' }) -split ' +')[2]

Make sure to replace ‘Computer_Name’ and ‘User_Name’ in the command.
Conclusion
These three methods provide flexibility depending on your preferences. Employ them to sign out users on Windows 11 efficiently, freeing up system resources as needed. If you require further assistance in managing user accounts in Windows 11, feel free to seek additional guidance.