Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
pub:windows_command_line_create_users [2021/11/26 01:55] – created derek | pub:windows_command_line_create_users [2023/09/16 05:53] (current) – removed derek | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{tag> template}} | ||
- | == 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 | ||
- | |||
- | |||
- | * this is the default new page template | ||
- | |||
- | |||