USERADD Command
Written by Bruce Cloutier on Nov 28, 0201 2:46 pm
The USERADD command is used to add a new user to the system. There can be as many as 32 users. A unique user name no longer than 9 characters must be specified.
bruce_dev /> useradd USERADD user Options: -A Administrator rights -C Control rights -D Disabled account Adds a user to the system. bruce_dev />
The new account can be tagged as Administrator, Control, or Disabled using the appropriate options. These account tags are described in detail in the USERS command topic.
The following command creates the ‘tech’ account which will be tagged with Control permissions. It will initially be Disabled.
bruce_dev /> useradd -cd tech Enter password: ***** Reenter password: ***** tech added with UID 3 bruce_dev />
Note that an initial password is requested. The password can later be changed using the PASSWD command.
bruce_dev /> users guest 0 jnior 1 Administrator tech 3 Control, Disabled user 2 Control bruce_dev />
On this page