Category filter
Scripts to create users on Windows 10 devices
Some corporate devices might be used by more than one employee. As a result, an administrator might have to create separate user accounts on each device. Manually creating accounts on all the devices is a tedious task. Hexnode lets admins deploy scripts to get the job done.
Jump To
Batch Script
1 |
net user username password /add |
E.g., To create a user Josh,
Net user Josh “” /add
Powershell Script
1 |
New-LocalUser –Name “username” -NoPassword |
E.g. To create a user Josh,
New-LocalUser –Name “Josh” -NoPassword
Need more help?