I have one batch file in my local,I want to run it from browser
For example I have one html page with anchor tag If I click on that link then it should run a batchfile provided in href attribute.
Thanks in advance.
I have one batch file in my local,I want to run it from browser
For example I have one html page with anchor tag If I click on that link then it should run a batchfile provided in href attribute.
Thanks in advance.
Web browsers run JavaScript code in a "sandbox", specifically to prevent exactly what you want to do, because it's an enormous security risk.
In short, you shouldn't, and can't do that.