I'm trying launch an external app from a button using VBScript.  the following code is supposed to work but doesn't on a Mach screen.  Can anyone point me in the right direction?  Perhaps there is another way to launch an app from within Mach using a button or menu item?
Dim commandLine, WshShell
  
   commandLine = "C:\app.exe"
  
   Set WshShell = Server.CreateObject("WScript.Shell")   ' I get object not supported error on this line.
   Call WshShell.Run (commandLine,8,true)
   Set WshShell=Nothing
Thanks