Page 1 of 1

Uninstall .msi silently

Posted: Thu Apr 21, 2022 8:50 am
by NeeeeB
Hi,
Please, how do I unnstall my .msi package silently ?
running
mypackage.msi /s MODIFY=FALSE REMOVE=TRUE UNINSTALL=YES
brings the msiexec help windows....
and
msiexec /quiet /uninstall 4.8.12.23067.msi
brings the UI to select uninstall or repair...

Any advice would be greatly appreciated (.msi are installed with commandline, SILENT:TRUE and ALLUSERS:TRUE)

Thanks.

Re: Uninstall .msi silently

Posted: Mon Apr 25, 2022 2:28 am
by NeeeeB
That command gives the same result also :

msiexec /qn /x ..\..\MyPackage.msi

Wizard appears every time.
Any help with this would be greatly appreciated.

Re: Uninstall .msi silently

Posted: Mon Apr 25, 2022 7:43 am
by FrancescoT
please try;

"mypackage.msi" CMDLINE="MODIFY=FALSE REMOVE=TRUE SILENT=TRUE"

or

"mypackage.msi" CMDLINE="MODIFY=FALSE REMOVE=TRUE /s"

Re: Uninstall .msi silently

Posted: Tue Apr 26, 2022 2:25 am
by NeeeeB
FrancescoT wrote:please try;

"mypackage.msi" CMDLINE="MODIFY=FALSE REMOVE=TRUE SILENT=TRUE"

or

"mypackage.msi" CMDLINE="MODIFY=FALSE REMOVE=TRUE /s"


Works like a charm !! many thanks !!