Disableclose.exe

Associate
Joined
18 Jun 2003
Posts
60
HI Forum:),

I wonder if you could help me, our company has just had Active Directory implemented and the following error message is appearing on vista machines when they boot to the network

Error \\starburst\netlogon\disableclose.exe

3052: Uninitalized variable or undefined function
on line 127 of o:\wbt\disableclose.wbt

Can anyone help me with this problem before i go mad:eek:.

thanx inadvance
charles
 
Sounds like the program is being referenced incorrectly in the logon script

winbatch.... thats the wbt file...so someone has created the logon script with winbatch, then incorrectly tried to call the program (\\starburst\netlogon\disableclose.exe)

You need to pass some parameters to the disableclose program ie:

Code:
@echo off
TITLE Workstation Updates
DisableClose "Workstation Updates"
echo.
echo Workstation updates being applied . . .

 
Last edited:
Back
Top Bottom