Announcement

Collapse
No announcement yet.

Progress bar installing files

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Progress bar installing files

    Hi,

    I'm trying to add a progress bar showing the progress of the installation of 3 files, anyone can help me?

    This is the code to install the files, one by one:

    result = File.Run("AutoPlay\\setup\\file1.msi", "", "", SW_SHOWNORMAL, true);
    result = File.Run("AutoPlay\\setup\\file2.exe", "", "", SW_SHOWNORMAL, true);
    result = File.Run("AutoPlay\\setup\\file3.exe", "", "", SW_SHOWNORMAL, false);

  • #2
    This can be done, as long as these installers are yours (meaning that you have access to the projects). I show here one possible way how you can show the progress of an installer in another application. However, if you didn't create these packages, then you are most likely out of luck.

    Ulrich

    Comment

    Working...
    X