Page 1 of 1

removing FDM via powershell silently

Posted: Thu Feb 16, 2023 5:47 pm
by itsklk
Hi Guys,
Have anyone tried to uninstall the FDM via powershell silently ?. I mean 100% without user interaction.
I am using : get-package |where name -like *$pp* |% { & ($_.Meta.Attributes["UninstallString"] -replace '"') /S (inside the foreach) but the issue is assson as script runs FDM keeps prompting user input to confirm the uninstall.

Has anyone get around with it ?

thank you

Re: removing FDM via powershell silently

Posted: Fri Feb 17, 2023 1:40 pm
by Alex
Hello,
Use /silent or /verysilent command line arguments.