RE: Modify Terminal Services Environment Properties for a User Account
Can anybody with this .VBS, Please!!!!
"Leo" wrote:
> Hello,
> I have following script for AD user. How to make it run on stand alone
> server with no AD?
> Thanks.
>
> *********************
> Const Enabled = 1
> Const Disabled = 0
>
> Set objUser = GetObject _
> ("LDAP://cn=MyerKen,ou=Management,dc=NA,dc=fabrikam,dc=com" )
>
> objUser.ConnectClientDrivesAtLogon = Enabled
> objUser.ConnectClientPrintersAtLogon = Enabled
> objUser.DefaultToMainPrinter = Enabled
> objUser.TerminalServicesInitialProgram = "cmd"
> objUser.TerminalServicesWorkDirectory = "c:\temp"
> objUser.SetInfo
> *********************************
>
|