Local Users and Groups using Windows CMD
NEED IT SUPPORT? VISIT SUPPORT.ITOFUS.COM AND OPEN A TICKET!
LIST USERS
net user
CREATE USER
net user "username" "password" /add
CHANGE USER PASSWORD
net user "username" "password"
DELETE USER
net user "username" /delete
ADD USER TO GROUP
net localgroup "Administrators" "username" /add
REMOVE USER FROM GROUP
net localgroup "Administrators" "username" /delete
REFERENCE
https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc771865(v=ws.11)