Hello,
Anyone have an script to 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
Check out this article from a Microsoft Cloud advocate.
PowerShell and AI: Using ChatGPT with PowerShell to Automate Tasks - Microsoft Community Hub
Thanks! I will check it out.