Thursday, August 4, 2016

Net user command : Manage user accounts from command line - Quản lý user qua script command line

Using Net user command, administrators can manage user accounts from windows command prompt. Below are some examples on how to use this command.
Add a domain user account:
Net user /add newuseLoginid  newuserPassword /domain
Add new user on local computer:
Net user /add newuserLoginid  newuserPassword
Advanced options to add new user account can be read in the below article.
Add new user from windows command line.
Disable/Lock a domain user account:
Net user loginid  /ACTIVE:NO /domain
To enable/unlock a domain user account:
Net user loginid /ACTIVE:YES  /domain
Prevent users from changing their account password:
Net user loginid /Passwordchg:No
To allow users to change their password:
Net user loginid /Passwordchg:Yes
To retrieve the settings of a user:
Net user username

No comments:

Post a Comment