Microsoft SC-200 Complete Guide 2026: Security Operations Analyst Certification
Everything you need to know about Microsoft's Security Operations Analyst exam in 2026 — Sentinel, Defender XDR, KQL, and a study plan that actually works.

Table of Contents
What Is SC-200 and Who Should Take It
Microsoft SC-200, officially titled Microsoft Security Operations Analyst, validates your ability to investigate, respond to, and hunt threats using Microsoft's security stack. Where SC-900 tests concepts, SC-200 tests configuration. You are expected to wire up data connectors, write KQL hunting queries, build automation playbooks, and triage incidents end-to-end.
The exam covers three core products: Microsoft Sentinel (cloud-native SIEM and SOAR), Microsoft Defender XDR (the unified portal across Defender for Endpoint, Identity, Office 365, and Cloud Apps), and Microsoft Defender for Cloud (cloud workload protection across Azure, AWS, and GCP). If you cannot picture the analyst page in each of these portals, you are not ready for SC-200.
In 2026 SC-200 is one of the most in-demand Microsoft security exams. Hiring data shows roughly twice the LinkedIn job postings for SC-200 holders compared to SC-100 (the architect-level cert), because every Microsoft-shop SOC needs operators before architects.
Who Should Take SC-200?
- SOC analysts and incident responders in Microsoft-centric environments
- SysAdmins and IT pros moving into security operations
- Threat hunters who need formal recognition of Sentinel and KQL skills
- Cloud engineers rolling out Defender for Cloud across multi-cloud estates
- SC-900 holders ready to step up to associate-level security work
SC-200 is not for total beginners. Microsoft Learn assumes you already understand Active Directory, basic networking, Azure resource hierarchy, and what an alert/incident is. If those words feel unfamiliar, take SC-900 (or even AZ-900) first.
SC-200 Exam Format and Details
SC-200 has changed three times since launch. The 2026 version drops legacy Defender for Endpoint exam objectives in favor of unified Defender XDR portal and Microsoft Sentinel content packs.
| Detail | SC-200 Specifics |
|---|---|
| Full Name | Microsoft Security Operations Analyst |
| Exam Code | SC-200 |
| Number of Questions | 40-60 questions |
| Time Limit | 100 minutes |
| Passing Score | 700 out of 1000 |
| Cost | $165 USD |
| Prerequisites | None (SC-900 recommended) |
| Certification Level | Associate |
| Expiration | 1 year (free annual renewal via Microsoft Learn) |
| Question Types | Multiple choice, drag-and-drop, hot area, case study |
| Delivery | Pearson VUE (test center or online proctored) |
Key Numbers at a Glance
- Pass rate: Approximately 65-70% (mid-tier among Microsoft associate exams)
- Average study time: 60-100 hours over 6-10 weeks
- Lab time required: 15-25 hours minimum in a free Microsoft 365 dev tenant
- Languages: English, Japanese, Chinese (Simplified), Korean, German, French, Spanish, Portuguese (Brazil)
The 100-minute clock is tight if you have not practiced case studies. Each case study locks you into a scenario for 5-7 questions, and you cannot revisit them once submitted. Triage strategy: skim the case requirements, answer obvious questions first, flag the rest, then return.
Domain Breakdown: Four Functional Areas
The 2026 SC-200 objective domain has four functional areas. The percentages are official Microsoft weight ranges.
Domain 1: Manage a security operations environment (20-25%)
This domain is about operational hygiene: configuring Defender XDR settings, custom detection rules, alert tuning, automated investigation, and role-based access for SOC tiers.
- Defender XDR settings: alert grouping, MITRE mapping, automated investigation auto-remediation levels
- Custom detection rules: KQL-based rules, frequency, scope, response actions
- Microsoft Defender XDR roles: Security Reader, Security Operator, Security Admin and how they map to SOC tiers
- Microsoft Sentinel workspace design: commitment tiers, data retention, multi-workspace, Lighthouse
Domain 2: Configure protections and detections (15-20%)
Configuration heavy. Expect detailed questions on Defender for Cloud Apps policies, attack surface reduction rules, conditional access integration with Defender for Identity, and Microsoft Purview Insider Risk Management.
- Microsoft Defender for Endpoint: ASR rules, network protection, web content filtering, EDR in block mode
- Microsoft Defender for Identity: sensors, action accounts, honeytoken accounts
- Microsoft Defender for Office 365: Safe Links, Safe Attachments, anti-phishing policies
- Microsoft Defender for Cloud: secure score recommendations, regulatory compliance dashboard, AWS/GCP onboarding
Domain 3: Manage incident response (35-40%)
The largest domain by weight. If you optimize study time, this is where most of your hours should go. Expect end-to-end incident scenarios that span multiple Defender products and Sentinel.
- Investigate and remediate threats in Microsoft Defender XDR
- Investigate and remediate threats in Microsoft Sentinel (incident enrichment, entity behavior, watchlists)
- Manage Sentinel automation rules and playbooks (Logic Apps integration)
- Configure SOAR with Microsoft Sentinel (incident triggers, response actions, approvals)
High-yield study tip: Build one end-to-end playbook in your lab tenant. A simple "isolate machine, disable user, post to Teams" playbook covers automation rules, Logic Apps connectors, role permissions, and incident triggers — four exam objectives in one project.
Domain 4: Perform threat hunting (15-20%)
The KQL-heavy domain. You need to read Microsoft Sentinel hunting queries, modify them for new conditions, and know which Defender XDR advanced hunting tables hold what telemetry.
- Microsoft Sentinel hunting queries (saved queries, livestream sessions, bookmarks)
- Defender XDR advanced hunting tables: DeviceProcessEvents, DeviceNetworkEvents, IdentityLogonEvents, EmailEvents, AlertEvidence
- Threat intelligence integration (TI indicators, TAXII, MISP)
- Notebook-based hunting (Jupyter on Sentinel)
SC-200 vs SC-300: Which Comes First
SC-200 (Security Operations) and SC-300 (Identity and Access) are sibling associate-level certs. They share zero overlap on the hands-on side, so the right order depends entirely on your role.
| SC-200 | SC-300 | |
|---|---|---|
| Focus | Threat detection, response, hunting | Identity, Entra ID, conditional access |
| Core product | Microsoft Sentinel + Defender XDR | Microsoft Entra ID + Identity Governance |
| Best for | SOC analysts, incident responders | Identity admins, IAM engineers |
| KQL required? | Yes (15-20% of questions) | No |
| Difficulty | Medium-hard | Medium |
| Average study time | 60-100 hours | 40-70 hours |
If you are both, do SC-300 first. Identity is the foundation for every SC-200 incident scenario — a "user logged in from impossible travel and ran malicious PowerShell" alert assumes you already understand Entra sign-in logs and conditional access. For a deeper comparison see our SC-300 complete guide.
KQL Skills You Cannot Skip
Roughly 15-20% of SC-200 questions touch KQL directly, and another 10% require you to interpret KQL output even if you do not write the query. Memorize these operators cold:
- where — row filtering. Most common operator.
- project — column selection (like SQL SELECT).
- summarize ... by — aggregation. Know
count(),dcount(),min(),max(),arg_max(). - extend — computed columns.
- join — table joins. Understand
kind=inner,leftouter,leftanti. - parse and extract — pulling fields out of strings.
- make_set() and make_list() — aggregating values into arrays.
- bin() — bucketing time for histograms.
The "Top Five" KQL Patterns You Will See on the Exam
- Filter
SigninLogsfor failed sign-ins by user, summarize count. - Join
DeviceProcessEventswithDeviceNetworkEventsonDeviceId. - Find rare process names:
summarize count() by ProcessName | where count_ < 5. - Detect impossible travel by joining sign-ins on
UserPrincipalNameand comparing locations. - Use
arg_max(TimeGenerated, *)to get the latest event per entity.
4-Week Study Plan
Most candidates need 6-10 weeks. The 4-week plan below assumes you already work in a Microsoft-shop environment and have hands-on Sentinel exposure. Stretch each week if you are starting cold.
Week 1: Microsoft Defender XDR fundamentals
- Microsoft Learn paths: SC-200 Modules 1-2 (Mitigate threats using Microsoft Defender)
- Spin up a free Microsoft 365 E5 dev tenant
- Lab: configure Defender for Endpoint sensors on a test VM, simulate an attack with the Microsoft 365 Defender attack simulator
- Read: Defender for Cloud Apps documentation overview
Week 2: Microsoft Sentinel deep dive
- Microsoft Learn paths: SC-200 Modules 3-4 (Mitigate threats using Microsoft Sentinel)
- Lab: deploy a Sentinel workspace, connect Azure AD and Office 365 data connectors, install 3 content hub solutions
- Build one analytics rule from a Microsoft template, then build one custom analytics rule from scratch
- Read 10-15 KQL query examples in the Sentinel GitHub repo
Week 3: KQL and threat hunting
- Complete the free Microsoft Pluralsight KQL course
- Daily exercise: write 3-5 KQL queries against your lab data
- Build one Sentinel playbook in Logic Apps (e.g., isolate machine + post to Teams)
- Practice 50-100 SC-200 sample questions; flag every wrong answer for review
Week 4: Mock exams and weak areas
- Take 2 timed full-length practice exams under exam conditions
- Review every wrong answer; map back to Microsoft Learn module
- Re-read official skills outline; verify each bullet you can demo or explain
- Schedule the exam for end of week — booking commits you to the deadline
Tips from People Who Passed
Build the Lab Tenant on Day One
Reading SC-200 documentation without a working tenant is the most common reason people fail. The free Microsoft 365 E5 developer tenant takes 10 minutes to provision and gives you Defender XDR, Sentinel, and Entra ID Premium for 90 days (renewable). Spin it up before module 1.
Memorize the Defender XDR Portal Layout
Several drag-and-drop and hot-area questions show portal screenshots and ask "where would you click to do X". Walk through every blade in security.microsoft.com at least twice. Pay special attention to Incidents, Hunting, Custom detection rules, and Settings > Endpoints.
Treat Case Studies as Mini-Projects
Case studies lock you in. Read all the requirements first, build a mental architecture diagram, then answer. Most case studies have one gotcha question — a requirement buried in paragraph three that disqualifies the obvious answer.
The Exam Was Tighter on Time Than Expected
Multiple SC-200 passers report finishing with under 5 minutes left. The 100-minute clock is generous if you skip case studies until last. Do straightforward multiple choice first, then the case studies — if you run out of time, you lose 5-7 case study points instead of 20+ standalone points.
Exam Day Checklist
- Bring two forms of ID (test center) or clear your desk completely (online OnVUE)
- Close every application except the proctoring software
- Test microphone, webcam, and 3+ Mbps internet 30 minutes before the start window
- Use the bathroom before starting — no breaks during the exam
- Read each question twice, especially "NOT" and "LEAST" wording in case studies
Frequently Asked Questions
How hard is the SC-200 exam?
SC-200 is a mid-difficulty associate exam. It is harder than SC-900 because it tests hands-on configuration of Microsoft Sentinel, Defender for Endpoint, Defender for Cloud, and KQL queries. Most candidates pass with 6-10 weeks of focused study and lab time. The pass rate is approximately 65-70%.
What is the SC-200 passing score?
You need 700 out of 1000 to pass SC-200. The exam contains 40-60 questions and you have 100 minutes. Question types include multiple choice, drag-and-drop, hot area, and case studies. Cost is $165 USD.
Does SC-200 require SC-900 first?
No — SC-200 has no formal prerequisites. However, Microsoft strongly recommends SC-900 first to build conceptual foundations in Zero Trust, identity, and compliance. Skipping straight to SC-200 without security background is doable but adds 2-3 weeks of study time.
How much KQL do I need for SC-200?
You need to read and write basic to intermediate KQL queries. About 15-20% of exam questions touch KQL directly. Memorize where, project, summarize, join, parse, and the make_set / make_list functions.
Does SC-200 expire?
Yes. SC-200 is associate-level and expires one year after issue. Microsoft offers free annual renewal through an online assessment on Microsoft Learn — you do not need to retake the full proctored exam.
What jobs can I get with SC-200?
SC-200 is the most direct path to SOC Analyst, Threat Hunter, and Incident Responder roles in Microsoft-shop environments. Average US salary in 2026 is $85,000–$130,000 USD depending on experience. Pairs well with SC-300 for breadth or SC-100 for senior architect tracks.
Ready to Start Preparing?
Practice with real SC-200 exam-style questions and track your readiness
Try SC-200 Practice QuestionsPlan Your Study Journey
Use our free tools to optimize your preparation
