|
Thanks for responding, guys. Howard, your answers are underneath.
============================================== Lonkero: Never had any problems on any of the NT/2000/XP machines, but I'll bear that in mind should any problems crop up.
> what is the version of your kix-files? KiXtart 2001 (version 4.12)
> are the dll's from the same package as the exe's? Yes. I downloaded it about 6 weeks ago and have only ever dealt with the one package so I couldn't have any different files.
> have you kxrpc installed on your dc? Yes. Primary AND backup.
> and finally, have you tried to track down what is the erroring resource? It brings up the error several times during the following code (I found the IsRas function on one of the kix websites and other people who used it haven't mentioned problems with it):
$AVGROUP = "AVUpdate" if not IsRas() if ingroup("$AVGROUP") shell "\\Elara\netlogon\MEtoEPO.bat" endif run "\\ganymede\monthlyaudit\auditp\vsawin.exe +silent" endif
exit
;SUB FUNCTIONS function IsRas() dim $NtProdType $IsRas=0 ; default to false if @INWIN=1 ; NT $NtProdType=readvalue('HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions','ProductType') if $NtProdType<>'LanManNT' and $NtProdType<>'ServerNT' ; not DC nor Server if exist(@LanRoot+'\RASDIAL.EXE') if @RAS $IsRas=1 endif endif endif else ; 9X if ''+readvalue('HKLM\System\CurrentControlSet\Services\RemoteAccess','Remote Connection')='01000000' $IsRas=1 endif endif endfunction
============================================= Howard: > 1. Have you upgraded ALL Win9x computer's networking files? (Winsock, MSNET32.DLL, more...) No, I didn't realise I had to. How do I know which ones to update and how would I go about that? I know some of the machines in question have had IE6 installed which I know updates some components, but they still get the errors now and again too.
> 2. Do any non-Win95 computer experience these errors? If not, see #1. If so, look for switch, router, server NIC issues. No, no problems what-so-ever on the NT/2000/XP machines.
|