PowerShell
General
Updating
winget search Microsoft.PowerShell
winget install --id Microsoft.PowerShell --source winget
Check Version
$PSVersionTable.PSVersion
Users
List users
net user
Change password of a local user account
net user [username] [new_password]
Enable or Disable a local user
net user [username] /active:yes
(or no)