CompTIA A+ · Operating Systems
Learn every Windows management tool and its exact executable filename — the name-to-filename pairing the A+ exam tests directly across Task Manager, MMC snap-ins, and standalone utilities.
30 min read · Windows Tools & Management Consoles
// CHECK YOUR KNOWLEDGE
Windows ships with a powerful set of built-in tools for managing hardware, diagnosing problems, scheduling tasks, and configuring the system. A technician who knows these tools — and knows them by name AND by their exact executable or .msc filename — can work efficiently without installing third-party software. The A+ exam tests both: given a task, which tool? Given a filename, what does it do?
This lesson covers every tool in the 220-1202 objective. For each one, memorize the display name and the exact filename. They are both tested.
is the first tool you open when a system is slow, unresponsive, or behaving unexpectedly. Open it with Ctrl+Shift+Esc (direct), Ctrl+Alt+Del → Task Manager, or right-click the taskbar → Task Manager — flag the keyboard shortcuts for verification.
Task Manager has seven tabs in Windows 10 and 11:
Processes — lists every running application and background process with real-time , memory, disk, and network usage per process. Right-click any process to open its file location or end it. This is the tab you use when a specific program is consuming excessive resources or needs to be force-quit.
Performance — real-time graphs for CPU, memory, disk, network, and . Each resource shows current usage, capacity, and utilization history. Use this tab to confirm whether a system is under load or to baseline performance for a support ticket.
App history — cumulative resource usage over time per application, focused on UWP (Universal Windows Platform) apps. Useful for identifying which apps have consumed significant resources over the past month.
Startup — lists every program configured to launch when Windows starts, along with a startup impact rating (Low, Medium, High). Right-click any entry to enable or disable it. Use this tab to reduce slow boot times by disabling unnecessary startup programs.
Users — shows all currently logged-in user accounts and their aggregate resource usage. Useful on shared workstations to see if another user's session is consuming resources.
Details — a more granular process view than Processes. Shows the process ID (PID), CPU and memory usage, and allows setting process priority (Low, Below Normal, Normal, Above Normal, High, Realtime) and CPU affinity (which processor cores the process can use).
Services — lists all Windows services with their status (Running, Stopped) and start type. You can start, stop, and restart services from here without opening the full Services snap-in.
▸ EXAM TIP
Task Manager tabs and their use cases:
The Microsoft Management Console () hosts a set of administrative tools called snap-ins. Each snap-in runs as a .msc file. You open them by typing the filename in the Run dialog (Win+R) or the Start menu search.
eventvwr.mscEvent Viewer collects log entries from Windows and installed applications and displays them in a searchable, filterable interface. Three main Windows logs:
Each log entry has a severity level: Information, Warning, Error, or Critical. When diagnosing a system problem, filter by Error and Critical in the System and Application logs and note the Event ID — it identifies the specific failure type.
diskmgmt.mscDisk Management is the tool for storage configuration. Use it to: initialize a new unrecognized disk, create and delete partitions (called volumes), format partitions with a filesystem (, , FAT32), assign or change drive letters, extend or shrink existing volumes, and convert a disk between and partition schemes — reference L2 for GPT/MBR context.
taskschd.mscTask Scheduler runs scripts or programs automatically based on a trigger. Common triggers: at a specific time (daily, weekly, at logon), when Windows starts, when the system is idle, or when a specific event appears in Event Viewer. Use Task Scheduler to automate backups, maintenance scripts, or software updates without user interaction.
devmgmt.msclists all hardware devices Windows recognizes, organized by device category. When a device has a problem, Device Manager shows a status icon:
From Device Manager you can: update a driver (search automatically or from a file), roll back a driver to the previous version, uninstall a driver, disable or enable a device, and view device properties including the driver version and date.
▸ EXAM TIP
Device Manager status icons:
If a newly connected device shows a yellow exclamation mark, the fix is a driver update or reinstall. If a device shows a downward-pointing arrow (↓), it has been disabled and needs to be re-enabled.
certmgr.mscCertificate Manager displays and manages digital certificates for the currently logged-in user. It organizes certificates by purpose: Personal (certificates issued to this user), Trusted Root Certification Authorities, Intermediate Certification Authorities, and others. Use it to inspect certificate details, import or export certificates, and diagnose certificate errors in browsers or applications.
lusrmgr.mscLocal Users and Groups manages the local user accounts and security groups on the machine — accounts that exist only on this computer, not on a domain. Create, delete, and modify local accounts here; add or remove users from local security groups (Administrators, Users, Remote Desktop Users, etc.).
Not available on Windows Home editions — reference L3. lusrmgr.msc requires Windows Pro or above.
perfmon.mscPerformance Monitor tracks specific performance counters over time and saves the data for analysis. Unlike Task Manager's real-time view, Performance Monitor can log data continuously and produce reports. Counters are organized by object (Processor, Memory, PhysicalDisk, Network Interface) and instance. Data Collector Sets bundle multiple counters together for scheduled collection runs.
Use Performance Monitor when you need a baseline, a trend report, or data that covers a period longer than what Task Manager shows.
gpedit.mscThe Local Editor configures Local Group Policy — settings that apply to the machine and its local users. Policy settings cover security (password requirements, account lockout), software restriction, user interface restrictions, and hundreds of Windows behaviors.
Not available on Windows Home editions — reference L3. gpedit.msc requires Windows Pro or above.
▸ EXAM TIP
MMC snap-ins — name and filename (memorize both columns):
| Tool | Filename |
|------|----------|
| Event Viewer | eventvwr.msc |
| Disk Management | diskmgmt.msc |
| Task Scheduler | taskschd.msc |
| Device Manager | devmgmt.msc |
| Certificate Manager | certmgr.msc |
| Local Users and Groups | lusrmgr.msc |
| Performance Monitor | perfmon.msc |
| Group Policy Editor | gpedit.msc |
lusrmgr.msc and gpedit.msc are not available on Windows Home editions.
These tools run as standalone executables (.exe), not as MMC snap-ins.
msinfo32.exeSystem Information produces a comprehensive inventory of the machine: version, system manufacturer and model, / version, processor, installed , location, installed drivers, running services, loaded modules, network adapters, and more. Use it when you need a complete of a system's configuration for a support ticket or compatibility check — all the information in one place without opening multiple tools.
resmon.exeResource Monitor provides more granular real-time data than Task Manager. It shows per-process CPU, memory, disk, and network activity — including which specific files each process is reading or writing, which connections each process has open, and which DLLs and handles each process holds. Use Resource Monitor when Task Manager shows a resource spike but you need to identify exactly which file, connection, or handle is responsible.
msconfig.exeSystem Configuration controls how Windows starts. Its key tabs:
cleanmgr.exeDisk Cleanup scans a selected drive and identifies files that can be safely deleted: Temporary Internet Files, Recycle Bin contents, cleanup, thumbnail cache, error reports, and more. The "Clean up system files" button (which requires administrator elevation) adds system-level cleanup targets including old Windows installations and service pack backups — significantly more aggressive than the default scan.
dfrgui.exeThe Disk Defragmenter tool — labeled "Defragment and Optimize Drives" in Windows 10/11 — consolidates fragmented files on HDDs so that the read head can access them without seeking across the platter. Modern Windows schedules defragmentation automatically on a weekly basis.
SSDs must not be defragmented. An has no moving read head — fragmentation does not cause the same performance penalty as on HDDs. Running defragmentation against an SSD adds unnecessary write cycles without providing any performance benefit, contributing to the drive's wear. The correct operation for an SSD is optimization, which triggers the command — this informs the SSD's controller which blocks of data are no longer in use so they can be erased in advance. Windows automatically sends TRIM to SSDs; running "Optimize" from dfrgui.exe on an SSD triggers this correctly.
▸ WARNING
Do not run Disk Defragmenter against an SSD. Defragmentation adds unnecessary write cycles and provides no performance benefit on flash-based storage. Use the "Optimize" function instead — it sends the TRIM command, which is the correct SSD maintenance operation. Modern Windows automatically schedules the correct operation for each drive type.
regedit.exeThe Windows is a hierarchical database that stores OS configuration, hardware settings, user preferences, and application data. Registry Editor lets you browse, edit, add, and delete registry keys and values directly.
The Registry is organized into five top-level hives — flag all five for verification:
▸ WARNING
Back up the registry before editing. An incorrect registry edit can render Windows unbootable or cause application failures. Before making any changes in regedit.exe: export the affected key (File → Export), create a System Restore point, or back up the full registry. Registry changes take effect immediately — there is no undo for a destructive edit unless you have a backup.
▸ EXAM TIP
Registry Editor: five hives — memorize the exact names:
Additional tools — name and filename:
| Tool | Filename |
|------|----------|
| System Information | msinfo32.exe |
| Resource Monitor | resmon.exe |
| System Configuration | msconfig.exe |
| Disk Cleanup | cleanmgr.exe |
| Disk Defragmenter / Optimize Drives | dfrgui.exe |
| Registry Editor | regedit.exe |
| Task Manager | taskmgr.exe |
The check questions below test your ability to match tools to filenames, interpret Device Manager status indicators, and apply the correct tool to a given technician scenario.
Sign in to check your knowledge and earn XP. Sign in