Steve,

Does it exist when you execute the following script (List all groups on the domain)?
code:
$DomainString = "DOMAINNAME"
$DomainObj = GetObject("WinNT://" + $DomainString)
$DomainObj.Filter = Array("group")

For Each $GroupObj In $DomainObj
If $GroupObj.Class = "Group"
$List = $List + $GroupObj.Name + @crlf
EndIf

Next

?$List
$DomainObj = 0
$GroupObj = 0

Or, list groups of a user..
code:
$DomainString="ComputerName"
$UserString = "jdoe"

$UserObj = GetObject("WinNT://" + $DomainString + "/" + $UserString)

For Each $GroupObj In $UserObj.Groups
$List = $List + $GroupObj.Name + @crlf
Next

?List

$UserObj = 0
$GroupObj = 0

HTH,

Kent

[ 03. December 2002, 16:15: Message edited by: kdyer ]
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's