Ver Mensaje Individual
  #7 (permalink)  
Antiguo 27/04/2015, 10:05
Avatar de Jilti
Jilti
 
Fecha de Ingreso: abril-2007
Mensajes: 47
Antigüedad: 17 años
Puntos: 4
Respuesta: Ejecutar un .exe con php

Saludos....

Prueba con alguno de estos dos scripts

Código vb:
Ver original
  1. <script type="text/vbscript">
  2. Set objShell = CreateObject("Wscript.Shell")
  3. objShell.Run "tu_programa.exe"
  4.  
  5. </script>

Código vb:
Ver original
  1. <script type="text/vbscript">
  2. Set WshShell = WScript.CreateObject(“WScript.Shell”)
  3. Return = WshShell.Run(“tu_programa.exe”, 1, true)
  4. </script>

No se si funcionan bien, yo no los he podido probar... hace tiempoque no trabajo en win

Saludos