OS & Application Troubleshooting
Work the six-step method, in order
A user says their PC is acting up. The exam is rarely asking you to name the broken part; it is asking what you do next. Every objective in domain 3.0 opens "Given a scenario, troubleshoot common ... issues" (220-1202 exam objectives[1]), so what is under test is the symptom-to-cause-to-fix discipline: read the symptom, name the likely cause, then pick the fix that matches. The A+ troubleshooting method is the job-role habit that carries that discipline, a six-step loop running identify, theorize, test, plan and implement, verify, then document, applied here to operating-system and application faults. It is a working habit rather than a numbered sequence the 220-1202 objectives publish, so learn it for the way it orders your thinking. The figure below traces the loop, including the return from a failed test at step three to a fresh theory or an escalation.
The six steps
- Identify the problem. Gather information, question the user, and pin down the exact symptom. Reproduce the fault if you can, and ask the single most useful question: what changed? A new update, driver, or app installed right before the symptom is your prime suspect. Two sub-habits are tested on their own: back up data before you change anything, and when a machine has several faults, work them one at a time.
- Establish a theory of probable cause. Question the obvious first (is it plugged in, is the account locked, did an update just install), then form one testable cause and research the vendor knowledge base rather than guessing.
- Test the theory to determine the cause. If the test confirms the theory, move on to a plan. If it does not, form a new theory or escalate to someone who can. Do not act on an unconfirmed guess.
- Establish a plan of action and implement the solution. Choose the fix, check vendor documentation and any corporate policy on change and downtime, then apply it. Planning and implementing are one step here: settle on the fix before you touch the machine, then carry it out.
- Verify full system functionality and, if applicable, implement preventive measures. Confirm the original symptom is gone and nothing else broke, then take a step that stops a repeat (schedule the update, replace the failing driver source, adjust the setting).
- Document the findings, actions, and outcomes. Record what you saw and what fixed it in the ticket or knowledge base so the next technician does not start from zero.
Why working in order pays
Skipping steps is the classic wrong choice. Reimaging before you have reproduced the fault, or swapping parts before you have questioned the user, throws away information and often the user's data. A "what should the technician do first" stem is asking whether you gather information before you change anything; a "what next" stem is asking which action the symptom you have just been given actually justifies. Because two sibling pages, security-issue-remediation and malware-defense, layer a specialized process on top of this same loop, getting the base order right pays off across the whole domain.
Choose the least destructive fix that could work
Step four asks you to choose a fix, and the guiding rule is simple: reach for the least invasive action that could resolve the symptom, and escalate only when it fails. Rebooting clears a surprising number of transient faults and costs nothing; a full reimage cures almost anything but erases the user's installed software and, done wrong, their data. Everything else sits between those two on what this page calls an escalation ladder, an analogy for teaching rather than CompTIA terminology, and the skill is stopping at the lowest rung that works.
The escalation ladder
- Reboot, or restart the specific service. A restart releases stuck memory, closes leaked handles, and reloads a hung service. For one misbehaving background service, the Services console (
services.msc) restarts just that service without a full reboot. - Boot Safe Mode and undo the recent change. Safe Mode[2] starts Windows with a minimal set of drivers and services, so you can work when a bad driver or startup app blocks the normal desktop. From there, roll back the driver in Device Manager or uninstall the update that preceded the symptom.
- Use System Restore. System Restore[3] returns Windows system files, settings, drivers, and installed programs to an earlier restore point while leaving personal files untouched, so it undoes a bad change you cannot pin to one driver or update.
- Run a targeted repair.
sfc /scannow[4] repairs corrupted protected system files,DISM /Online /Cleanup-Image /RestoreHealth[5] repairs the component store that sfc draws from,chkdsk /f[6] fixes file-system errors on a volume, and Startup Repair (covered in the next section) fixes boot files. The full tour of these commands lives in Windows management tools; here they are simply the next rung. - Reset this PC, then reimage. Reset this PC[7] reinstalls Windows with a Keep my files or Remove everything option; a full reimage from a known-good image is the last resort when the install itself is beyond repair.
Each rung up the ladder preserves less of the user's setup and takes more time, which is exactly why you climb only as far as the symptom forces you. The figure below lists the same rungs with the bottom one first, so reading down the figure is climbing the ladder. The comparison table further down this page lines the heavier tools up by what they fix and what they cost.
When Windows will not boot: WinRE and the boot tools
A no-boot machine looks like a dead end, but it is really a Windows Recovery Environment (WinRE)[8] session waiting to start. Windows loads WinRE automatically after two consecutive failed startup attempts (also after two unexpected shutdowns or reboots within two minutes of boot, or a Secure Boot error), and you can force it from the sign-in screen by holding Shift while you select Restart, or by booting Windows installation media and choosing Repair your computer. Once you are in, one menu path, Troubleshoot then Advanced options, holds every offline repair.
Work the WinRE tools in order
- Startup Repair runs first for a boot failure. It diagnoses and fixes common boot problems automatically[2], such as damaged boot configuration, and writes a log to
Srttrail.txt. Let it run before you touch anything by hand. - Startup Settings, a different menu item from Startup Repair above, reboots into a screen where F4 starts Safe Mode[2], F5 adds networking, and F6 gives a command prompt. Safe Mode loads a minimal driver set so you can remove the driver or update that blocks a normal start.
- System Restore from WinRE rolls the system back to a restore point taken before the change, without needing a working desktop.
- Command Prompt is where you rebuild boot files by hand when Startup Repair cannot.
bootrec: the manual boot-repair commands
bootrec /fixmbr # rewrites the master boot record's boot code
bootrec /fixboot # writes a new boot sector to the system partition
bootrec /scanos # scans all disks for installed Windows systems
bootrec /rebuildbcd # rebuilds the Boot Configuration Data (BCD) store
Reach for bootrec when the error names a missing or corrupt Bootmgr, boot sector, MBR (master boot record), or BCD store[2]. You can also run an offline system-file scan from the same prompt with sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows and a disk check with chkdsk /f /r.
- Reset this PC is the heavy option in the same menu. It reinstalls Windows[7] and offers Keep my files (removes apps and settings, preserves personal data) or Remove everything (wipes the volume), and it needs no external media because it rebuilds from on-box recovery files or a cloud download.
The one-line map
If it will not boot: enter WinRE, try Startup Repair, then Safe Mode or System Restore to undo a change, then bootrec and offline sfc or chkdsk for damaged boot files, and only then Reset this PC. The figure below traces the same path, with Reset this PC at the end of it. That order preserves the most and reinstalls the least.
Common Windows OS symptoms and the first move
Most OS-fault questions describe one symptom and ask for the first action. The fastest way in is to read what the system already recorded, then map the symptom to its usual cause.
Read the history first
Before you change anything, two built-in logs tell you what happened and when. Event Viewer (eventvwr.msc) holds timestamped System, Application, and Security logs; filter to Error and Critical[2] and match the time to the symptom. Reliability Monitor (run perfmon /rel, or open it from Security and Maintenance) draws a day-by-day stability timeline and marks each app crash, driver failure, and Windows update against the date it happened, which makes the "what changed?" question almost visual: a stability score that drops the day a driver installed points straight at that driver.
Symptom to first move
| Symptom | Likely cause | First move |
|---|---|---|
| Blue screen (BSOD) / stop error | Bad driver, failing update, or hardware fault | Note the stop code, boot Safe Mode, roll back the recent driver or update; read the minidump and Event Viewer |
| No boot; error names BCD or Bootmgr | Corrupt boot files | Enter WinRE, run Startup Repair, then bootrec |
| Boot loop (restarts before the desktop) | Bad update or driver applied at startup | WinRE, uninstall the latest update, or Safe Mode to roll it back |
| Black screen after sign-in | Explorer shell or GPU driver failed | Restart explorer.exe from Task Manager; roll back or reinstall the display driver in Safe Mode |
| Slow performance | Heavy process, too many startup apps, low disk | Task Manager to find the hog; trim Startup apps; check free space |
| A service will not start | Missing dependency, wrong startup type, corrupt files | services.msc to check dependencies and start type; read the System log |
| USB device or resource warning | Driver, or a power or resource conflict | Device Manager: update or reinstall the driver, read the error code |
| Time is wrong; logins fail | Clock drift breaks Kerberos authentication | Resync the clock (w32tm /resync); a domain client must stay within about five minutes of the server |
| "Signed in with a temporary profile" | Corrupt local user profile | Repair or recreate the profile, then copy the user's data into the new one |
| Low-memory warnings, instability | A leaking app, or too little RAM or page file | End the offending process; check the page-file setting; add resources if it is chronic |
The deep reference for Task Manager, Event Viewer, Device Manager, and the Services console is on the Windows management tools page; this page is about matching each symptom to the right one. When the symptom is pop-ups, redirected searches, or a fake antivirus, stop and switch to the malware process in security-issue-remediation, because a generic OS repair will not remove an infection.
Application problems: install, launch, crash, permissions
An application refuses to launch, or it opens and dies a second later. Before you uninstall it, remember that the cheapest fixes, running it with the right permissions or in the right compatibility mode, resolve most of these, and a corrupt user profile or a missing file permission is often the real culprit that a reinstall never touches.
When it will not install
Check that the machine meets the app's requirements (Windows edition and version, disk space, and any framework it depends on), and that you are installing with administrator rights, since a standard user cannot write to Program Files. A download that fails a checksum or was interrupted produces a corrupt installer, so re-download it. If an older version is already present and blocking the new one, remove it first from Programs and Features.
When it will not open, or crashes and hangs
- End it and relaunch. A hung app (its title bar reads "Not responding") often clears with Task Manager's End Task and a fresh launch; this is the app-level equivalent of a reboot.
- Run as administrator. Some apps need the elevated token to reach protected files or registry keys. Right-click and Run as administrator, and if that fixes it, set the shortcut to always run elevated.
- Set compatibility mode. An app written for an older Windows can run under compatibility mode[9], which makes Windows present itself as the earlier version the program expects. It lives on the program's Properties, Compatibility tab.
- Repair, then update, then reinstall. Many installers offer a Repair option that replaces corrupt program files without losing settings; apply pending app updates too, since the crash may already be patched. A full uninstall and reinstall is the step after those, not before.
The non-obvious causes
- Permissions. If one user can run an app or open a file and another cannot, the difference is usually NTFS permissions on the program folder or data file, not the app itself. This overlaps with the access-control material in encryption and access control.
- A corrupt user profile. When an app fails for one user but works under a fresh account, the local profile is likely damaged; repair or recreate it and copy the data across, rather than reinstalling the app for everyone.
- Truly incompatible. A legacy app that will not run on the current OS even in compatibility mode belongs in a virtual machine or on a supported OS version; that is the plan of action, not another reinstall.
The figure below sets those app-level steps out in that order, ending with the virtual machine or supported OS that a truly incompatible program needs. Escalate an app the same way you escalate the OS: cheapest fix first, reinstall late, and a rebuild only when nothing lighter works.
How the exam frames these questions
Software-troubleshooting items on Core 2 read as short help-desk scenarios: a symptom, sometimes a recent change, and a question of what to do first or next. Two instincts win most of them. First, when the stem asks for the first step, the answer is to gather information (identify the problem, or take a safe, reversible action), not the biggest hammer. Second, when it asks for a fix, prefer the least destructive option that fits the symptom.
| The scenario | Right answer | Tempting wrong answer |
|---|---|---|
| "What should the technician do first?" | Identify the problem: question the user, find what changed | Jump to a repair or reimage |
| Symptom appeared right after an update | Roll back or uninstall that update | Reinstall Windows |
| Will not boot; error names the BCD | WinRE, Startup Repair, then bootrec | Reset this PC immediately |
| sfc reports corruption it could not fix | DISM /RestoreHealth, then run sfc again | Reimage the machine |
| App crashes only for one user | Check that user's profile and permissions | Reinstall the app for all users |
| Old app will not run on Windows 11 | Compatibility mode, or run it in a VM | Tell the user it is unsupported |
| The fix worked; ticket almost done | Verify functionality, then document | Close the ticket without documenting |
| Pop-ups and browser redirects | Switch to the malware-removal process | Run Startup Repair |
A few reversals recur. Reimaging is almost never the first correct answer; it is the fallback after cheaper tools fail, and choosing it early is the trap. sfc and DISM pair in a fixed order: DISM repairs the store, then sfc repairs files from it. Verifying and documenting are real steps, so a "the repair worked, now what" stem wants verify then document, not "close the ticket." And any symptom that smells like infection (pop-ups, redirects, ransom notes, a rogue antivirus) leaves this page for malware-defense and security-issue-remediation, which follow a distinct removal sequence where a generic OS repair is the wrong answer. Mobile app and OS faults follow their own path in mobile troubleshooting.
Windows recovery tools by what they fix and what they cost
| Aspect | System Restore | Startup Repair | sfc / DISM | Reset this PC |
|---|---|---|---|---|
| Fixes | A bad recent change: driver, update, or registry edit | Boot files and startup configuration (BCD) | Corrupted protected system files | A broken Windows installation |
| Run it from | Windows or WinRE | WinRE (automatic or from media) | An elevated prompt, in Windows or WinRE | Settings or WinRE |
| Your personal files | Untouched | Untouched | Untouched | Kept (Keep my files) or erased (Remove everything) |
| Installed programs | Reverted to the restore point | Untouched | Untouched | Removed and must be reinstalled |
| Reach for it when | It worked before the change | It will not start | It boots but system files are corrupt | Everything cheaper has failed |
Decision tree
Sharp facts the exam loves — give these one last read before exam day.
Cheat sheet
Sharp facts the exam loves — scan these before test day.
- Work CompTIA's six troubleshooting steps in order
CompTIA's A+ method is a six-step loop: identify the problem, establish a theory of probable cause, test the theory, establish a plan of action and implement it, verify full functionality and add preventive measures, then document. It is a job-role working habit rather than a numbered sequence the 220-1202 objectives publish, so learn it for the way it orders your thinking. What domain 3.0 states four times over is "Given a scenario, troubleshoot common ... issues", the symptom-to-cause-to-fix discipline this loop carries.
Trap Jumping straight to a plan of action before you have established and tested a theory; the tested theory has to come first.
- The most useful first question is 'what changed?'
Identifying the problem means questioning the user and pinning down what changed right before the symptom, because a newly installed update, driver, or app is the prime suspect. Reproducing the fault confirms you are chasing the real problem and not a one-off. This is why reversing the recent change is so often the actual fix.
Trap Taking a user's "nothing changed" at face value; a recent update, driver, or install is usually the trigger even when they do not recall making a change.
- Back up the user's data before you make any changes
Backing up data before you alter the system is part of step one of the methodology, because a repair can fail or make matters worse. It is testable on its own: when the planned fix risks data, such as a reset, a disk repair, or a reimage, the correct first action is to back up first.
Trap Running a destructive repair like Reset this PC's Remove everything or a full reimage before backing up the user's files.
- Try the least destructive fix first, escalate only if it fails
At the plan-of-action step, start with the least invasive action that could resolve the symptom and climb only when it fails: reboot or restart the service, then Safe Mode and rolling back a driver or update, then System Restore, then targeted repairs (sfc, DISM, chkdsk, Startup Repair), and finally Reset this PC or a reimage. Each rung up preserves less of the user's data and installed software, so stopping at the lowest rung that works is both faster and safer.
Trap Reaching for a reimage or Reset this PC early; it is the last resort after cheaper, data-preserving fixes fail, not the first move.
- WinRE auto-starts after two failed boot attempts
The Windows Recovery Environment (WinRE) loads automatically after two consecutive failed startup attempts, and you can launch it on demand by holding Shift while selecting Restart or by booting Windows installation media and choosing Repair your computer. WinRE is the single gateway to Startup Repair, Safe Mode, System Restore, a command prompt, and Reset this PC.
Trap Assuming a PC that will not reach the desktop needs a reinstall; WinRE reaches every offline repair tool even when Windows will not start.
5 questions test this
- A user reports that their Windows workstation automatically displays 'Preparing Automatic Repair' each time it restarts. Which of the…
- A technician is troubleshooting a Windows 10 workstation that cannot boot, and the built-in Recovery Environment fails to load from the…
- A malware-infected workstation cannot boot to the Windows desktop or into Safe Mode and displays a stop error on every attempt. Which of…
- A technician needs to explain when the Windows Recovery Environment launches without user action. Which of the following conditions causes…
- A Windows workstation displays a blue screen error on every boot attempt after a recent system change. The technician cannot sign in to…
- Run Startup Repair first for a boot failure
Startup Repair (Automatic Repair) is the first WinRE tool to try when Windows will not boot: it automatically diagnoses and fixes common boot problems such as damaged boot configuration and logs its work to Srttrail.txt. Let it run before you hand-edit boot files, because it resolves many boot faults without any manual command.
5 questions test this
- A desktop repeatedly fails to load Windows and restarts into a recovery screen after each attempt, even though the user made no recent…
- A technician runs Startup Repair from the Windows Recovery Environment on a workstation that will not boot. The tool reports that it could…
- A technician is troubleshooting a Windows 10 workstation that fails to boot. Startup Repair ran automatically but could not resolve the…
- A technician ran Startup Repair on a workstation that will not boot, but the tool reports it could not repair the PC. Which of the…
- A technician runs Startup Repair from the Windows Recovery Environment on a workstation that will not boot, but the repair is unsuccessful.…
- Boot Safe Mode to strip out a driver or update that blocks Windows
Safe Mode starts Windows with a minimal set of drivers and services, which lets you work when a bad driver or startup app prevents a normal boot. From WinRE, Startup Settings offers Safe Mode on F4, Safe Mode with Networking on F5, and Safe Mode with Command Prompt on F6. Once in, roll back the driver in Device Manager or uninstall the update that preceded the symptom.
Trap Choosing plain Safe Mode (F4) when you need to download a driver or reach the network; that requires Safe Mode with Networking (F5).
5 questions test this
- During the malware removal process, a technician boots an infected computer into Safe Mode to run anti-malware scans. Which of the…
- A technician needs to run anti-malware scans on an infected workstation as part of the malware removal process. Which of the following best…
- A technician needs to scan an infected workstation as part of the malware removal process. The technician boots the workstation into Safe…
- A Windows laptop becomes unstable and crashes shortly after reaching the desktop, and the technician suspects that a recently added…
- A technician is following the malware removal process and needs to run anti-malware scans while preventing most malware processes from…
- System Restore rolls back system changes but keeps personal files
System Restore returns Windows system files, settings, drivers, and installed programs to an earlier restore point while leaving the user's personal files untouched, so it undoes a bad change you cannot pin to a single driver or update. Restore points are created automatically before major changes like updates and driver installs, and you can also make one by hand. It runs from within Windows or from WinRE.
Trap Expecting System Restore to bring back deleted documents; it reverts system state, not user files, so it is not a data-recovery tool.
9 questions test this
- A technician is remediating an infected workstation that will not boot into normal mode or Safe Mode. The technician accesses the Windows…
- A technician plans to install a line-of-business application on a workstation and wants to ensure the system can be recovered if the…
- A technician installed a new application on a user's workstation that caused system instability. The technician decides to use System…
- A user reports that after a technician performed a System Restore on their Windows workstation, a recently installed application is no…
- After installing a new third-party utility yesterday, a Windows workstation now crashes intermittently and runs unstably, although it still…
- A user reports that their workstation became unstable after installing a third-party application. A technician plans to use System Restore…
- A technician is about to perform a System Restore on a workstation to resolve instability caused by a recent application installation. The…
- A technician used System Restore to resolve instability on a workstation by selecting a restore point from five days ago. The user…
- A technician plans to use System Restore to resolve instability caused by a recent software installation. The user is concerned about…
- Rebuild boot files with bootrec when the error names BCD or Bootmgr
From the WinRE command prompt, bootrec repairs the boot path:
bootrec /fixmbrrewrites the master boot record's boot code,/fixbootwrites a new boot sector,/scanosfinds installed Windows systems, and/rebuildbcdrebuilds the Boot Configuration Data (BCD) store. Reach for it when Startup Repair fails and the error names a missing or corrupt Bootmgr, boot sector, MBR, or BCD.Trap Running Reset this PC for a "BCD is missing" error; bootrec /rebuildbcd repairs the boot store without removing apps or data.
- Reliability Monitor maps failures to the day a change was made
Reliability Monitor (run
perfmon /rel, or open it from Security and Maintenance) draws a day-by-day stability timeline and marks each app crash, driver failure, and Windows update against its date, which answers the "what changed?" question almost visually. A stability score that drops the day a driver installed points straight at that driver. Event Viewer holds the same events, but as raw timestamped logs rather than a chart.- For a BSOD, note the stop code and roll back the recent change
A blue screen (BSOD) is a stop error, most often from a bad driver or a failing update and sometimes hardware. Record the stop code, boot Safe Mode, and roll back the driver or update that preceded it; the minidump and Event Viewer name the failing component. A repeating INACCESSIBLE_BOOT_DEVICE points at a storage driver or a bad update rather than a broken app.
Trap Reimaging on a single blue screen; most stop errors trace to one recent driver or update you can roll back.
- A 'temporary profile' sign-in means the user profile is corrupt
When Windows reports you are signed in with a temporary profile, the local user profile is corrupt and any changes are discarded at sign-out. Repair or recreate the profile (create a fresh local profile) and copy the user's data into it. Because it is a per-user fault, other accounts on the same PC still sign in normally.
Trap Reinstalling applications to fix one user's broken profile; the profile itself is the fault, so recreate it and migrate the data.
- Clock drift beyond about five minutes breaks domain logins
A domain client whose clock drifts more than about five minutes from the domain controller fails Kerberos authentication, so domain logins and resource access break even though the password is correct. Resync the clock with
w32tm /resyncand confirm the Windows Time service is running. The symptom looks like an authentication problem, but the cause is the wrong time.Trap Resetting the user's password when domain logins suddenly fail across a site; if the clock drifted past the Kerberos tolerance, correcting the time is the fix.
- For an app that will not open, try run-as-admin and compatibility mode before reinstalling
When an application will not launch or crashes, the cheapest fixes usually work: run it as administrator if it needs the elevated token to reach protected files or registry keys, and set compatibility mode (Properties, Compatibility tab) for a program written for an older Windows. A repair of the installation and applying updates come next, and a full uninstall and reinstall is the step after those, not the first move.
Trap Uninstalling and reinstalling an app the moment it fails to launch; run-as-admin, compatibility mode, and a repair are faster and often fix it.
- An app that will not install usually fails on requirements, rights, or a bad installer
Before retrying a failed install, confirm the machine meets the app's requirements (Windows edition and version, disk space, and any framework it needs), that you are installing with administrator rights since a standard user cannot write to Program Files, and that the installer itself is not corrupt (re-download one that failed a checksum). Remove a blocking older version from Programs and Features first.
Trap Blaming the app when a standard user cannot complete an install; writing to Program Files needs administrator rights.
- When an app works for one user but not another, suspect permissions or the profile
If one account can run an app or open a file and another cannot, the difference is usually NTFS permissions on the program folder or the data file, not the application itself. Compare the effective permissions and check for a corrupt profile rather than reinstalling. The app binaries are shared, so a fault that is user-specific points to that user's rights or profile.
Trap Reinstalling the application to fix a one-user access problem; the app is fine, and NTFS permissions or a corrupt profile are the real cause.
- A truly incompatible app belongs in a VM or on a supported OS
A legacy application that will not run on the current Windows even in compatibility mode should run in a virtual machine or on a supported OS version, which is the plan of action rather than another reinstall. Compatibility mode only helps an app that expects an older Windows; it cannot rescue one the operating system genuinely cannot execute.
- After a fix, verify full functionality and then document
Steps five and six of the method are real, tested steps: confirm the original symptom is gone and nothing else broke, add a preventive measure where one applies, then record the symptom, cause, and fix in the ticket or knowledge base. Documentation is what lets the next technician skip the diagnosis you already did.
Trap Closing the ticket as soon as the fix appears to work; verifying full functionality and documenting the outcome are the required final steps.
- A fault right after an update or driver install is fixed by reversing that change
When a symptom appears immediately after a Windows update or a driver install, the targeted fix is to reverse that one change: uninstall the update (from Settings, or Uninstall Updates in WinRE) or roll back the driver in Device Manager, rather than a broad repair. It is faster and less disruptive than System Restore because it touches only the suspect item; System Restore is the fallback when you cannot pin the change to one update or driver.
Trap Running sfc or reimaging after a bad update when simply uninstalling that update restores the machine.
7 questions test this
- After a recent Windows Update, a workstation fails to boot and displays a blue screen error. The technician cannot access the Windows…
- After a recent Windows Update, a user reports display flickering and visual artifacts on the screen. No other hardware components are…
- A technician updates the audio driver on a Windows workstation. Immediately afterward, the workstation produces no sound output. No other…
- A Windows workstation enters a boot loop after a recent quality update was applied overnight. The technician cannot reach the Windows…
- After a recent Windows update, a user reports that a critical business application crashes on startup. The technician confirms the issue…
- A technician manually updated the audio driver on a workstation and the user now reports no sound output. The issue began immediately after…
- Shortly after a recent Windows quality update was installed, multiple applications begin throwing errors and the workstation behaves…
- Infection and mobile symptoms leave the OS-repair workflow
Symptoms that signal malware, such as pop-ups, browser redirects, ransom notes, or a rogue antivirus, follow the malware-removal best-practice process, not a generic OS repair, and phone or tablet faults follow the mobile workflow. Recognizing which process a symptom belongs to is itself tested, because the recovery tools on this page will not remove an infection.
Trap Running Startup Repair or sfc to clear malware symptoms; malware removal follows its own quarantine-and-remediate sequence.
Also tested in
References
- CompTIA A+ Core 2 (220-1202) Certification Exam Objectives (V15, Document Version 3.0)
- Windows startup issues troubleshooting (boot phases, Startup Repair, bootrec)
- Point-in-time restore for Windows (with System Restore comparison)
- sfc command reference
- Repair a Windows image (DISM /RestoreHealth)
- chkdsk command reference
- Push-button reset overview (Reset this PC)
- Windows Recovery Environment (Windows RE) technical reference
- Compatibility Fixes for Windows 10, Windows 8, Windows 7, & Windows Vista (Compatibility Modes table)