15 lines
409 B
PowerShell
15 lines
409 B
PowerShell
# 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."
|
|
} |