running allready configured msi

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • ivanpudic
    Forum Member
    • Jan 2008
    • 1

    running allready configured msi

    Hi,

    I have been looking for several days now how to configure a checkbox installer in this situation:

    i have 10 msi packages, who silently autoinstall themselves when you open them (compiled with an other program)

    how can i make an checkbox installer so i could install these?
    i can onlly make them copy to a directory but can seem to run them?

    any help is appreciated!!

    greetings,

    ivan
  • Adam
    Indigo Rose Staff Member
    • May 2000
    • 2149

    #2
    To run MSI files from script you need to launch msiexec from the system folder.

    Code:
    File.Run(_SystemFolder.."\\msiexec.exe", "/package  path\\to\\msi\\file\\app1.msi", "", SW_SHOWNORMAL, true);
    Adam Kapilik

    Comment

    Working...
    X