49 lines
1.7 KiB
Batchfile
49 lines
1.7 KiB
Batchfile
@echo off
|
|
|
|
set STARTMENU=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
|
|
set STARTMENU_USER=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
|
|
|
|
echo ####### %0 #######
|
|
|
|
echo kill system processes and wait a short time ...
|
|
taskkill /f /im StartMenuExperienceHost.exe 2>nul
|
|
taskkill /f /im shellexperiencehost.exe 2>nul
|
|
taskkill /f /im explorer.exe 2>nul
|
|
|
|
ping 127.0.0.1 -n 3 >nul 2>nul
|
|
|
|
echo cleanup TempState directories and reset cache ...
|
|
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
|
|
|
|
echo removing useless entries in startmenu ...
|
|
rd /S /Q %STARTMENU%\"Go Programming Language" 2>nul
|
|
rd /S /Q %STARTMENU%\Maintenance 2>nul
|
|
|
|
rem VLC ...
|
|
move /Y %STARTMENU%\"VideoLan\VLC media player.lnk" %STARTMENU% 2>nul
|
|
rd /S /Q %STARTMENU%\VideoLan 2>nul
|
|
|
|
rem Windows stuff (Character map)...
|
|
move /Y %STARTMENU%\"Accessories\System Tools\Character*.*" ^
|
|
%STARTMENU%\"Accessories" 2>nul
|
|
rd /S /Q %STARTMENU%\"Accessories\System Tools" 2>nul
|
|
|
|
rem ... stupid OS problem #5
|
|
rem why the heck are "System Tools" installed per user ? stupid Microsoft.
|
|
move /Y %STARTMENU_USER%\"System Tools\*.*" ^
|
|
%STARTMENU%\"System Tools" 2>nul
|
|
|
|
rem ... stupid OS problem #6
|
|
rem same here for the accessibility tools. WHY ? stupid Microsoft.
|
|
move /Y %STARTMENU_USER%\"Accessibility\*.*" ^
|
|
%STARTMENU%\"Accessibility" 2>nul
|
|
|
|
echo start explorer again ...
|
|
ping 127.0.0.1 -n 3 >nul 2>nul
|
|
start explorer.exe
|
|
|
|
echo ####### %0 #######
|
|
|