Script to reset Windows Update Services (Windows 7 / Server 2008 R2 and Above)
Script to reset Windows Update Services (Windows 7 / Server 2008 R2 and Above)
@echo off
REM Automation of Steps to Reset Windows Updates
REM Tested on Server 2012 R2, likely works on everything Win7/2008R2 and up
REM by Bret Fisher bret@winsitter.com
REM Origional Steps (identical to this): http://support.microsoft.com/kb/971058
REM This file Copyright MIT License
REM Stop Services
net stop bits
net stop wuauserv
net stop appidsvc
net stop cryptsvc
REM Delete the qmgr*.dat files
D...