' Install iScan Online in silent mode ' Tested on Windows 7 on error resume next Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.Run "Install path env=prod /qb!" If err.number <> 0 Then WScript.Echo ("Script Check Failed") Wscript.Quit (1001) Else wscript.Echo ("Successfully Passed") wscript.Quit(0) End If