.msi Uninstall stucked at loading skin phase - SOLVED

Antworten
jakub.mrvc@gmail.com
Beiträge: 13
Registriert: 21 Dez 2015, 15:02

.msi Uninstall stucked at loading skin phase - SOLVED

Beitrag von jakub.mrvc@gmail.com »

Hi, me again

today, i'm creating a package for instalation Synology Survaillence plugin to internet explorer. setup is done. The problem is in uninstall part

My code :

Code: Alles auswählen

[Actions]

DefVar $MSIid$
DefVar $InstallDir$

Set $InstallDir$ = "C:\Program Files (x86)\Synology\SurveillancePlugin"
Set $MSIid$ = "{77A0C903-77D0-404D-B963-DF0D93EC4449}"

if FileExists($InstallDir$+"\1.0.0.774\SurveillancePlugin.exe")
WinBatch_uninstall
endif

[WinBatch_uninstall]
MsiExec.exe /x $MSIid$
[/i]

The part is stucked after winbatch uninstal section, where opsi winst only showing message "loading skin" for infinite amount of time

Absolutely don't know where should be problem, when i use only .bat with the last line localy, it works fine

I know it would be something stupid :-/
Thanks for help
Jacob
Zuletzt geändert von jakub.mrvc@gmail.com am 12 Jan 2016, 13:32, insgesamt 2-mal geändert.
Benutzeravatar
ueluekmen
uib-Team
Beiträge: 1939
Registriert: 28 Mai 2008, 10:53

Re: .msi Uninstall stucked at loading skin phase

Beitrag von ueluekmen »

Hi,

please try to modify your msi uninstall command, try to use:

Code: Alles auswählen

msiexec /x $MsiId$ /qb! REBOOT=ReallySuppress
This comes from our template. Have you checked your instlog?
opsi support - uib gmbh
For productive opsi installations we recommend support contracts.
http://www.uib.de
jakub.mrvc@gmail.com
Beiträge: 13
Registriert: 21 Dez 2015, 15:02

Re: .msi Uninstall stucked at loading skin phase

Beitrag von jakub.mrvc@gmail.com »

Hi, this works perfectly, but what means that exclamation mark after /qb?
ueluekmen hat geschrieben:

Code: Alles auswählen

msiexec /x $MsiId$ /qb! REBOOT=ReallySuppress
Anyway thank you
Jacob
Benutzeravatar
SisterOfMercy
Beiträge: 1529
Registriert: 22 Jun 2012, 19:18

Re: .msi Uninstall stucked at loading skin phase

Beitrag von SisterOfMercy »

jakub.mrvc@gmail.com hat geschrieben:Hi, this works perfectly, but what means that exclamation mark after /qb?
Do not show a 'cancel'-button.
Bitte schreiben Sie Deutsch, when I'm responding in the German-speaking part of the forum!
Benutzeravatar
ueluekmen
uib-Team
Beiträge: 1939
Registriert: 28 Mai 2008, 10:53

Re: .msi Uninstall stucked at loading skin phase - SOLVED

Beitrag von ueluekmen »

Thx @Sister.... I have no idea... i simply use it like in our templates... 8-)
opsi support - uib gmbh
For productive opsi installations we recommend support contracts.
http://www.uib.de
Benutzeravatar
SisterOfMercy
Beiträge: 1529
Registriert: 22 Jun 2012, 19:18

Re: .msi Uninstall stucked at loading skin phase - SOLVED

Beitrag von SisterOfMercy »

Here is the reference: https://msdn.microsoft.com/en-us/librar ... 85%29.aspx

I always use /qb-!
Bitte schreiben Sie Deutsch, when I'm responding in the German-speaking part of the forum!
Antworten