My requirment was to install msi file remotely,installation is happening properly in my local machine,when i access the application remotely and try to install msi file,it is throwing an error,my code is as follows: please help me ,this was an urgent requirement
string filename = btnUploadMsi.FileName;
string msiFilePath = Server.MapPath("MSIPath") + "\\" + filename;
btnUploadMsi.PostedFile.SaveAs(msiFilePath);Process.Start(btnUploadMsi.PostedFile.FileName, "/q");
the above code was written in Asp.Net Application
Srinivas...
Srinivas...