cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
pebethel
Level 3

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
Labels (1)
0 Kudos
(4) Replies
Reddy611
Level 6

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.
0 Kudos
pebethel
Level 3

Thanks Reddy611.

Why can't this be done within IS script before any GUI is called?

Paul
0 Kudos
Reddy611
Level 6

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..
0 Kudos
pebethel
Level 3

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
0 Kudos