Home > Quick Guides > How to Create a Local User with PowerShell
Right-click on the main screen on your computer, select Open in Terminal to open the PowerShell window.
Type the command:
$password = Read-Host -AsSecureString
New-LocalUser -Name "LazyUser" -Password $password -FullName "Lazy User" -Description "Test user"
and then press Enter.
Leave a Reply.