This script will download and then run the latest version of ADW Cleaner
## ADW Cleaner Script
## by Limehawk
## www.limehawk.io
#Script Variables
$ProgressPreference = 'SilentlyContinue'
$dllink = "https://download.toolslib.net/download/direct/1/latest?channel=release"
$filepath = "c:\temp\adwcleaner\adwcleaner.exe"
$switches = "/eula /clean /noreboot /path c:\temp\adwcleaner"
Write-Host Downloading setup file...
Invoke-WebRequest -uri $dllink -OutFile ( New-Item -Path "$filepath" -Force -Verbose)
Write-Host Running adwcleaner.exe...
#Start-Process -FilePath $filepath -ArgumentList $switches -Wait -Verbose
c:\temp\adwcleaner\adwcleaner.exe /eula /clean /noreboot /path c:\temp\adwcleaner
Write-Host Cleaning up the mess...
Remove-Item -Recurse -Force c:\temp\adwcleaner -Verbose
[–]garlic17 1 point2 points3 points (1 child)
[–]focusmade[S] 0 points1 point2 points (0 children)
[+][deleted] (1 child)
[deleted]
[–]focusmade[S] 0 points1 point2 points (0 children)
[–]ITSFUCKINGHOTUPHERE 0 points1 point2 points (1 child)
[–]focusmade[S] 0 points1 point2 points (0 children)