What is Computer Management in Windows?
Computer Management (compmgmt.msc) is a built-in Microsoft Management Console (MMC) snap-in that bundles the most important system administration tools under a single window. It has been part of Windows since Windows 2000 and is available in every edition of Windows 10 and Windows 11 — including Home.
System administrators and advanced users turn to Computer Management to manage disk partitions, disable or enable hardware devices, view system events and errors, create local user accounts, control background services, and much more — all without installing any third-party software.
Open Computer Management via the Run Dialog (Fastest)
The Run dialog is the quickest way to launch Computer Management on both Windows 10 and Windows 11. It requires no mouse navigation — just a keyboard shortcut and a short command.
- Press Win + R on your keyboard to open the Run dialog box.
- Type
compmgmt.mscinto the text field. - Press Enter or click OK. Computer Management opens instantly.
compmgmt.msc in the Run dialog, then press Ctrl + Shift + Enter instead of just Enter. Windows will prompt for UAC confirmation and launch it elevated.
Open Computer Management via Windows Search
Windows Search (the magnifying glass icon in the taskbar) provides a convenient way to find and launch system tools, and it works identically on Windows 10 and Windows 11.
- Click the Search icon (🔍) on the taskbar, or press Win + S.
- Type Computer Management in the search box.
- When the result appears at the top, click Open — or right-click and choose Run as administrator for elevated access.
This method is ideal if you prefer mouse-driven navigation or if you are not yet familiar with the .msc command syntax. Windows Search also shows related actions such as "Manage" directly on the search panel.
Open Computer Management via the Win + X Power User Menu
The Win + X menu (also known as the Power User menu or Quick Link menu) is a hidden context menu that Microsoft designed specifically for experienced users. It provides direct shortcuts to the most-used administrative tools.
- Press Win + X, or right-click the Start button.
- A menu will pop up. Locate and click Computer Management.
Create a Desktop Shortcut for Computer Management
If you use Computer Management frequently, creating a dedicated desktop shortcut will save you time every day. Here is how to set one up in Windows 10 and Windows 11:
- Right-click on an empty area of your Desktop and select New → Shortcut.
- In the location field, enter:
%windir%\system32\compmgmt.mscand click Next. - Give the shortcut a name — for example, Computer Management — and click Finish.
- To make it always run as administrator: right-click the new shortcut → Properties → Shortcut tab → Advanced → check Run as administrator.
Open Computer Management via Command Prompt (CMD)
Power users and system administrators often prefer the command line. You can launch Computer Management directly from Command Prompt (cmd.exe) with a single command:
Command Promptcompmgmt.msc
- Press Win + R, type
cmd, and press Enter to open Command Prompt. For administrator access, press Ctrl + Shift + Enter. - In the Command Prompt window, type
compmgmt.mscand press Enter. - The Computer Management console will open immediately.
This method is particularly useful in scripts and batch files when you need to automate the launching of management tools as part of a larger administrative workflow.
Open Computer Management via PowerShell
PowerShell is the preferred scripting environment for Windows administration. You can open Computer Management from PowerShell using the same command as in CMD, or with a more explicit Start-Process call:
PowerShellcompmgmt.msc
Or, to launch it with elevated privileges programmatically:
PowerShell — elevatedStart-Process compmgmt.msc -Verb RunAs
- Press Win + X and choose Windows PowerShell (or Terminal on Windows 11).
- Type the command above and press Enter.
- Accept the UAC prompt if prompted.
Open Computer Management via Control Panel and Administrative Tools
The classic Control Panel path still works in both Windows 10 and Windows 11, though it takes a few more clicks:
- Open Control Panel (search for it in the Start menu or type
controlin the Run dialog). - Set View by to Large icons or Small icons in the top-right corner.
- Click Administrative Tools (Windows 10) or Windows Tools (Windows 11).
- In the folder that opens, double-click Computer Management.
C:\Windows\System32 and contains the same set of MMC snap-ins as before.
Open Computer Management via File Explorer Address Bar
File Explorer's address bar doubles as a command launcher — a lesser-known trick that lets you open system tools without leaving the Explorer window:
- Open File Explorer with Win + E.
- Click the address bar at the top (or press Alt + D to focus it).
- Type
compmgmt.mscand press Enter.
Windows will execute the command directly, opening Computer Management without navigating to any folder. This is a fast approach when File Explorer is already open on your screen.
Pin Computer Management to the Taskbar or Start Menu
For the ultimate quick access, pin Computer Management directly to your taskbar or Start menu so it is always one click away:
Pin to Taskbar
- Open Computer Management using any method above (e.g., the Run dialog).
- While it is open, right-click its icon in the taskbar.
- Select Pin to taskbar.
Pin to Start Menu
- Search for Computer Management in Windows Search.
- Right-click the search result and select Pin to Start.
- The tile (Windows 10) or Start pin (Windows 11) will now appear in your Start menu.
Computer Management — Method Comparison Table
Use this table to choose the right method for your situation at a glance:
| # | Method | Speed | Requires Mouse | Best For |
|---|---|---|---|---|
| 1 | Run dialog (Win+R) |
⚡ Fastest | No | Keyboard-first users |
| 2 | Windows Search | Fast | Optional | Beginners & casual users |
| 3 | Win + X menu | Fast | Optional | Power users, quick access |
| 4 | Desktop shortcut | Instant (once created) | Yes | Frequent daily use |
| 5 | Command Prompt | Medium | No | Scripts, batch files |
| 6 | PowerShell | Medium | No | Automation & elevated launch |
| 7 | Control Panel | Slow | Yes | Exploring all admin tools |
| 8 | File Explorer address bar | Fast | Partial | Explorer already open |
| 9 | Taskbar / Start pin | Instant | Yes | Maximum convenience |
Frequently Asked Questions about Computer Management in Windows
Q Is Computer Management available in Windows 11 Home? ▼
compmgmt.msc) is available in all editions of Windows 10 and Windows 11, including Home. However, note that the Local Users and Groups snap-in is not available in Home editions — it is restricted to Pro, Enterprise, and Education versions. All other sections (Device Manager, Disk Management, Services, Event Viewer, etc.) work fully on Home.
Q Why does Computer Management open but show empty content? ▼
Q Can I connect Computer Management to a remote computer? ▼
Q What is the difference between Computer Management and Device Manager? ▼
devmgmt.msc) if you only need to manage hardware, or open Computer Management when you need broader administrative access.
Q How do I open Disk Management directly without the full Computer Management window? ▼
diskmgmt.msc, and press Enter. This opens Disk Management directly as a standalone snap-in, without loading the full Computer Management console. The same principle applies to other tools: devmgmt.msc for Device Manager, eventvwr.msc for Event Viewer, services.msc for Services, and so on.
Q Computer Management is missing from the Win + X menu — how do I restore it? ▼
compmgmt.msc) or Windows Search. To restore the default Win + X menu, open PowerShell as administrator and run: Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} — or simply create a desktop shortcut as a permanent alternative.
✦ Summary
There are nine reliable ways to open Computer Management in Windows 10 and Windows 11. For the fastest daily access, use Win + R → compmgmt.msc. For mouse-based access, the Win + X menu or a pinned taskbar shortcut are the most convenient options. Advanced users who rely on automation can call it from PowerShell with elevated privileges. All methods work identically on both Windows 10 and Windows 11 — no additional software required.