I am looking for a way to make the client machine execute some command line in the command prompt (cmd) from a web page (intranet application).
I guess (and hope) this cannot be done by browser standards. But assuming I have full access to the clients' machines and can setup everything I need on them - Is there a way to make Internet Explorer
trigger a launch of cmd
and execute a given command? So I could then include hyperlinks or javascript to access it like, for example, this:
<a href="cmd:C\Program Files\...">Click Me</a>
executeCmd('C:\\Program Files\\...');
If there is no easy way to configure something like this, I'd be very thankful for workarounds or different approaches to trigger a command from a web page.