13/01/2020
Tutorial on Making a Secret User in Windows
1. Enter your Windows environment first
Open a CMD or powershell window with Administrator access.
You can search for CMD or Powershell in your startup menu and right-click on it and select Run as Administrator.
Then, first enter the following command to create a user.
net user Abtin 123 / add
The above command will create a user named Abtin and password 123.
4. Then enter the following command to become a member of the Administrator group.
net localgroup Administrators Abtin / add
5. At the end, enter the following command to completely hide the Abtin user.
reg add "HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ SpecialAccounts \ Userlist" / v Abtin / t REG_DWORD / d 0 / f
You will now have a user named Abtin that can be used on the network and remotely, but does not appear in the Start menu, Windows login screen, and so on.
⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️
6- If you need this user to appear on the login screen and ... Windows, enter the following command.
reg add "HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ SpecialAccounts \ Userlist" / v Abtin / t REG_DWORD / d 1 / f
Note: The built-in username will be visible from the Local users and Group window, in either hidden or visible mode.
We hope you have found the useful and useful tutorial on building a secret user in Windows with Administrator access.
Written by