Hello, I am currently trying to create a simple in-house webpage which enables company employees to access/run a program through an offline server network.
I have attempted to, through a function in a HTML page, run a .bat file with the following command:
path C:\\Program Files\Software AG\Natural\6.3\Bin
naturalr.exe PARM=[Library Name]
exit
However, I was prevented from doing so due to ActiveXObject (in the aforementioned function) being blocked, as it is identified as a security hazard. With that being the case, may I ask if there are some other ways to fulfill my initial objective?
The solution does not necessarily have to involve .bat files. But if it does, may I also ask how should I modify the above command so that is runs a specific program in a specific library, rather than simply just accessing a library?