Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pub:windows_command_line_create_users [2022/02/17 21:38] – derek | pub:windows_command_line_create_users [2023/09/16 05:53] (current) – removed derek | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ==== windows command line create users ==== | ||
- | |||
- | === cmd === | ||
- | |||
- | example: create local Adminsxl with password Admin123 | ||
- | |||
- | net user adminsxl Admin123 /add | ||
- | net localgroup Administrators adminsxl /add | ||
- | |||
- | example: create local Owner without password | ||
- | |||
- | net user Owner /add | ||
- | net localgroup administrators Owner /add | ||
- | |||
- | example: create domain user | ||
- | |||
- | net user username /add /DOMAIN | ||
- | net localgroup username Owner /add | ||