Jump to content

How to open any application, in web application program?


mubeena

Recommended Posts

hai,

 

In desktop application, using our code we can make open , any application.

 

Is it possible, in web application?

 

For Example,

 

<?php

$WshShell = new COM("WScript.Shell");

$oExec = $WshShell->Run("notepad.exe", 7, false);

?>

It is not opening the Notepad GUI.

 

No, since it would open it on the server. You cannot invoke commands to run on the clients machine. That would be a massive security risk.

 

In order to do something like that, you would need to run an ActiveX control.

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.