Sorry,

Earlier in this subject we have add Domain Users to the Local Administrators group, so thats works.
Like this
Dim $Computer,$Group,$User
$Domain = "MyDOM"
$Computer = "ws001"
$Group = GetObject("WinNT://" + $Computer + "/Administrators,group")
$Group.Add("WinNT://" + $Domain + "/Domain Users")


BEFORE I do this I would like to test if Domain Users already are in the Local Administrators group. So I dont get one error code if I try to make $Group.Add several times.


/Mima