PowerToys icon indicating copy to clipboard operation
PowerToys copied to clipboard

Task bar auto hide

Open sashin92 opened this issue 4 years ago • 1 comments

when processing 'slelcted' program, hido task bar.

or

i want 'short cut' to hide task bar.

Thanks.

sashin92 avatar May 25 '21 16:05 sashin92

Since this has been taking much longer, I made a workaround method using a shortcut in the keyboard manager combined with a Powershell script, in case it is useful to anyone:

App: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe

Args: -NoProfile -Command "$p='HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$s='Settings';$c=(Get-ItemProperty -Path $p).$s;if ($c[8] -eq 0x03) {$c[8]=0x02;Write-Host \"Taskbar auto-hide disabled (taskbar is now always visible).\"} else {$c[8]=0x03;Write-Host \"Taskbar auto-hide enabled.\"};Set-ItemProperty -Path $p -Name $s -Value $c;Stop-Process -Name explorer -Force"

Elevation: Elevated

Image

caiocinel avatar May 26 '25 00:05 caiocinel