- A
Run a system file checker (sfc /scannow) from within Windows.
Why wrong: SFC checks system files but cannot repair the MBR, which is outside the file system.
- B
Use the Windows Recovery Environment to run bootrec /fixmbr.
This command rewrites the MBR, removing the malware that resides there.
- C
Perform a clean installation of Windows without formatting the drive.
Why wrong: A clean install without formatting may leave the MBR intact, allowing the malware to persist.
- D
Disable System Restore and delete all restore points.
Why wrong: This action removes restore points but does not address MBR infection.
How to Remove MBR Malware Using Windows Recovery Environment
This 220-1202 practice question tests your understanding of malware types and removal. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A technician is tasked with removing a persistent malware infection that survives reboots and re-infects the system even after a full antivirus scan in Safe Mode. The malware appears to hide in the Master Boot Record (MBR). Which removal method should the technician use?
Quick Answer
The answer is to use the Windows Recovery Environment and run bootrec /fixmbr. This is correct because MBR malware embeds itself in the boot sector, which loads before the operating system and Safe Mode, allowing it to survive standard antivirus scans and reinfect the system after every reboot. The bootrec /fixmbr command overwrites the infected boot code, while bootrec /fixboot repairs the boot sector, effectively neutralizing the rootkit-like persistence. On the CompTIA A+ Core 2 220-1202 exam, this scenario tests your understanding of boot-level infections and the limitations of Safe Mode; a common trap is to attempt a system restore or antivirus scan first, which will fail since the malware loads before those tools. Remember the memory tip: "MBR malware must be met before the OS boots—fix the MBR with bootrec."
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Use the Windows Recovery Environment to run bootrec /fixmbr.
Option B is correct because the malware is hiding in the Master Boot Record (MBR), which is the first sector of the boot drive and loads before the operating system. Running `bootrec /fixmbr` from the Windows Recovery Environment (WinRE) overwrites the MBR code with a clean Windows bootloader, effectively removing the malware that persists there. This method targets the infection at its source, unlike antivirus scans that run after the OS loads and cannot access the MBR while it is in use.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Run a system file checker (sfc /scannow) from within Windows.
Why it's wrong here
SFC checks system files but cannot repair the MBR, which is outside the file system.
- ✓
Use the Windows Recovery Environment to run bootrec /fixmbr.
Why this is correct
This command rewrites the MBR, removing the malware that resides there.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Perform a clean installation of Windows without formatting the drive.
Why it's wrong here
A clean install without formatting may leave the MBR intact, allowing the malware to persist.
- ✗
Disable System Restore and delete all restore points.
Why it's wrong here
This action removes restore points but does not address MBR infection.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Cisco often tests the misconception that antivirus scans in Safe Mode can remove all malware, but the trap here is that MBR-based infections load before the OS and require boot-level repair tools like `bootrec /fixmbr` to be eradicated.
Detailed technical explanation
How to think about this question
The MBR is 512 bytes in size and contains both boot code and the partition table; `bootrec /fixmbr` rewrites only the boot code portion (first 446 bytes) without altering the partition table, preserving disk structure. In real-world scenarios, rootkits like TDL4 or Pihar use MBR hooks to load before the OS, making them invisible to standard antivirus tools that rely on OS-level APIs. The `bootrec` tool must be run from WinRE because the MBR cannot be modified while the OS is running and using the disk.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the 220-1202 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Malware Types and Removal — study guide chapter
Learn the concepts, then practise the questions
- →
Malware Types and Removal practice questions
Targeted practice on this topic area only
- →
All 220-1202 questions
750 questions across all exam domains
- →
CompTIA A+ Core 2 220-1202 study guide
Full concept coverage aligned to exam objectives
- →
220-1202 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related 220-1202 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Windows OS Features and Tools practice questions
Practise 220-1202 questions linked to Windows OS Features and Tools.
Windows Settings and Control Panel practice questions
Practise 220-1202 questions linked to Windows Settings and Control Panel.
Windows Command-Line Tools practice questions
Practise 220-1202 questions linked to Windows Command-Line Tools.
Windows Administrative Tools practice questions
Practise 220-1202 questions linked to Windows Administrative Tools.
macOS Features and Tools practice questions
Practise 220-1202 questions linked to macOS Features and Tools.
Linux Commands and File Permissions practice questions
Practise 220-1202 questions linked to Linux Commands and File Permissions.
Mobile OS Features and Tools practice questions
Practise 220-1202 questions linked to Mobile OS Features and Tools.
Virtualization and Cloud Technologies practice questions
Practise 220-1202 questions linked to Virtualization and Cloud Technologies.
Physical Security Controls practice questions
Practise 220-1202 questions linked to Physical Security Controls.
Logical Security Concepts practice questions
Practise 220-1202 questions linked to Logical Security Concepts.
Wireless Security Protocols practice questions
Practise 220-1202 questions linked to Wireless Security Protocols.
Malware Types and Removal practice questions
Practise 220-1202 questions linked to Malware Types and Removal.
Practice this exam
Start a free 220-1202 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this 220-1202 question test?
Malware Types and Removal — This question tests Malware Types and Removal — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Use the Windows Recovery Environment to run bootrec /fixmbr. — Option B is correct because the malware is hiding in the Master Boot Record (MBR), which is the first sector of the boot drive and loads before the operating system. Running `bootrec /fixmbr` from the Windows Recovery Environment (WinRE) overwrites the MBR code with a clean Windows bootloader, effectively removing the malware that persists there. This method targets the infection at its source, unlike antivirus scans that run after the OS loads and cannot access the MBR while it is in use.
What should I do if I get this 220-1202 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Keep practising
More 220-1202 practice questions
- During a Windows 10 deployment, you need to ensure that a specific Group Policy setting is applied to a computer before…
- After installing a new printer driver, a user's Windows 11 computer crashes with a blue screen error every time they try…
- A user reports that their Windows 10 computer is infected with a virus that keeps reinstalling itself after removal. Wha…
- A customer reports that their Windows 10 laptop is displaying pop-up ads even when no browser is open. They suspect a ma…
- A technician is configuring a new Windows 10 workstation for a user who handles sensitive financial data. The company po…
- A technician is responding to a security incident where an employee's credentials were used to access a server without a…
Last reviewed: Jul 4, 2026
This 220-1202 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the 220-1202 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.