This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Get Suite GUID in Installscript
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 20, 2017
03:50 PM
Get Suite GUID in Installscript
I have a suite project and I need to add a bit of installscript to it. Is there a property that already has the SuiteGUID that I can use?
(6) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 20, 2017
04:31 PM
1shoke1 wrote:
I have a suite project and I need to add a bit of installscript to it. Is there a property that already has the SuiteGUID that I can use?
Try using PRODUCT_GUID
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 24, 2017
12:43 PM
Is there documentation for PRODUCT_GUID? I'm just getting blank if I use suitegetproperty on that.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 24, 2017
02:11 PM
Right... PRODUCT_GUID is a read-only system variable... not a property. If your want it to be a property and your GUID never changes you can set the value for 'Suite Guid (on 'General Information' page) into a property of your choice.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 24, 2017
03:47 PM
My SuiteGuid changes every build which is why I need a way to get it. (If I can just look at the read-only Product_Guid thing that would work too but I'm not sure what installscript to use to see it)
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 24, 2017
04:06 PM
1shoke1 wrote:
My SuiteGuid changes every build which is why I need a way to get it. (If I can just look at the read-only Product_Guid thing that would work too but I'm not sure what installscript to use to see it)
At what point do you need this? If it is during uninstall you can get it from the Uninstall info in the registry.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 24, 2017
04:21 PM
During install. We want to set certain uninstall information and I can't get to it without knowing the suiteguid which is part of the registry key. The General Information tab doesn't let you set it dynamically which is what we need. Since we allow side by side installs (this is crucial to our app) having every single instance show the same information in add/remove programs really isn't ideal. It's confusing. At the very least if I could change the DisplayName to be something determined at install time that would be good enough. The installscript for suite installers seems heavily limited so I might have a package do it since atm that seems easier but the package is still going to need the SuiteGuid.