<?
$size=filesize("PSS_Support.exe");
header("Content-Type: application/exe");
header("Content-Disposition: attachment; filename=PSS_Support.exe");
header("Content-Length: $size");
header("Cache-control: private");
//$filename="MyProgram.exe";
//$fp =fopen($filename, 'r');
//fpassthru($fp);
header("Location: PSS_Support.exe");
?>