Product Dependency
Product Dependency
Hi
How do i create a product(1) dependency which requires another product(2) to be installed, and which automatically uninstalls product1 when product2 is set to uninstall..
To be more specific - i am trying to create a package for a Outlook-plugin.
When I choose to install the plugin OPSI recognizes that Outlook needs to be installed, but when i uninstall Outlook the plugin remains installed...
I need the plugin to install after Outlook has been installed, and i need the plugin to uninstall before Outlook uninstalls.
I hope you know what i mean.
Best Regards,
Soren
How do i create a product(1) dependency which requires another product(2) to be installed, and which automatically uninstalls product1 when product2 is set to uninstall..
To be more specific - i am trying to create a package for a Outlook-plugin.
When I choose to install the plugin OPSI recognizes that Outlook needs to be installed, but when i uninstall Outlook the plugin remains installed...
I need the plugin to install after Outlook has been installed, and i need the plugin to uninstall before Outlook uninstalls.
I hope you know what i mean.
Best Regards,
Soren
Re: Product Dependency
Do i create a dependency on Outlook like this:
Code: Alles auswählen
[ProductDependency]
action: uninstall
requiredProduct: outlookplugin
requiredStatus: uninstalled
requirementType: before
Re: Product Dependency
Hi,
product dependencies are only supported for the action setup.
regards
d.oertel
product dependencies are only supported for the action setup.
regards
d.oertel
Vielen Dank für die Nutzung von opsi. Im Forum ist unser Support begrenzt.
Für den professionellen Einsatz und individuelle Beratung empfehlen wir einen Support-Vertrag und eine Schulung.
Gerne informieren wir Sie zu unserem Angebot.
uib GmbH
Telefon: +49 6131 27561 0
E-Mail: sales@uib.de
Re: Product Dependency
Hi
This fix did the trick for my problem:
plugin control-file:
outlook control-file:
This fix did the trick for my problem:
plugin control-file:
Code: Alles auswählen
[ProductDependency]
action: setup
requiredProduct: outlook2010
requiredStatus: installed
requirementType: before
Code: Alles auswählen
[ProductDependency]
action: uninstall
requiredProduct: plugin
requiredStatus: uninstalled
requirementType: before