Up 13 Down 3

Uninstall Trend Micro Security Agent

https://success.trendmicro.com/dcx/s/solution/1116938-information-about-the-cut-tool-for-officescan-apex-one
Diagnostic Tools > Other Tools > Cut Tool
https://success.trendmicro.com/diagnostic-tools
Download > Upload to FileHost > Copy link
[showhide type="trend" more_text="Click to show URL password" less_text="trend"][/showhide]

$ProgressPreference = "SilentlyContinue"
$Link = "https://filehost.nu/wp-content/uploads/SCUT.zip"
$User = ""
$Pass = ""
$File = "SCUT.zip"
$Path = "C:\Users\Public\Downloads"
if (Test-Path $Path\$File) {
  Remove-Item $Path\$File
}
Invoke-WebRequest -Uri $Link -OutFile $Path\$File -UseBasicParsing -Credential (New-Object PSCredential($User, (ConvertTo-SecureString -AsPlainText -Force -String $Pass)))
Expand-Archive $Path\$File $Path -Force
Start-Process -FilePath $Path\NA1\scut.exe -ArgumentList "-noinstall" -Wait

cmd:
powershell Invoke-WebRequest -Uri https://filehost.nu/wp-content/uploads/SCUT.zip -OutFile C:\Users\Public\Downloads\SCUT.zip -UseBasicParsing -Credential (New-Object PSCredential('Username', (ConvertTo-SecureString -AsPlainText -Force -String 'Password')))
powershell Expand-Archive C:\Users\Public\Downloads\SCUT.zip C:\Users\Public\Downloads -Force
C:\Users\Public\Downloads\NA1\scut.exe -noinstall