Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Managing local users and groups is an essential task for system administrators working with Windows environments. The tool lusrmgr.msc (Local Users and Groups Manager) is a Microsoft Management Console (MMC) snap-in that provides a graphical interface to manage user and group accounts on a local computer. This tool is available in Windows Professional, Enterprise, and Education editions but not in Home editions.
lusrmgr.msc is a utility that allows you to create, delete, and manage user and group accounts on a Windows machine. It provides a straightforward interface to perform tasks such as:
To open lusrmgr.msc, follow these steps:
Win + R
to open the Run dialog.lusrmgr.msc
and press Enter
.This will open the Local Users and Groups Manager, where you can start managing users and groups.
While lusrmgr.msc is primarily a GUI tool, you can open it using the Command Prompt:
cmd
in the Windows search bar and pressing Enter
.lusrmgr.msc
and press Enter
.This will launch the Local Users and Groups Manager.
If you are using a Windows Home edition, lusrmgr.msc is not available. However, you can manage users using the net user
command in Command Prompt or PowerShell. For example, to create a new user, you can use:
net user NewUsername NewPassword /add
To add a user to a group, use:
net localgroup GroupName NewUsername /add