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


JavaScript Hashtable Object

Hoy me he encontrado con que necesitaba utilizar una tabla hash en JavaScript. Ya que dicho lenguaje no posee un objeto propio, he utilizado la siguiente implementación: hashtable.js

Un pequeño ejemplo de uso:

var myHash = new Hashtable();

myHash.put('42894488Z', 'Arturo Pérez Reverte');
myHash.put('31892488A', 'Sigmund Freud');

alert(myHash.get('42894488Z'));