New
#1
Process Name For Win+Tab?
Hi,
My Win+Tab is buggy (actually the interface is invisible). Do you know the process name so I can relaunch it via Task Manager instead of rebooting my whole session?
Windows 10 version: 1903
Hi,
My Win+Tab is buggy (actually the interface is invisible). Do you know the process name so I can relaunch it via Task Manager instead of rebooting my whole session?
Windows 10 version: 1903
This batch script adds task view to Desktop context menu.
Code::: Add Task View Context Menu in Windows 10 @Echo Off net sess>nul 2>&1||(powershell start cmd -ArgumentList """/c %~0""" -verb Runas & exit) :_Start Cls & Mode CON LINES=11 COLS=70 & Color 0E Echo. Echo. Echo Type (R) letter to Remove Task View from Context Menu Echo. Echo. Echo. Echo. Echo Type (E) letter to Add Task View to Context Menu Echo. Set /p input= RESPONSE: If /i Not %input%==R (Goto :_Ex) Else (Goto :_Disbale) :_Ex If /i Not %input%==E (Goto :_Start) Else (Goto :_Enable) :_Disbale Reg.exe delete "HKCR\Directory\Background\shell\TaskView" /f Cls & Mode CON LINES=5 COLS=60 & Color 0E Echo. Echo. Echo Removing Task View from Context Menu Ping -n 5 localhost > Nul Exit :_Enable Reg.exe add "HKCR\Directory\Background\shell\TaskView" /v "MUIVerb" /t REG_SZ /d "Task View" /f Reg.exe add "HKCR\Directory\Background\shell\TaskView\command" /ve /t REG_SZ /d "explorer shell:::{3080F90E-D7AD-11D9-BD98-0000947B0257}" /f Cls & Mode CON LINES=5 COLS=60 & Color 0E Echo. Echo. Echo Adding Task View to Context Menu Ping -n 5 localhost > Nul Exit
pretty much all the Win key shortcuts like Win+tab and Win+R (run) are part of explorer.exe.
Welcome to Ten Forums hb1290. Yes, that's completely correct. You can see this for yourself if you find the Windows Explorer background task in Task Manager, set Task Manager to be 'Always on top' then press WinKey+Tab. You'll see the Windows Explorer process briefly peak at around 10-15% CPU.
Try restarting Explorer from Task Manager next time it gets 'buggy'.
![]()