mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
8 lines
228 B
PowerShell
8 lines
228 B
PowerShell
# PowerShell script to disable the Administrator account
|
|
|
|
# Run this script as an administrator
|
|
|
|
# Disable the Administrator account
|
|
Disable-LocalUser -Name "Administrator"
|
|
|
|
Write-Host "Administrator account has been disabled."
|