w10install/scripts/cleanup-startmenu.cmd

23 lines
727 B
Batchfile
Raw Normal View History

2021-01-10 18:45:55 +01:00
@echo off
echo ####### %0 #######
2021-01-12 19:11:44 +01:00
echo kill system processes and wait a short time ...
2021-01-10 18:45:55 +01:00
taskkill /f /im StartMenuExperienceHost.exe
taskkill /f /im shellexperiencehost.exe
taskkill /f /im explorer.exe
ping 127.0.0.1 -n 3 >nul 2>nul
2021-01-12 19:11:44 +01:00
echo cleanup TempState directories and reset cache ...
2021-01-10 18:45:55 +01:00
del %LOCALAPPDATA%\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\TempState\* /q
del %LOCALAPPDATA%\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy\TempState\* /q
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\ImmersiveShell\StateStore" /V ResetCache /T REG_DWORD /D 1 /F
2021-01-12 19:11:44 +01:00
echo start explorer again ...
2021-01-10 18:45:55 +01:00
ping 127.0.0.1 -n 1 >nul 2>nul
start explorer
echo ####### %0 #######