Executing an .exe inside a VBScript
Necesitaba ejecutar un fichero .exe desde VBScript. He aquí el código que utilicé:
Set wshShell = WScript.CreateObject ("WSCript.shell")
wshshell.run """C:\WINNT\notepad.exe""", 6, True
set wshshell = nothing
Necesitaba ejecutar un fichero .exe desde VBScript. He aquí el código que utilicé:
Set wshShell = WScript.CreateObject ("WSCript.shell")
wshshell.run """C:\WINNT\notepad.exe""", 6, True
set wshshell = nothing
var myHash = new Hashtable();
myHash.put('42894488Z', 'Arturo Pérez Reverte');
myHash.put('31892488A', 'Sigmund Freud');
alert(myHash.get('42894488Z'));