Bueno, al colocar el link, si el cliente tiene configurado que se abra se abrirá, aunque por default es descarga.
Para forzar un poco más eso podrías usar un código como este:
Código:
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = adTypeBinary
objStream.LoadFromFile TuArchivo
ContentType = "application/vnd.ms-powerpoint"
Response.AddHeader "Content-Disposition", "attachment; filename=" & nombreDelArchivoQueSeDescargara
Response.AddHeader "Content-Length", strFileSize 'Con FSO obtienes el tamaño
Response.Charset = "UTF-8"
Response.ContentType = ContentType
Response.BinaryWrite objStream.Read
Response.Flush
objStream.Close
Set objStream = Nothing