1) On the remote computer, right-click on the start menu and click "Windows PowerShell (Admin)" Image Added
2) Copy in the following commands line by line, substituting in the user's Netid or "L-netid" to create an admin account (examples below) Standard user: Code Block |
---|
| $Password = Read-Host -AsSecureString
New-LocalUser -Name "<netid>" -FullName "Firstname Lastname" -Description "Standard user account for <netid> -Password $Password |
Admin user: Code Block |
---|
| $Password = Read-Host -AsSecureString
New-LocalUser -Name "<netid>" -FullName "Firstname Lastname" -Description "Admin user account for <netid> -Password $Password |
|