标签: powershell
我需要知道是否有任何方法可以使用PowerShell将现有的本地用户保留为无密码。
答案 0 :(得分:3)
Set-LocalUser -name test -Password ([securestring]::new())
将帐户“ test”设置为空白密码。