Hi all,
I am trying to run an msi from c# using the Proces.Start method. the Msi is fine because i can run that normally. but when i try and run the msi within some c# code i receive the following error.
"This installation package could not be opened. Verify that the package exists, and that you can access it, or contact the application vendor to verify that this is a valid windows installer package"
below is the code that i am using to run the msi...
Process p = Process.StartApplication.StartupPath "/Packages/Name.msi");
p.WaitForExit();
Any ideas?
Thanks