Use when configures Microsoft Defender for Endpoint (MDE) advanced protection
Scanned 9/8/2026
Install to Claude Code
npx -y skills add oyi77/1ai-skills --skill configuring-windows-defender-advanced-settings --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Configuring Windows Defender Advanced Settings?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/oyi77-configuring-windows-defender-advanced-settings)More formats (shields.io, HTML) on the badges page.
---
name: configuring-windows-defender-advanced-settings
description: Use when configures Microsoft Defender for Endpoint (MDE) advanced protection
settings including attack surface reduction rules, controlled folder access, network
protection, and exploit protection. Use when hardening Windows endpoints beyond
default Defender settings, deploying enterprise-grade endpoint protection, or meeting
compliance requirements for advanced malware defense. Activates for requests involving
Windows Defender configuration, ASR rules, MDE tuning, or Microsoft endpoint securit.
domain: cybersecurity
tags:
- endpoint
- windows-security
- Microsoft-Defender
- ASR
- exploit-protection
- MDE
subdomain: endpoint-security
version: 1.0.0
author: oyi77
license: Apache-2.0
nist_csf:
- PR.PS-01
- PR.PS-02
- DE.CM-01
- PR.IR-01
category: cybersecurity
---
# Configuring Windows Defender Advanced Settings
## Overview
Cybersecurity skill for configuring windows defender advanced settings. Follows industry best practices and security standards.
## When to Use
**Trigger phrases:**
- "configuring windows defender advanced settings"
- "Configuring Microsoft Defender for Endpoint (MDE) beyond default settings for en"
- "Implementing Attack Surface Reduction (ASR) rules to block common attack techniq"
- "Enabling controlled folder access for ransomware protection"
Use this skill when:
- Configuring Microsoft Defender for Endpoint (MDE) beyond default settings for enhanced protection
- Implementing Attack Surface Reduction (ASR) rules to block common attack techniques
- Enabling controlled folder access for ransomware protection
- Configuring network protection and exploit protection features
- Deploying Defender settings via Intune, SCCM, or Group Policy at enterprise scale
**Do not use** this skill for third-party EDR deployment (CrowdStrike, SentinelOne) or for Microsoft Defender for Cloud (Azure workload protection).
## When NOT to Use
- When you lack proper authorization for testing
- For production systems without change management
- When the task requires legal or compliance expertise beyond technical scope
## Prerequisites
- Windows 10/11 Enterprise with Microsoft Defender Antivirus enabled
- Microsoft 365 E5 or Microsoft Defender for Endpoint Plan 2 license (for full MDE features)
- Microsoft Intune or SCCM for enterprise policy deployment
- Microsoft 365 Defender portal access (security.microsoft.com)
- Endpoints not running third-party AV in active mode (Defender enters passive mode)
## Workflow
```python
# Example: IOC detection
import re
IOC_PATTERNS = {
"ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",
"domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",
"hash_md5": r"\b[a-f0-9]{32}\b",
"hash_sha256": r"\b[a-f0-9]{64}\b",
}
def extract_iocs(text: str) -> dict:
return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}
```
1. **Define Objectives** — Clarify the goals and scope for windows defender advanced settings.
2. **Gather Resources** — Collect tools, data, and access needed for windows defender advanced settings.
3. **Execute Process** — Carry out windows defender advanced settings operations methodically.
4. **Verify Quality** — Check results against acceptance criteria.
5. **Document Outcomes** — Record findings, decisions, and next steps.
## Tools
- **Analysis Platform** — Data processing and visualization
- **Collaboration Tools** — Team coordination and knowledge sharing
## Process
1. **Design** — Define interface, identify patterns, plan implementation
1. **Implement** — Write code following existing conventions, add tests
1. **Verify** — Run tests, check integration, validate behavior
## Verification
- [ ] All windows defender advanced settings procedures executed completely and documented
- [ ] Findings validated against multiple data sources
- [ ] False positives identified and filtered
- [ ] Results documented with evidence and timestamps
- [ ] Recommendations provided with risk-based prioritization
## Anti-Rationalization Table
| Rationalization | Reality |
|---|---|
| "We are too small to be targeted" | Automated attacks target everyone. Size does not matter. |
| "Security slows us down" | A breach slows you down 100x more. Build security in from the start. |
| "We will fix it after launch" | Vulnerabilities in production are exploited within hours. Fix before deploy. |Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!