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