Back to All Cheatsheet Libraries cheatsheets

Windows

Everyday keyboard shortcuts, PowerShell/CMD quick reference, and a real first-response troubleshooting checklist for admins supporting Windows desktops.

Total Shortcuts: 0
Category Action Shortcut Notes
Window MgmtSnap window left/rightWin + Left / RightRepeat to cycle through available snap positions on multi-monitor setups.
Window MgmtOpen Snap LayoutsWin + ZWindows 11 grid picker for quarter/thirds layouts.
Window MgmtMinimize all windowsWin + DToggles — press again to restore.
Virtual DesktopsNew virtual desktopWin + Ctrl + DUseful for separating work/personal contexts without extra monitors.
Virtual DesktopsSwitch desktop left/rightWin + Ctrl + Left / RightCycles through all open virtual desktops.
SystemOpen Task ManagerCtrl + Shift + EscDirect launch — skips the Ctrl+Alt+Del security screen entirely.
SystemOpen Run dialogWin + RFastest way to launch services.msc, gpedit.msc, %appdata%, etc.
SystemQuick Link menuWin + XDirect access to Device Manager, Disk Management, PowerShell, Event Viewer.
SystemLock the PCWin + LStandard walk-away lock, distinct from sign-out.
CaptureSnip & Sketch region captureWin + Shift + SCopies the selection to clipboard and opens it for annotation.
ClipboardClipboard historyWin + VMust be enabled once in Settings → System → Clipboard.
SearchOpen SearchWin + SSearches apps, files, and settings from one box.

PowerShell Quick Reference

Get-Process

Lists running processes — pipe to Sort-Object CPU -Descending to find what's actually consuming resources.

Get-Service

Lists Windows services and their status; pair with Restart-Service <name> to bounce a stuck service without a reboot.

Get-EventLog / Get-WinEvent

Queries the Windows Event Log — Get-WinEvent is the modern replacement and works with the newer structured logs.

Test-NetConnection

PowerShell's ping+traceroute+port-check in one cmdlet — -Port 443 tests TCP reachability, not just ICMP.

Get-ChildItem (gci / ls / dir)

Lists directory contents; add -Recurse -Filter *.log to search a whole tree for a file pattern.

Set-ExecutionPolicy

Controls whether unsigned scripts can run at all — a common first blocker when a downloaded .ps1 script "does nothing."

Legacy CMD Still Worth Knowing

Networking

ipconfig /allipconfig /flushdnsnslookup

System Health

sfc /scannowchkdskDISM /Online /Cleanup-Image /RestoreHealth

Access

whoami /allnet usergpupdate /force

First-Response Checklist

The order most Windows desktop-support tickets get worked, before escalating further.

1

Reboot, then check Windows Update

A surprising share of "weird behavior" tickets trace back to a pending update stuck mid-install — wuauclt/Settings → Windows Update usually surfaces it.

2

Run System File Checker

sfc /scannow from an elevated prompt repairs corrupted system files — run it before assuming a reinstall is needed.

3

Check Event Viewer for the actual error

Windows Logs → System/Application in Event Viewer usually has the real error code behind a vague on-screen message — search that code, not the symptom.

4

Test with a new local profile

Creating a fresh user profile isolates whether an issue is system-wide or corrupted-profile-specific — a standard triage step before a reimage.

Quick Tips

gpedit vs. registry
Group Policy Editor (gpedit.msc) isn't available on Home editions — the same setting is usually reachable via a direct registry key instead.
Storage Sense
Settings → System → Storage → Storage Sense automates temp-file and Recycle Bin cleanup on a schedule — worth enabling on any managed fleet.
Remote Desktop vs. Quick Assist
RDP needs the target reachable on the network (or via a gateway); Quick Assist works over the internet with just a one-time code — pick based on what access you actually have.