Re: Group Policy questions



Hi Carl,

Here is an example of a startup script to do that:
'----------------------------
Set wshNetwork = CreateObject("WScript.Network")
ComputerName= wshNetwork.ComputerName

localstr="WinNT://" & Computername

YourGroup="WinNT://YourDomain/YourGroupDomainGroup"

AddToGroup YourGroup, "LocalGroup XP"

function AddToGroup(member, Grpname)

Dim grp1
Set grp1 = Getobject(localstr&"/"& Grpname,group)
grp1.Add (member)

End Function
'----------------------------
Try it and perhaps you become believer :-)

Regards,
.