add new users & delete in windows
Method- 1
command line open administrator:-
- Click the Start icon and click in the Search box.
- Type cmd into the search box. You will see the cmd (Command Prompt) in the search window.
- Hover the mouse over the cmd program and right-click.
- Select "Run as administrator".
ADD
C:\windows\system32>net user (list user list)
C:\windows\system32>net user (set user name) /add /active:yes
DELETE
C:\windows\system32>net user (user name) /delete
Method- 2