To create new user from Drush command

To create new user using Drush use below command from Drush

drush user-create admin --mail="person@example.com"  --password="admin"
Where
Admin is the username
mail is the email address
and Password

Comments