Post Virus Problems

From Indie IT Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Background Intelligent Transfer (BITS) Not Present In 'Services.msc': How To Fix

Fix 1

In a terminal:

sfc /scannow

Fix 2

Paste the following in to Notepad:

regsvr32 qmgr.dll /s
regsvr32 qmgrprxy.dll /s
sc sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)
regsvr32 wuaueng.dll /s

Save the file as:

bitsfix2.cmd

Double click on the file to run it.

NOTE: You can save the file with whatever name you wish as long as the filename has the .cmd extension.

Fix 3

In a terminal:

sc create Background Intelligent Transfer Service binpath= "c:\windows\system32\svchost.exe -k netsvcs" start= delayed-auto 

Then restart the computer.

Windows Update Disabled/Not Present In 'Services.msc': How To Fix

Copy and paste the following in to Notepad:

net stop bits
net stop wuauserv
regsvr32 /u wuaueng.dll /s
del /f /s /q %windir%\SoftwareDistribution\*.*
del /f /s /q %windir%\windowsupdate.log
regsvr32 wuaueng.dll /s
net start bits
net start wuauserv
wuauclt.exe /resetauthorization /detectnow

Save the file as:

aureinstall.cmd

Double click on the file to run it.

NOTE: You can save the file with whatever name you wish as long as the filename has the .cmd extension. Do not worry if you see errors telling you that the file or service does not exsist, the virus may have done away with them. Plus deletion of SoftwareDistribution and windowsupdate.log can take several minutes.

Thanks for the above fix must go to happyrock and his post here.