opening msi .exe from vb code

tanza

Member
Joined
Jun 11, 2007
Messages
6
Programming Experience
1-3
Hi,

I am trying to open a msi .exe file from a command button in a VB form using

process.start("C:\setup.exe")

but get an error saying 'Windows cannot find REBOOT-reallysuprpess').I'm not sure what I then need to be enetring to open this .exe. I've had a look at using the various command line switches such as \i to no avail. Any help appreciated!

Cheers

Tania
 
Its all good, dont know why I didnt see it before:

System.Diagnostics.Process.Start("C:\My installs\linker\distribution\netlink.msi")

need to reference the msi, not the setup.exe!
 
Back
Top