Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Deinstallation nur über die Systemsteuerung!


5 replies to this topic

stifler

stifler
  • Members
  • 1 posts

Posted 15 January 2003 - 15:02

Hallo,
Ich habe ein Problem, wenn ich mein Programm deinstallieren möchte, dann kann ich das nur über die Systemsteuerung/Software oder direkt über das Setup tun.

Ich habe aber im Startmenü aber eine Verknüpfung erstellt, welche den selben Aufruf macht, wie die Systemsteuerung!

"C:\Programme\InstallShield Installation Information\{81E3FB0B-247E-11D7-A5E6-006008E3B6A2}\setup.exe" ... etc.

Hier drin befindet sich KEIN Setup.exe, aber die Systemsteuerung kann es trotzdem entfernen!

Wie kann ich die Setup.exe in diesen Ordner kopieren?

Gruss Stifler

HighBam

HighBam
  • Members
  • 9 posts

Posted 28 January 2003 - 10:53

Hallo,

es würde doch eine Verknüpfung mit folgendem Link reichen:

msiexec.exe /x {81E3FB0B-247E-11D7-A5E6- 006008E3B6A2}

Gruß
HighBam

honeyjam

honeyjam
  • Members
  • 10 posts

Posted 29 January 2003 - 22:15

Hallo zusammen,

das Problem mit der Deinstallation habe ich auch.

Hat einer vielleicht eine Idee, wie man eine Verknüpfung in einer Programmgruppe erstellt, dass die Deinstallation anstößt?

Habe leider wenig Erfahrung mit der Developer-Version.

Gruß
honeyjam

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 30 January 2003 - 06:38

Sollte eigentlich ganz einfach sein:

http://support.insta...m/kb....Q105816

Habt ihr das schon mal versucht?

honeyjam

honeyjam
  • Members
  • 10 posts

Posted 30 January 2003 - 22:58

Hallo zusammen,

so geht es am einfachsten:

1. Go to the Shortcuts view.

2. Right-click on Program Files folder and select New Shortcut.

3. Type a name for the shortcut. You can rename the shortcut by selecting it, pressing F2, and typing a new name.

4. In the Arguments field, type /x [ProductCode]. Separate the two arguments with a space.

Msiexec.exe is the command-line engine for the Windows Installer service. The /x argument instructs the Windows Installer service to uninstall the product referenced by the product code.

5. Select No from the Advertised drop-down menu.

6. In the Target field, select [SystemFolder] from the list. Append msiexec.exe to this location.

7. In the Component property, select the component with which you want this shortcut associated. To ensure that the shortcut is always installed, associate it with the component containing your application's main executable.

Cu
honeyjam

PS: Hab es in der Online-Hilfe gefunden.

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 30 January 2003 - 23:35

Das funktioniert glaube ich nur für den Projekttyp "Basic MSI".
Stifler verwendet aber "InstallScript MSI" (nehme ich an), und dafür gilt die Beschreibung in dem angegebenen Artikel.