Is there a possible way to start an .exe application on shared location from react.js app.
The approach should be working on internet explorer also.
Is there a possible way to start an .exe application on shared location from react.js app.
The approach should be working on internet explorer also.
Yes, this can be done with a custom URL handler. For example :
Browser will delegate handling of custom URLs to OS and OS will invoke the exe.
Documentation : https://msdn.microsoft.com/en-us/windows/desktop/aa767914 , How do I register a custom URL protocol in Windows?