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
- :
- Uninstall files in Program Files\InstallShield Installation Information\[GUID] dir.
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
‎Apr 24, 2009
12:37 PM
Program Files\InstallShield Installation Information files
I'm doing a Basic MSI project and I need to know how to get the setup.exe and other files into the Program Files\InstallShield Installation Information\{GUID} directory. This directory is used during the uninstall of the software.
Can this be done in a Basic MSI project????
Thanks,
Paul
Can this be done in a Basic MSI project????
Thanks,
Paul
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 29, 2009
09:39 AM
Wirte a vb script.like this
targetdir = installdir+"hard code GUID"
installdir = target dir.
and call this vbscript before EULA custom diloag.
i hope this is help to you.
targetdir = installdir+"hard code GUID"
installdir = target dir.
and call this vbscript before EULA custom diloag.
i hope this is help to you.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 29, 2009
10:26 AM
Thanks Reddy611.
Why can't this be done within IS script before any GUI is called?
Paul
Why can't this be done within IS script before any GUI is called?
Paul
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 30, 2009
12:15 AM
i tried in vb script.it was woking fine for me.
y cont u try in IS script.i think this will work .
Can you try it once let me know..
y cont u try in IS script.i think this will work .
Can you try it once let me know..
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 30, 2009
11:06 AM
OK.
So all I need to do is create a function whether it be a external prototype or just prototype and put in the function the following
targetdir = [INSTALLDIR] + [ProductCode];
INSTALLDIR = targetdir;
and call this function before EULA?
Is this correct?
Thanks for your help.
Paul
So all I need to do is create a function whether it be a external prototype or just prototype and put in the function the following
targetdir = [INSTALLDIR] + [ProductCode];
INSTALLDIR = targetdir;
and call this function before EULA?
Is this correct?
Thanks for your help.
Paul