w10install/scripts/cleanup-startmenu.cmd

40 lines
1.4 KiB
Batchfile
Raw Permalink Normal View History

2021-01-10 18:45:55 +01:00
@echo off
2021-03-14 11:53:43 +01:00
set STARTMENU=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
set STARTMENU_USER=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
2021-03-08 20:45:07 +01:00
2021-01-10 18:45:55 +01:00
echo ####### %0 #######
2021-01-12 19:11:44 +01:00
echo kill system processes and wait a short time ...
2021-01-29 19:09:28 +01:00
taskkill /f /im StartMenuExperienceHost.exe 2>nul
taskkill /f /im shellexperiencehost.exe 2>nul
taskkill /f /im explorer.exe 2>nul
2021-01-10 18:45:55 +01:00
2023-01-22 21:18:28 +01:00
echo sleeping 5 seconds ...
ping 127.0.0.1 -n 5 >nul 2>nul
2021-01-10 18:45:55 +01:00
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
2022-12-27 17:15:05 +01:00
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ImmersiveShell\StateStore" /V ResetCache /T REG_DWORD /D 1 /F
2021-01-10 18:45:55 +01:00
2021-03-08 20:45:07 +01:00
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
2021-03-14 11:53:43 +01:00
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
2023-01-22 21:18:28 +01:00
echo sleep 5 seconds and start explorer ...
ping 127.0.0.1 -n 5 >nul 2>nul
2021-01-29 19:09:28 +01:00
start explorer.exe
2021-01-10 18:45:55 +01:00
echo ####### %0 #######