- 1
How do i write script to open windows application?
please help html to open windows application or visual basic
3 ответов
+ 3
It's not possible, for security reasons ^^
+ 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).
0
wow nice. thank you sir