Alternative ShellExecute ( AutoIt)

Iniciado por M3, Junio 28, 2012, 09:54:48 PM

Tema anterior - Siguiente tema

0 Miembros y 1 Visitante están viendo este tema.

Código: php
;=================================
; Autor M3
; Alternative Shell Execute AutoIt
; Agradecimientos Black Zerox
; Uso : sShell(Ruta + exe)
;=================================

Func sShell($Path)
Local $Shell = ObjCreate("shell.application")
$Shell.ShellExecute($Path, "")
EndFunc