Windows Power User Shortcuts & Hidden Commands Cheat Sheet

This reference covers the most useful Run dialog commands, Control Panel applets, management consoles, shell shortcuts, keyboard combinations, and PowerShell one-liners for Windows system administration. All commands work from Win + R, Command Prompt, or PowerShell unless noted otherwise.

System Properties commands

These commands open specific tabs in System Properties directly, without navigating through the GUI.

CommandOpens
sysdm.cplSystem Properties (main)
SystemPropertiesAdvancedAdvanced tab
SystemPropertiesComputerNameComputer Name tab
SystemPropertiesHardwareHardware tab
SystemPropertiesProtectionSystem Protection tab
SystemPropertiesRemoteRemote settings tab

Control Panel applets

These commands open classic Control Panel tools directly from the Run dialog.

CommandOpens
appwiz.cplPrograms and Features
ncpa.cplNetwork Connections
powercfg.cplPower Options
inetcpl.cplInternet Properties
mmsys.cplSound settings
timedate.cplDate and Time
desk.cplDisplay settings
main.cplMouse settings
firewall.cplWindows Defender Firewall
wscui.cplSecurity and Maintenance
intl.cplRegion and Language
joy.cplGame Controllers

You can also open Control Panel sections directly using control /name Microsoft.<applet>. For example:

control /name Microsoft.NetworkAndSharingCenter

Management console commands (.msc)

These open Microsoft Management Console snap-ins used for system and user administration.

CommandOpens
services.mscServices Manager
devmgmt.mscDevice Manager
diskmgmt.mscDisk Management
compmgmt.mscComputer Management
eventvwr.mscEvent Viewer
certmgr.mscCertificate Manager
lusrmgr.mscLocal Users and Groups
gpedit.mscGroup Policy Editor (Pro/Enterprise only)
perfmon.mscPerformance Monitor
secpol.mscLocal Security Policy (Pro/Enterprise only)

System utilities

Common built-in tools accessible from the Run dialog or Command Prompt.

CommandOpens
controlControl Panel
cmdCommand Prompt
powershellPowerShell
msconfigSystem Configuration
regeditRegistry Editor
taskmgrTask Manager
explorerFile Explorer
cleanmgrDisk Cleanup
mstscRemote Desktop Connection
dxdiagDirectX Diagnostic Tool
msinfo32System Information
netplwizUser Accounts
resmonResource Monitor
winverWindows version dialog
optionalfeaturesWindows Optional Features
rstruiSystem Restore
charmapCharacter Map
oskOn-Screen Keyboard
magnifyMagnifier
snippingtoolSnipping Tool

Shell folder shortcuts

Shell commands let you navigate directly to system and user folders from the Run dialog or from a script.

CommandOpens
shell:startupCurrent user’s startup folder
shell:Common StartupAll users’ startup folder
shell:AppDataApplication data folder
shell:DownloadsDownloads folder
shell:DesktopDesktop folder
shell:RecentRecently opened files
shell:SendToSend To menu folder
shell:ProgramFilesProgram Files directory
shell:ProgramFilesX86Program Files (x86) directory
shell:SystemSystem32 folder
shell:SystemX86SysWOW64 folder
shell:ControlPanelFolderControl Panel
shell:RecycleBinFolderRecycle Bin

Keyboard shortcuts for system administration

ShortcutAction
Win + XPower User Menu
Ctrl + Shift + EscTask Manager
Win + Pause/BreakSystem Properties
Win + LLock workstation
Win + DShow desktop
Win + EOpen File Explorer
Win + TabTask View
Win + Shift + SScreenshot selection
Win + PDisplay mode switch
Win + Ctrl + DNew virtual desktop
Win + Ctrl + F4Close current virtual desktop
Win + Ctrl + Shift + BRestart GPU driver
Ctrl + Alt + DelSecurity screen
Alt + F4Close app or open shutdown dialog
Ctrl + Shift + Right-click (taskbar)Restart Explorer

PowerShell one-liners for IT tasks

System information and diagnostics

Get-ComputerInfo | 
Select CsName, WindowsVersion, OsBuildNumber
systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
Get-Process | 
Sort CPU -Descending | 
Select -First 10
Get-EventLog -LogName System -Newest 20
Get-NetIPAddress | 
Where {$_.AddressFamily -eq 'IPv4'}

User and account management

Get-LocalUser
net user <username> /add
net localgroup administrators <username> /add
Get-LocalGroupMember Administrators

Disk and storage

Get-Volume
Get-Disk | Select Number, FriendlyName, OperationalStatus, Size
Get-PSDrive | Where {$_.Provider -like '*FileSystem*'}
chkdsk C:

Network and connectivity

Test-NetConnection google.com
ipconfig /all
Get-NetAdapter | Select Name, Status, MacAddress
ping 8.8.8.8 -t
Get-NetTCPConnection | Group-Object -Property State

Maintenance and cleanup

cleanmgr /sagerun:1
Get-ChildItem -Path C:\Temp -Recurse | Remove-Item -Force
Get-WinEvent -FilterHashtable @{LogName='Application'; Level=2} | Select -First 10

Remote management and services

Enter-PSSession -ComputerName <hostname>
Restart-Computer -Force
Get-Service | Where {$_.Status -eq 'Stopped'} | Start-Service
schtasks /query /fo table /v

Sysinternals tools

The Sysinternals Suite provides additional utilities that go beyond what is built into Windows.

ToolPurpose
Process ExplorerDetailed process and handle viewer
AutorunsManage all startup locations
TCPViewMonitor active network connections
ProcmonTrack file system, registry, and process activity

Install the full suite using winget:

winget install Sysinternals

Notes

  • gpedit.msc and secpol.msc require Windows Pro, Enterprise, or Education editions.
  • Commands like regedit and lusrmgr.msc require administrator privileges.
  • Shell folder paths use the shell: prefix and work from Win + R or from File Explorer’s address bar.
  • PowerShell one-liners that modify users or services require an elevated session.