w10install/scripts/unpin-taskbar-icons.cmd

12 lines
338 B
Batchfile
Raw Normal View History

2022-09-27 22:45:32 +02:00
@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 #######