Member-only story
5 Windows Defender Features You’re Probably Not Using (But Should Be)
--
Share
✍️ Full Blog Content:
Intro:
If you’re still thinking of Windows Defender as “basic antivirus,” it’s time for an upgrade — in mindset. Defender has evolved into a serious endpoint protection system. But most admins I know still don’t take full advantage of what’s already available — for free. Here are 5 powerful features built into Defender that you should be using right now.
1. Controlled Folder Access (CFA)
✅ What it does: Blocks untrusted apps (including ransomware) from modifying critical files in folders like Documents, Desktop, etc.
✅ Enable it via PowerShell:
Set-MpPreference -EnableControlledFolderAccess Enabled
✅ Add safe apps:
Add-MpPreference -ControlledFolderAccessAllowedApplications "C:\YourApp\app.exe"
2. Attack Surface Reduction (ASR) Rules
✅ What it does: Blocks behavior typically used by malware — like Office launching PowerShell, or unsigned processes spawning binaries.
✅ Turn on rules:
Add-MpPreference…