1

I am using InstallShield 2010 to build the installer of my project and I would like to hide the name of files showed while they are transferred to HD:

enter image description here

Can I hide the file name and keep the progress bar? Or even to suppress the window and replace it by another?

Anyone have any idea about how can I do this?

Bo Persson
  • 90,663
  • 31
  • 146
  • 203
felipekmr
  • 11
  • 1

2 Answers2

1

To enable the display of the name and path of the file being installed on the second line of the status bar, call Enable with the INDVFILESTATUS parameter before calling FeatureMoveData.

Enable(STATUSEX);
Disable(INDVFILESTATUS);
...
SetStatusWindow(100, "Setup is complete.");
Disable(STATUSEX);
Artem Kulikov
  • 2,250
  • 19
  • 32
1

You can use "SetStatusWindow" function in installscript to overcome this. An example is in InstallShield site itself: SetStatusWindow Example

Santhosh J
  • 368
  • 3
  • 14