بنقرة واحدة
defender-quickscan
Windows Defender: scans, threat history, signatures (PowerShell)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Windows Defender: scans, threat history, signatures (PowerShell)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Search and download arXiv papers (no API key needed)
Delegate coding and file edits to Anthropic Claude Code CLI
Read/write Windows clipboard text, HTML, images, history (PowerShell)
Running scripts and code on Windows
Delegate coding tasks to OpenAI Codex CLI
File creation and management on Windows
| name | defender-quickscan |
| description | Windows Defender: scans, threat history, signatures (PowerShell) |
| category | windows |
| version | 1.0.0 |
| platform | windows |
| tags | defender, antivirus, security, scan, threat, malware, windows, powershell |
| license | Apache-2.0 |
Trigger Windows Defender antivirus scans, inspect threat history, update virus definitions, and check real-time protection status — all via PowerShell cmdlets.
Get-MpComputerStatus | Select-Object AMServiceEnabled, AntispywareEnabled,
AntivirusEnabled, RealTimeProtectionEnabled,
AntispywareSignatureAge, AntivirusSignatureAge, QuickScanAge
Start-MpScan -ScanType QuickScan # fast scan of likely threat locations
Start-MpScan -ScanType FullScan # thorough scan of all files (30-60 min)
Start-MpScan -ScanType CustomScan -ScanPath "C:\Users\<you>\Downloads"
Update-MpSignature
Get-MpThreatDetection | Select-Object ThreatID, ActionSuccess,
DetectionSourceTypeID, Resources, InitialDetectionTime |
Sort-Object InitialDetectionTime -Descending |
Select-Object -First 10
Get-MpThreat | Select-Object ThreatID, ThreatName, SeverityID,
CategoryID, IsActive, Resources
Remove-MpThreat -ThreatID 12345
(Get-MpPreference).ExclusionPath
(Get-MpPreference).ExclusionExtension
Add-MpPreference -ExclusionPath "C:\DevTools\node_modules"
"Scan my Downloads folder for threats"
→ Start-MpScan -ScanType CustomScan -ScanPath "$env:USERPROFILE\Downloads" — Defender scans the folder and logs any detections.
"Are my virus definitions up to date?"
→ Get-MpComputerStatus | Select-Object AntivirusSignatureAge, AntivirusSignatureLastUpdated — signature age of 0 means updated today.
"Show me the last 5 threats Defender found"
→ Get-MpThreatDetection | Sort-Object InitialDetectionTime -Descending | Select-Object -First 5
Start-MpScan requires Windows Defender to be the active antivirus — third-party AV may disable these cmdletsRemove-MpThreat is permanent; confirm with the user before executing