如何在 Windows 7 上禁用用户帐户?

如何在 Windows 7 上禁用用户帐户?

作为管理员,如何在 Windows 7 上禁用(而不是删除)用户帐户?

我在控制面板的“管理帐户”部分中找不到任何内容。

答案1

运行lusrmgr。选择用户,双击用户名,选中“帐户已禁用”。

或者从命令行执行:Windows XP/7 通过 CMD 禁用用户帐户

答案2

您可以使用 powershell:

$User = Get-WmiObject -Class 'Win32_UserAccount' -Filter "LocalAccount=True AND Name='User name here'"
$User.Disabled = $true
$User.Put()

相关内容