This commit is contained in:
Michael H.G. Schmidt 2021-03-08 20:45:07 +01:00
parent a5499b07d9
commit 9fa6df748b
2 changed files with 25 additions and 10 deletions

View File

@ -1,5 +1,7 @@
@echo off @echo off
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
echo ####### %0 ####### echo ####### %0 #######
echo kill system processes and wait a short time ... echo kill system processes and wait a short time ...
@ -14,6 +16,14 @@ del %LOCALAPPDATA%\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txy
del %LOCALAPPDATA%\Packages\Microsoft.Windows.ShellExperienceHost_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 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
echo start explorer again ... echo start explorer again ...
ping 127.0.0.1 -n 3 >nul 2>nul ping 127.0.0.1 -n 3 >nul 2>nul
start explorer.exe start explorer.exe

View File

@ -14,9 +14,11 @@ echo set desktop colour ...
echo starting BGInfo ... echo starting BGInfo ...
%TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0 %TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0
rem ##### echo.
rem ##### USER CONFIG FILES echo #####
rem ##### echo ##### USER CONFIG FILES
echo #####
echo.
rem SSH rem SSH
mkdir %USERPROFILE%\workspace 1>nul 2>nul mkdir %USERPROFILE%\workspace 1>nul 2>nul
@ -113,14 +115,17 @@ rem config must be full qualified pathname (OpenShell BUG!)
set CONFIG=%TOOLS%\scripts\config\OpenshellSettings.xml set CONFIG=%TOOLS%\scripts\config\OpenshellSettings.xml
"%ProgramFiles%\Open-Shell\StartMenu.exe" -xml %CONFIG% "%ProgramFiles%\Open-Shell\StartMenu.exe" -xml %CONFIG%
echo restarting explorer ... rem ... stupid os problem #4
taskkill /f /im explorer.exe 1>nul 2>nul echo removing some useless files ...
start explorer.exe del /F %APPDATA%\"Microsoft\Windows\Start Menu\Programs\Accessories\Internet Explorer.lnk" 2>nul
del /F %APPDATA%\"Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk" 2>nul
rd /S /Q %APPDATA%\"Microsoft\Windows\Start Menu\Programs\Maintenance" 2>nul
del /F "%USERPROFILE%\Desktop\Microsoft Edge.lnk" 2>nul
rem try to delete some useless files ... echo restarting explorer ...
del /F "$APPDATA%\Microsoft\Windows\Start Menu\Programs\Accessories\Internet Explorer.lnk" 1>nul 2>nul taskkill /f /im explorer.exe 2>nul
del /F "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk" 1>nul 2>nul timeout /T 2
del /F "%USERPROFILE%\Desktop\Microsoft Edge.lnk" 1>nul 2>nul start explorer.exe
echo 1 >%STATUSFILE% echo 1 >%STATUSFILE%