New
#1
re fresh win10 start menu
My start menu stopped working but strangely enough it did not take out the store,search or settings. I tooled around trying to deal with Tile Data Layer stopped State Repository Service deleted the folder did nto seem to help so I used a reset win10 update bat and it fired it up and its working now.
What do you think the processes or services are, the ones locking up the start menu data.
============
cls
echo Simple Script to Reset / Clear Windows Update
echo.
echo.
attrib -h -r -s %windir%\system32\catroot2
attrib -h -r -s %windir%\system32\catroot2\*.*
start /wait net stop wuauserv
start /wait net stop CryptSvc
start /wait net stop BITS
del /q /s /f %windir%\system32\catroot2\*.*
del /q /s /f %windir%\SoftwareDistribution\*.*
del /q /s /f "%ALLUSERSPROFILE%\application data\Microsoft\Network\downloader\*.*"
start /wait net Start BITS
start /wait net start CryptSvc
start /wait net start wuauserv
echo.
echo Task completed successfully...
echo.
PAUSE