logo logo

Vista Security Center Service Missing After An Infection

Sometimes when dealing with infections – viruses like to kill out the Security Center. They normally kill off the service so the Security Center cannot load and always pops up when you start your computer saying “Security Center is turned off. Click here to fix the problem”.

Open an elevated command prompt and type in this code :

sc create wscsvc type=share start=delayed-auto error=normal
binPath=”C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted”
depend=RpcSc/WinMgmt obj=”NT AUTHORITY\LocalService” /DisplayName=”Security
Center”

The code above will create the ‘Security Center’ service along with setting in all the perimeters.

Note: Everything in the code may be caps lock sensitive. You will need to enter it the same way as you see it.

bottom