Answers for "windows creating new user"

7

add user cmd windows 10

//Add user
net user username password /ADD

//Add user account to the domain
net user username password /ADD /DOMAIN

//Add user to administrators
net localgroup administrators [username] /add
Posted by: Guest on December-12-2020
0

creating new user

root@localhost:~# useradd -u 1009 -g users -G sales,research -m -c 'Jane Doe' jane
Posted by: Guest on July-29-2021

Code answers related to "windows creating new user"

Browse Popular Code Answers by Language