I've got a Problem here trying to open some Batch-Scripts from a HTML-Page. So, step by step the Situation looks like this:
In our company we have a program with a GUI running on Windows. This Program has an "HTML-Viewer", which is just a kind of enbedded MS IE (I assume it is linked to the localy installed IE). While using this program, we need to execute some commands on the Windows Command Prompt. To make it easier and safer, we already saved the commands in Batch-Files on the computers (locally). Now, to make it more easy, we would like, to start this commands/batch-scripts from a localy saved html page via the HTML-Viewer in the program.
Because of the HTML-Viewer it is not possible to use an HTA-Application (with ActiveX) (which I tried, and which runs perfectly...but started from the Desktop) (and what was proposed in several similar questions here, I already found)
So I think, I need a kind of layer between HTML and Batch, something i can run with a HTML page and is going to start Batch script:
HTML -> XXX -> Batch
I tried php, which of course failed because everything is local.
I tried javascrip, wich of course failed because js does not have the ability to make system calls.
perl won't do it either...
So tu sum up: I would need an command in HTML, that can start an batch-script (or a command in the windows prombt)?!