Skip to content
Return to Knowledge

Microsoft's desktop operating system. Tips, shortcuts, and maintenance recipes for daily productivity.

Platformx86-64, ARM64
LicenseProprietary

Performance

Turn off "Animate controls and elements inside windows" to make Windows feel snappier.

Maintenance

Every once in a while, run the built-in "Disk Cleanup" tool.

File Explorer Privacy

In File Explorer > View > Options, under the Privacy section at the bottom of the General tab, turn off "Show recently used folders in Quick Access".

WARNING

Never install software from the Microsoft Store if you need to create a shortcut from the .exe -- it sandboxes the installation.

Shortcuts

General

ActionShortcut
Display desktopWin D
Open File ExplorerWin E
Delete whole wordCtrl Backspace
Select charactersShift Arrow
Select wordsCtrl Shift Arrow
Show emoji & symbolsWin .
Always on topWin Ctrl T
Clipboard historyWin V
Sticky notesWin Alt S
Task switcherAlt Tab
Task viewWin Tab
Switch desktop leftCtrl Win Left
Switch desktop rightCtrl Win Right
Open widgetsWin W
Open ClaudeCtrl Alt Space

File Explorer

ActionShortcut
Create new folderCtrl Shift N
Copy file pathCtrl Shift C

fman

ActionShortcut
GoToCtrl P
Open in ExplorerF10
Switch paneTab
Command PaletteCtrl Shift P

Run Commands

Common commands for the Run dialog (Win R):

CommandDescription
%appdata%Open AppData/Roaming folder
shell:startupOpen Startup folder
taskschd.mscOpen Task Scheduler

Codecs & Drivers

NameDescription
K-Lite Codec PackAll common audio and video codecs
Novation ComponentsNovation controller firmware & drivers
Wacom DriversWacom tablet drivers

Winget Commands

winget is the built-in Windows package manager - install, upgrade, and manage software from the command line.

CommandDescription
winget search <name>Search for a package
winget install <name>Install a package
winget uninstall <name>Uninstall a package
winget upgradeList packages with available updates
winget upgrade --allUpgrade all installed packages
winget listList installed packages
winget export -o packages.jsonExport installed packages to a file
winget import -i packages.jsonInstall packages from an exported file

Command Prompt Recipes

Show folder structure as tree

Navigate to the target folder, then:

batch
tree /a /f > output.doc

Opens output.doc to view the entire directory tree.

Delete all ._Thumbs.db files

batch
del /s /q ._Thumbs.db

/s searches subdirectories, /q suppresses confirmation.

On macOS / Linux:

bash
find . -type f -name "._Thumbs.db" -exec rm {} \;

Automated Tasks

Windows has a built-in Task Scheduler that works with scripts for periodic tasks like backups.

Typical setup: a .bat script for execution and a .vbs wrapper to keep the terminal hidden.

TIP

Use Robocopy to automate backups.

Emergency & Troubleshooting

NameDescription
Display Driver Uninstaller (DDU)Clean removal of GPU drivers when having display issues
WSLWindows Subsystem for Linux
Clean Install WindowsStep-by-step guide

Home · Hobi · Blog
Made with ❤️ in