This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
computing:windows:add_hidden_users [2018/05/01 13:02] jcooper created |
computing:windows:add_hidden_users [2018/05/01 13:24] (current) jcooper |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Add Bulk Active Directory | + | ====== Add Hidden |
- | FIXME Incomplete and needs verification | + | This is to create a user that does not show in **Control Panel -> User Accounts** or on the **Sign In Screen** |
- | ===== PowerShell | + | ===== |
- | + | ||
- | https:// | + | |
- | + | ||
- | https:// | + | |
- | + | ||
- | Create a '' | + | |
+ | At an **Administrative Command Prompt** | ||
< | < | ||
- | GivenName, | + | net user UserName PassWord /add (hit enter) |
+ | </ | ||
+ | < | ||
+ | net localgroup Administrators UserName /add (hit enter) | ||
</ | </ | ||
- | {{ :computing:windows: | + | :!: **UserName** and **PassWord** are replaced with your chosen values |
- | :!: Be sure to install | + | ===== Make the user hidden ===== |
- | :!: Run the '' | + | https:// |
- | **Start -> Administrative Tools -> Right-Click on Active Directory Module for Windows PowerShell | + | - Use the Windows key + R keyboard shortcut to open the Run command, type regedit, and click OK to open the Windows Registry. |
+ | - Browse the following path: **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon** | ||
+ | | ||
+ | - Name the new key SpecialAccounts. | ||
+ | | ||
+ | | ||
+ | - Inside of UserList, right-click, | ||
+ | - Name the new DWORD key with the name of the account you're trying to hide. | ||
+ | - Double-click the new DWORD key and make sure its data value is set to 0. | ||
- | Test the import: | + | ===== Set Password To Never Expire ===== |
+ | At an **Administrative Command Prompt** | ||
< | < | ||
- | PS C: | + | wmic UserAccount where name=' |
</ | </ | ||
+ | :!: Replace **UserName** with the user account you want to hide. | ||
- | Import the users: | ||
- | |||
- | < | ||
- | PS C: | ||
- | </ | ||
- | |||
- | ===== AD Bulk Admin Tool ===== | ||
- | |||
- | https:// | ||
- | |||
- | This is a bulk administration tool for an AD administrator to administer a large number of Active Directory users. | ||
- | |||
- | You can use it to: | ||
- | |||
- | * Check a large number of users | ||
- | * Create a large number of users | ||
- | * Reset a large number of users' passwords | ||
- | * Enable or disable a large number of users | ||
- | * Set a large number of users' properties | ||
- | * Check groups | ||
- | * Add users to group or remove users from group |