Forum Discussion
MilanM00
Mar 25, 2025Copper Contributor
Uninstalling programs through AD GPO
Hello everyone, I need to uninstall a program that was installed before AD on 250 computers. I converted the .exe file to .msi, when I distribute the policy and enter gpupdate /force the computer r...
Marten Theunissen
Apr 07, 2025Copper Contributor
True, If you are in the position I would say look at using a startup script to achieve this. Might be a good idea to work in a failure/sucess event that can be logged to keep track of where you are having issues and the count if you don't have anything in place
$appName = "ApplicationName" Get-WmiObject Win32_Product | Where-Object {$_.Name -eq $appName} | ForEach-Object { $_.Uninstall() }