I am downloading an .msp file from localhost
WebClient webClient = new WebClient();
webClient.DownloadFile("http://localhost/Installer.msp", @"d:\Installer.msp");
It is throwing exception : "The remote server returned an error: (404) Not Found."
I do not get this exception for other file types like *.msi etc. I have IIS V 7.5
I guess IIS does not allow particular file types like (*.msp) for download ? How to overcome this problem ?