locked
Remote Msi installation using Asp.Net application RRS feed

  • Question

  • 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...
    Thursday, July 23, 2009 6:11 AM

Answers

  • Hi,
     

    Thank you for your post!  I would suggest posting your question in one of the Asp.net forums home located here:  http://forums.asp.net/.

    Have a great day!


    Sudarshan shindode Tier 2 Application Support Server and Tools Online Operations Team
    Thursday, July 23, 2009 9:03 AM