Hello again!

With your help my scripting project is on scheme... But I've got 1 little problem... See my code:

code:
? "Checking availability of Domain Administrator account..."
SHELL '%COMSPEC% /C NET LOCALGROUP "Administrators" | FIND /I "RPZ\DomainAdministrator" >NUL 2>NUL'
IF @ERROR = 0
? "Error: RPZ\DomainAdministrator account not available!"
logoff(1)
ELSE
? "Everything okay!"
ENDIF

This code is running on the workstations from the netlogon directory on the domain controller... It looks like the checking with the SHELL command is not happening on the workstation, but on the domaincontroller hisselve!

This because my workstation has the user RPZ\DomainAdministrator.., and the script IS running! but however... my script is telling me, that user is nog available... [Confused]