In a W2K environment, I can't get the INGROUP command. Here is my code..

if ingroup ("Work_Flow")
? 'in workflow'
else
? 'not in wf'
endif

I know my userid is in the group because the following code will display all the groups I'm in...

$user = getobject("WinNT://@domain/@userid")

for each $group in $user.groups
? $group.name
next

I've use the /F switch, but nothing. Any ideas?

Thanks

Jim