Showing posts with label add user. Show all posts
Showing posts with label add user. Show all posts

Friday, 21 October 2016

Add New user Delete user using cmd

Add New user Delete user using cmd

To change a password, type "net user (username) *". Don't type the quotes, and do not forget the star.
To add a user, type "net user (username) /ADD". Don't type the quotes.
To delete a user, type "net user (username) /DELETE". Don't type the quotes.
Type in "net accounts/?" for help on the net accounts command. You can use this to force log-offs and set expiration times on user accounts.
If you need to do much more, try typing in all of the suggested net commands with a "/?" at the end. Try looking on a search engine for help on how to use the command.

create and activate a Python virtual environment on macOS and Windows

create and activate a Python virtual environment on macOS and Windows: Prerequisites: Python 3: Ensure you have Python 3 installed. You ca...