Question : Running programs form a script file in low priority

Dear all;
I am using the following scripts to run some progrmas
______________________________________________________
' VBScript Source File -
'
' NAME:
'
' AUTHOR: Eng. Saleh Diab , SCS-NET
' DATE  : 4/9/2006
'
' COMMENT:
'
'==========================================================================

Option Explicit
Dim Programs
Dim Return
Dim fs
Dim aFile

Set Programs = CreateObject("WScript.Shell")
Set fs = CreateObject("Scripting.FileSystemObject")
Const MINIMIZE_WINDOW = 6

' Starting LanTalk
Return = Programs.Run("C:\PROGRA~1\CEZEOS~2\LANTAL~1\LanTalk.exe", MINIMIZE_WINDOW)

' Starting Windows Live Messenger
Return = Programs.Run("C:\PROGRA~1\MSNMES~1\msnmsgr.exe", MINIMIZE_WINDOW, False )
__________________________________________________________

The problem that I need to run these program in Low priority, How could I do this?
Thanks

Answer : Running programs form a script file in low priority

Two options I can think of:

1) Pass through "Start"...
Return=Programs.Run("cmd /c Start /low program.exe")

or

2) Use "nice"...
http://www.jimbug.org/downloads/files/nice/Nice.exe is the app dowload link.
usage is Nice.exe program.exe (see: http://www.jimbug.org/downloads/helpfiles/gravitonomy/gravitonomy.htm)
Random Solutions  
 
programming4us programming4us