assign a logon script to a local user
hello,
wrote c# code creates new local user
tried set logon script user doing:
same group or user instances.but property doesn't exist in of theses instances (localmachine, group or user). know because did:
wrote c# code creates new local user
directoryentry localmachine = new directoryentry("winnt://" + environment.machinename + ",computer");
directoryentry group = localmachine.children.find("administrators", "group");
directoryentry user = localmachine.children.find(accountname, "user");
console.writeline(user.properties.tostring());
tried set logon script user doing:
localmachine.properties["scriptpath"].insert(0, "logonscript.vbs"); localmachine.commitchanges();
same group or user instances.but property doesn't exist in of theses instances (localmachine, group or user). know because did:
system.collections.icollection col = localmachine.properties.propertynames;
foreach (object ob in col) { console.writeline(ob.tostring()); }
idea of how in other way?
hi,
you can refer following articles:
how assign logon script profile local user
http://support.microsoft.com/kb/315245
how assign logon script profile local user in windows server 2003
http://support.microsoft.com/kb/324803
regards,
wilson jia
posting provided "as is" no warranties, , confers no rights. please click "mark answer" when correct reply question.
Windows Server > Windows Server General Forum
Comments
Post a Comment