
i need help with 'wscript.run'
So it was a typo in your original post that had "wscript.run(...)"...
--
Michael Harris
it creates a new process that executes 'strCommand'
Example
The following example runs Microsoft Notepad and opens the currently
running script:
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run ("%windir%\notepad" & WScript.ScriptFullName)
The following example returns the error code from the executed
application:
Set WshShell = WScript.CreateObject("WScript.Shell")
Return = WshShell.Run("notepad " & WScript.ScriptFullName, 1, TRUE)
i use it mostly for Windows NT 'NET SEND', 'MAILTO', and 'NVPAGE,
which are messaging programs on my local area network.
On Sat, 11 Dec 1999 13:27:00 -0700, "Bill James"
>wscript.run? What is that?