Underc0de

Programación Scripting => Otros lenguajes Scripting => Mensaje iniciado por: M3 en Junio 28, 2012, 09:54:48 PM

Título: Alternative ShellExecute ( AutoIt)
Publicado por: M3 en Junio 28, 2012, 09:54:48 PM
;=================================
; 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