Windows で Chrome ブラウザーを使用して、IIS/ASP で次のコードを実行します。
Response.ContentType = "application/exe"; //also tried application/octet-stream
Response.AddHeader("content-disposition", "attachment;filename=MyFile.exe");
Response.TransmitFile(Server.MapPath("~/MyFile.exe"));
しかし、ダウンロードを完了すると、ダウンロードしたファイルは元のサイズとは異なり (ダウンロードしたファイルの方が大きい)、デジタル署名がありません。どうすれば修正できますか?