Additional Script Updates

This commit is contained in:
Andrew Amason
2025-05-19 15:19:36 -04:00
parent ec2b22290a
commit 9c8438d7d1
136 changed files with 1595 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# Remediation Script: Remediate_Malware.ps1
# Perform a full scan using Microsoft Defender
Start-MpScan -ScanType FullScan
# Check the scan results
$scanResults = Get-MpThreatDetection
if ($scanResults) {
# Remove detected malware
Remove-MpThreat -ThreatID $scanResults.ThreatID
Write-Output "Malware removed: $($scanResults.ThreatName)"
} else {
Write-Output "No malware detected."
}