Saturday, June 8, 2013

Create Windows User from the Command Prompt

To create a windows user from the command prompt:

net user /add <username> <password> 


To add the user to the local administrators group:

net localgroup administrators <username> /add

No comments:

Post a Comment

Test Authentication from Linux Console using python3 pexpect

Working with the IT420 lab, you will discover that we need to discover a vulnerable user account.  The following python3 script uses the pex...