Thunderbird deleted.
Problem is fixed! THANK YOU!
Problem is fixed! THANK YOU!
47 min read

"WAR" wrote:"Robear Dyer" wrote:Can you now access the fidelity.com log-in page?YES! Thank You.
"WAR" wrote:"Robear Dyer" wrote:Does (Windows) Security Center continue to show ZA as disabled 5 to 10 minutes after you're (re)booted?
Yes, but the zone alarm program shows it IS running and protecting the computer.
@echo off
cd %~dp0
REMAumha Forum script only for this user
REMPlease do not use unless under direction.
REMUnintended consequences are likely if you are not this user.
REMAuthored by Bill Castner, AumHa Forum, from notes by Ramesh, MS-MVP, based on
REMhttp://msdn.microsoft.com/library/defau ... ng_wmi.asp
net stop winmgmt
c:
cd %systemroot%\system32\wbem
echo Deleting old Repository....
rd /S /Q repository
echo Registering key DLLs....
regsvr32 /s %systemroot%\system32\scecli.dll >NUL
regsvr32 /s %systemroot%\system32\userenv.dll >NUL
echo Recompiling initial MOF namespace entries....
mofcomp cimwin32.mof >NUL
mofcomp cimwin32.mfl >NUL
mofcomp rsop.mof >NUL
mofcomp rsop.mfl >NUL
echo Re-registering WMI components....
for /f %%s in ('dir /b /s *.dll') do regsvr32 /s %%s >NUL
echo Finishing MOF and MFL compilation.....
for /f %%s in ('dir /b *.mof') do mofcomp %%s >NUL
for /f %%s in ('dir /b *.mfl') do mofcomp %%s >NUL
echo DONE. Please reboot your computer now.
pause
cd %~dp0
del %0
exit