In this article we will learn how to fix troubleshoots issue like, “An Error Occurred While Troubleshooting, an unexpected error has occurred. The troubleshooting wizard can’t continue” this is an a error of built-in troubleshooter, this happen when your windows pc troubleshooter not working properly, so lets see how to fix this.
1. Sometime restart fix will this issue, so restart pc and check if the troubleshooter works, if not’ than follow the step below.
2. Open notepad copy and paste below code;
@echo off
net stop wuauserv
cd %systemroot%
ren SoftwareDistribution SoftwareDistribution.old
net start wuauserv
net stop bits
net start bits
net stop cryptsvc
cd %systemroot%\system32
ren catroot2 catroot2.old
net start cryptsvc
regsvr32 Softpub.dll
regsvr32 Wintrust.dll
regsvr32 Mssip32.dll
regsvr32 Initpki.dll /s
echo Restarting Computer
shutdown.exe -r -t 00
3. Save the notepad file with extension .bat on desktop (ex: tfix.bat)
4. Now right click on the file and select “Run as Administrator” Once process is completed, restart the pc, hope this will fix troubleshooting error.