无法访问Powershell 4.0中的本地用户?

时间:2015-11-21 07:36:12

标签: windows shell powershell scripting

即使重新启动后,我也无法找到"测试"用户在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的新手,并开始头疼。任何想法?

0 个答案:

没有答案