Edge re-appears #60

This commit is contained in:
Michael H.G. Schmidt 2022-09-27 22:45:32 +02:00
parent 7a4e7839ff
commit fd67107dd7
2 changed files with 15 additions and 0 deletions

View File

@ -209,6 +209,10 @@ rem ... stupid os problem #3
call cleanup-programlist.cmd
echo.
rem ... stupid os problem #4
call unpin-taskbar-icons.cmd
echo.
rem ... remove stupid public folders
call cleanup-publicdir.cmd

View File

@ -0,0 +1,11 @@
@echo off
echo ####### %0 #######
echo removing all applications from taskbar ...
del /F /S /Q /A "%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\*"
reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband /F
taskkill /f /im explorer.exe
start explorer.exe
echo ####### %0 #######