即使重新启动后,我也无法找到"测试"用户在users文件夹或其他任何地方。但是,当我尝试使用相同的变量重复这些步骤时,Powershell告诉我"测试"用户帐户已存在。
对于我在IT公司的工作,我必须使用Powershell编写一个脚本,在其他操作中创建一个新的本地用户。我按照这里的教程http://blogs.technet.com/b/heyscriptingguy/输入了以下命令 -
$cn = [ADSI]"WinNT://Inquisition"
$user = $cn.Create("User","Test")
$user.SetPassword("P@ssword!")
$user.setinfo()
$user.description = "TestUser"
$user.SetInfo()
我是Powershell的新手,并开始头疼。任何想法?