Skip to content

Instantly share code, notes, and snippets.

@satetheus
Created December 3, 2023 07:59
Show Gist options
  • Save satetheus/0f9020de035056a074c96b4996d49129 to your computer and use it in GitHub Desktop.
Save satetheus/0f9020de035056a074c96b4996d49129 to your computer and use it in GitHub Desktop.
auto hide windows taskbar
:: found here https://www.howtogeek.com/677619/how-to-hide-the-taskbar-on-windows-10/
powershell -command "&{$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=3;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment