Loading
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

  • 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.
    Expand Post
  • 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
    Expand Post

Loading
Program Files\InstallShield Installation Information files