Uninstall Eset

Hello,

Anyone have an script to uninstall Eset?

I have made one for each product name like below:

$product = Get-WmiObject win32_product | where{$_.name -eq “ESET Endpoint Antivirus”}
$product.IdentifyingNumber
msiexec.exe /x $($product.IdentifyingNumber) /qn REBOOT=“ReallySuppress” PASSWORD=“$Pass”

You can change the name for Server Security, ESET Security, Management agent, etc.

Your awesome man! Thank you!! I would love to learn to create these myself… which this might need be a enough to spark the flame to get me moving.

Glad that script could help. I am still learning powershell myself and end up googling things alot :smiley:

Check out this article from a Microsoft Cloud advocate.
PowerShell and AI: Using ChatGPT with PowerShell to Automate Tasks - Microsoft Community Hub

1 Like

Thanks! I will check it out.