- 1

How do i write script to open windows application?

please help html to open windows application or visual basic

1st Jun 2017, 1:18 AM
MatLeh
MatLeh - avatar
3 odpowiedzi
+ 3
It's not possible, for security reasons ^^
1st Jun 2017, 3:27 AM
visph
visph - avatar
+ 3
Write the following in notepad (change "yourProgramPath" with the actual path, change "yourExecutable" with the name of the executable you want to run. @echo off cd "C:\yourProgramPath" start yourExecutable.exe exit save the file with a ".bat" extension. You made your first Batch script. You can have your server launching the script with an html request using php. beware that if you're sending the request from a client on a connected device the application will still be launched on the server (only).
1st Jun 2017, 5:59 AM
seamiki
seamiki - avatar
0
wow nice. thank you sir
1st Jun 2017, 6:37 AM
MatLeh
MatLeh - avatar