Operating Systems is 28% of A+ Core 2. Many questions are really tool-selection questions: what do you need to learn about the system, and which utility gives you that evidence with the least unrelated change?

Fast rule: Match the tool to the kind of evidence you need: current state, history, configuration, connectivity, or repair. Task Manager shows what is happening now; Event Viewer shows what happened before; management tools change configuration; network commands test connectivity; repair commands fix a specific layer.

1. Tool-selection decision map

NeedUseful toolWhy
See running processes and resource useTask ManagerProcesses, performance, startup, services, users
Find logged errorsEvent ViewerSystem, application, and other Windows event logs
Inspect hardware/driver stateDevice ManagerDevices, drivers, disabled hardware, errors
Manage partitions and volumesDisk Management / diskpartDisk, partition, and volume configuration
Check IP settingsipconfigAddress, gateway, DNS, DHCP-related information
Ask DNS directlynslookupName-resolution evidence
Check Windows protected filessfcSystem-file integrity and repair

2. Match Windows GUI tools to the support task

ToolBest useScenario clue
Task ManagerProcesses, performance, startup items, services, usersOne process is consuming CPU/RAM or starting automatically
Event ViewerReview logged system/application eventsNeed error history around a crash, service failure, or login issue
Device ManagerHardware and driver stateUnknown device, driver problem, disabled adapter
Disk ManagementPartitions, volumes, drive letters, formattingNew disk needs a volume or drive letter
Performance MonitorCollect performance counters over timeIntermittent resource problem needs a trend
Resource MonitorDetailed CPU, memory, disk, and network activityNeed more detail than a quick Task Manager view
System InformationHardware, components, and OS detailsNeed a broad system inventory
Task SchedulerRun tasks at triggers/timesAutomate a recurring local action
ServicesInspect/start/stop Windows servicesA required service is stopped or misconfigured
Registry EditorDirect registry editingOnly when the required supported change is specifically in the registry

Registry editing is powerful and risky. If a safer supported management surface solves the same problem, prefer it.

3. Use Windows network commands by question

CommandQuestion it answers
ipconfigWhat IP configuration does this Windows client have?
pingCan I get an ICMP response from this destination when ICMP is allowed?
nslookupWhat does DNS return for this name or address?
tracertWhich routed hops appear on the path?
pathpingWhat path and packet-loss evidence can be gathered across hops?
netstatWhich connections and listening ports exist?
hostnameWhat is this computer's host name?

If IP connectivity works but a name fails, nslookup is more targeted than repeatedly running ping. If the question is about a listening process or connection, netstat is more useful than ipconfig.

4. Use system and file commands for the right layer

Useful Core 2 commands include:

  • whoami for the current security identity
  • sfc /scannow for protected Windows system files
  • chkdsk for filesystem/disk-related checks
  • diskpart for command-line disk/partition work
  • format to create a filesystem on a volume
  • robocopy for robust file/directory copying
  • net use for network-share connections
  • net user for local user-account tasks
  • gpupdate to refresh Group Policy
  • gpresult to report applied Group Policy
  • winver to display Windows version/build information
  • md to create a directory
  • rmdir to remove a directory

Do not confuse a filesystem check with a protected-system-file check. chkdsk and sfc answer different questions.

5. Separate installation and recovery choices

ChoiceBest clue
Clean installFresh OS deployment with applications/settings rebuilt
UpgradeMove to newer OS while preserving supported user/application state
Image deploymentApply a prepared standard system image
Remote/network installDeliver installation across the network
Zero-touch deploymentMinimize manual technician steps
Repair install/recoveryRestore OS function without immediately treating the machine as a new build
MultibootKeep more than one bootable OS

Modern Unified Extensible Firmware Interface (UEFI) Windows installations commonly pair with GUID Partition Table (GPT). Master Boot Record (MBR) is the older partitioning scheme.

Before installation or upgrade, think about data backup, hardware compatibility, required applications, drivers, licensing, lifecycle support, and rollback.

6. Know macOS support tools by purpose

At A+ depth, recognize common macOS tools and features:

  • Finder: files, folders, mounted locations, applications
  • Spotlight: search
  • Keychain: stored credentials and certificates
  • Time Machine: backup and restore
  • Disk Utility: storage/volume tasks
  • FileVault: full-disk encryption
  • Force Quit: terminate an unresponsive application
  • Terminal: command-line access
  • Mission Control: window/workspace management
  • iCloud/Continuity: synchronization and cross-device features

Common application/distribution items include .dmg, .pkg, and .app.

Choose the tool that matches the support task. FileVault is an encryption control; it is not the tool for repairing a disk volume.

7. Use Linux commands by function

NeedCommon command
List/navigate filesls, cd, pwd
Copy/move/removecp, mv, rm
Search textgrep
Change permissions/ownershipchmod, chown
Run with elevated privilegesudo
Process informationps, top, kill
Disk/filesystem spacedf, du

Package-management and network commands vary by distribution and current toolset, so learn the purpose of the command families in the objectives rather than assuming one distribution is universal.

8. Keep Windows settings tied to user impact

Core 2 also expects support decisions involving:

  • User accounts and permissions
  • Windows Update
  • Firewall and network profiles
  • Wired, wireless, cellular, and VPN connections
  • Static vs dynamic addressing
  • File and printer sharing
  • Proxy settings
  • Power settings
  • Applications and default apps
  • Privacy and device settings
  • Accessibility
  • Cloud productivity and synchronization

If a laptop loses one USB device after sleep, power management can be more relevant than DNS. If only corporate resources fail for a remote user, verify the VPN before rebuilding Windows.

9. Scenario comparisons

Need to find why a service failed at 2:15 a.m.

Use Event Viewer for historical event evidence. Task Manager shows current state, not the same history.

One process is consuming nearly all CPU right now

Task Manager is the fastest first look.

User has an IP address but a hostname will not resolve

Use nslookup to question DNS directly. ipconfig can confirm configured DNS servers, but it does not replace the lookup test.

New drive is visible to Windows but has no usable volume

Disk Management is appropriate for partition/volume work.

Windows system files may be corrupted

Use sfc rather than chkdsk when the specific question is protected system-file integrity.

Linux command must run with administrative privilege

sudo is the relevant privilege-elevation clue.

10. Common exam traps

  • Choosing a familiar command that answers a different question.
  • Using chkdsk when the scenario asks about protected Windows system files.
  • Using sfc for a DNS problem.
  • Picking Registry Editor before a safer supported management tool.
  • Treating Task Manager as historical logging.
  • Treating Event Viewer as a live process manager.
  • Confusing Disk Management with Device Manager.
  • Assuming every Windows network failure requires reinstalling the adapter.
  • Mixing operating systems and filesystems as if they were the same thing.
  • Choosing an upgrade when the requirement calls for a clean standardized deployment.

11. Rapid review grid

ClueTool
Current process/resource useTask Manager
Logged system/application errorEvent Viewer
Driver/device stateDevice Manager
Partition/volume workDisk Management / diskpart
IP configurationipconfig
DNS querynslookup
Connections/listening portsnetstat
Protected Windows filessfc
Linux elevated commandsudo

12. Official references

A+ Core 2 220-1202 Study Guide Return to the complete Core 2 roadmap for operating systems, security, troubleshooting, and operational procedures. Security, Malware, and Software Troubleshooting Quick Reference Use the operating-system evidence from this page inside security and software-troubleshooting scenarios. Common Ports and Protocols Reference Refresh common services when a command reveals a listening port, remote connection, or application-specific failure. Build Your First Home Lab Practice the commands and support tools on Windows, Linux, and virtual machines instead of learning them only by name. A+ Practice Test Choose Core 2 and apply tool-selection decisions in randomized support scenarios.