views:

2423

answers:

6

This is an internal web application where we would like the Web pages to contain links to several utilities that are Win32 EXE. The EXEs are trusted and produced by us. (don't care if it asks if its ok to Run or Save). I tried direct link (e.g. C:\notepad.exe) which works locally only. (This will be a share on the network). Tried File:/// and did not work. IE7 is the browser needed.

+1  A: 

Did you try a UNC share?

\\server\share\foo.exe

Andrew Hare
+8  A: 

How about something like:

<a href="\\DangerServer\Downloads\MyVirusArchive.exe" 
  type="application/octet-stream">Don't download this file!</a>
Cerebrus
+1 for the MyVirusArchive :)
Henrik P. Hessel
-1 -- This would download the exe each time. Would require the download and installation steps each time. But the question is how to run an exe that is already on the user's machine. An entirely different kettle of fish.
Larry K
+1 lol, nice [...padding]
BenAlabaster
@Larry: I think you are mistaken in your interpretation. In my opinion, the OP is saying that the executables are produced by them (maybe a particular department in the organization) and need to be available for download and subsequent execution to the entire organization.
Cerebrus
If you are looking to launch an app on the users desktop when they click a link or button on a webpage, and your desktop apps are in .NET then you may want to look into using ClickOnce to deploy the apps. ClickOnce will ease the pain of distributing application in this manor.
Chris Pietschmann
I love that this is `the answer`! Its obviously exactly what the OP was looking for! haha
Matt Joslin
+3  A: 

You can see how iTunes does it by using Fiddler to follow the action when using the link: http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=80028216

  1. It downloads a js file
  2. On windows: the js file determines if iTunes was installed on the computer or not: looks for an activeX browser component if IE, or a browser plugin if FF
  3. If iTunes is installed then the browser is redirected to an URL with a special transport: itms://...
  4. The browser invokes the handler (provided by the iTunes exe). This includes starting up the exe if it is not already running.
  5. iTunes exe uses the rest of the special url to show a specific page to the user.

Note that the exe, when installed, installed URL protocol handlers for "itms" transport with the browsers.

Not a simple engineering project to duplicate, but definitely do-able. If you go ahead with this, please consider making the relevant software open source.

Regards,

Larry

Larry K
+1  A: 

Are you saying that you are having trouble inserting into a web page a link to a file that happens to have a .exe extension?

If that is the case, then take one step back. Imagine the file has a .htm extension, or a .css extension. How can you make that downloadable? If it is a static link, then the answer is clear: the file needs to be in the docroot for the ASP.NET app. IIS + ASP.NET serves up many kinds of content: .htm files, .css files, .js files, image files, implicitly. All these files are somewhere under the docroot, which by default is c:\inetpub\wwwroot, but for your webapp is surely something different. The fact that the file you want to expose has an .exe extension does not change the basic laws of IIS physics. The exe has to live under the docroot. The network share thing might work for some browsers.

The alternative of course is to dynamically write the content of the file directly to the Response.OutputStream. This way you don't need the .exe to be in your docroot, but it is not a direct download link. In this scenario, the file might be downloaded by a button click.

Something like this:

    Response.Clear(); 
    string FullPathFilename = "\\\\server\\share\\CorpApp1.exe";
    string archiveName= System.IO.Path.GetFileName(FullPathFilename);
    Response.ContentType = "application/octet-stream";
    Response.AddHeader("content-disposition", "filename=" + archiveName);
    Response.TransmitFile(FullPathFilename);
    Response.End();
Cheeso
Yes, very good answer and thanks for reminding me. However, the EXE loads config settings from its load folder so I would have to rewrite to load from the Web site config.
JoeJoe
An alternative is to package the actual app along with its config file and anything else it needs, in a self-extracting zip archive (SFX), and then download THAT. The SFX can specify an execute-after-unpack command, which could be the command of the file unpacked. It would then be able to load its .config normally. The problem with this is, of course, that you would cut the cord. You cannot update the config centrally. Once it is copied to the user's HD, it is there to stay.
Cheeso
ps: DotNetZip is a (free) .NET library that allows the creation of self-extracting archives, with an execute-after-unpack command. You could, within the execution of the ASP.NET page, dynamically create the SFX, and then download it to the user's HD with TransmitFile().
Cheeso
I like your style
JoeJoe
A: 

As part of the solution that Larry K suggested, registering your own protocol might be a possible solution. The web page could contain a simple link to download and install the application - which would then register its own protocol in the Windows registry.

The web page would then contain links with parameters that would result in the registerd program being opened and any parameters specified in the link being passed to it. There's a good description of how to do this on MSDN

Catch 22 - 2
A: 

Thanks. it is useful for me.

brijesh bosamiya