1

嗨,我正在尝试为将使用 powershell 脚本创建的远程客户端设置登录程序参数。如下所示

在此处输入图像描述

我设法使用登录脚本在配置文件选项卡中设置

$objUser.PSBase.InvokeSet('LoginScript', "logoff.cmd")

作为这个线程中的种子here

问题是我在 ADSIedit 中找不到属性,我使用和工作的一些属性也没有在 ADSIedit 中显示,例如 PasswordExpired

这使我相信该属性确实存在。下面是我的代码

$objComputer = [ADSI]"WinNT://127.0.0.1"
$objUser = $objComputer.Create('user', $username)
$objUser.SetPassword($password)
$objUser.PSBase.InvokeSet('Description', "user " + $userName)
$objUser.PSBase.InvokeSet('userflags', 512)
$objUser.PSBase.InvokeSet('passwordExpired', 1)
$objUser.SetInfo();
4

1 回答 1

0

在IADsTSUserEx库中找到答案花了很长时间才弄清楚

这是下面的代码

# adds user
$objComputer = [ADSI]"WinNT://127.0.0.1"
$objUser = $objComputer.Create('user', $username)
$objUser.SetPassword($password)
$objUser.PSBase.InvokeSet('Description', "user " + $userName)
$objUser.PSBase.InvokeSet('userflags', 512)
$objUser.SetInfo();
# set password not to expire
wmic USERACCOUNT WHERE "Name = '$username'" SET Passwordexpires=FALSE
#set logoff script
$ou = [adsi]"WinNT://127.0.0.1"
$user = $ou.psbase.get_children().find("test")
$user.PSBase.InvokeSet("TerminalServicesInitialProgram", "C:\logoff.bat")
$user.setinfo()
于 2012-08-24T15:43:42.747 回答