Jump to content

is there a way to do this?


obewan

Recommended Posts

I want to call a local windows command from a remote web server.  Something like this - which works when the web server is running on the local machine - but I want it to run on a web server elsewhere on my LAN.  Is it possible?? ???

 

$command = "start notepad.exe";
if(exec($command))
echo "command issued<br>";

 

Any way to tag an IP onto something like this?

Link to comment
https://forums.phpfreaks.com/topic/42896-is-there-a-way-to-do-this/
Share on other sites

I want to call a local windows command from a remote web server.  Something like this - which works when the web server is running on the local machine - but I want it to run on a web server elsewhere on my LAN.  Is it possible?? ???

 

$command = "start notepad.exe";
if(exec($command))
echo "command issued<br>";

 

Any way to tag an IP onto something like this?

 

PHP can only run app on the server its running from...

 

Browsers are bult to stop web application messing up peoples computer so lauching a program from a webbased interface are a no, no!

 

Besides i would be REALLY pissed off if i click a link on every website and something fired up!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.