Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions HeadlessMcAfeeNuker.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Define variables
$repoZipUrl = "https://github.com/we-dcode/HeadlessMcAfeeNuker/releases/download/v1.0.0/mcafee_killer.zip"
$localZipPath = "C:\Windows\Temp\mcafee_killer.zip"
$repoUnzippedPath = "C:\Windows\Temp\mcafee_killer\MCPR"
$cleanupExe = "mccleanup.exe"

# Function to download a file
function Download-File {
param (
[string]$Url,
[string]$Destination
)
Write-Host "Downloading $Url to $Destination..."
Invoke-WebRequest -Uri $Url -OutFile $Destination -ErrorAction Stop
}

# Function to unzip a file
function Unzip-File {
param (
[string]$ZipFilePath,
[string]$DestinationPath
)
Write-Host "Extracting $ZipFilePath to $DestinationPath..."
Expand-Archive -Path $ZipFilePath -DestinationPath $DestinationPath -Force
}

# Step 1: Check if the zipped repository exists
if (-Not (Test-Path -Path $localZipPath)) {
Write-Host "Zipped repository not found at $localZipPath."
Download-File -Url $repoZipUrl -Destination $localZipPath
} else {
Write-Host "Zipped repository already exists at $localZipPath."
}

# Step 2 & 3: Check if the repository is unzipped, and unzip if necessary
if (-Not (Test-Path -Path $repoUnzippedPath)) {
Write-Host "Unzipped repository not found at $repoUnzippedPath."
Unzip-File -ZipFilePath $localZipPath -DestinationPath $repoUnzippedPath
} else {
Write-Host "Unzipped repository already exists at $repoUnzippedPath."
}

# Step 4: Change to the unzipped repository
Set-Location -Path $repoUnzippedPath

# Step 5: Run the McAfee cleanup tool
$cleanupToolPath = Join-Path -Path $repoUnzippedPath -ChildPath $cleanupExe

if (Test-Path -Path $cleanupToolPath) {
Write-Host "Running McAfee cleanup tool..."
& $cleanupToolPath -p StopServices,MFSY,PEF,MXD,CSP,Sustainability,MOCP,MFP,APPSTATS,Auth,EMProxy,FWDriver,HW,MAS,MAT,MBK,MCPR,McProxy,McSvcHost,VUL,MHN,MNA,MOBK,MPF,MPFPCU,MPS,SHRED,MPSCU,MQC,MQCCU,MSAD,MSHR,MSK,MSKCU,MWL,NMC,RedirSvc,VS,Remediation,MSC,YAP,TrueKey,LAM,PCB,Symlink,SafeConnect,MGS,WMIRemover,RESIDUE -v -s
Write-Host "McAfee cleanup completed successfully."
} else {
Write-Host "Cleanup tool not found at $cleanupToolPath."
}

# Cleanup
Write-Host "Script execution completed."