After upgrading to SP2, all of the Windows 2000 workstations in my enviroment now display "KIX32 EntryPoint Not Found: The procedure entry point ReinitializeCriticalSection could not be located in the dynamic link library KERNEL32.DLL". This is displayed three times.My actual KIX script is very simple;
if exist ( "%systemroot%\system32\shadow.exe" )
EXIT 1
endif
$x= rtrim(substr(@ipaddress0, 6, 6))
if $x= "90.106" or $x = "90.190" or $x = "90.191" or $x = "90. 36"
? "RAS connection to detected, bypassing the rest of the login script." ?
EXIT 1
endif
$x= rtrim(substr(@ipaddress1, 6, 6))
if $x= "90.106" or $x = "90.190" or $x = "90.191" or $x = "90. 36"
? "RAS connection to detected, bypassing the rest of the login script." ?
EXIT 1
endif
$x= rtrim(substr(@ipaddress2, 6, 6))
if $x= "90.106" or $x = "90.190" or $x = "90.191" or $x = "90. 36"
? "RAS connection detected, bypassing the rest of the login script." ?
EXIT 1
endif
$x= rtrim(substr(@ipaddress3, 6, 6))
if $x= "90.106" or $x = "90.190" or $x = "90.191" or $x = "90. 36"
? "RAS connection to detected, bypassing the rest of the login script." ?
EXIT 1
endif
EXIT 0
Anyone have any idea? I've tried the latest version of KIX, even Beta 2, and no change.
Thanks,
Clark