Hey Allen,

I am testing PSStartProcess()

 Code:
$pid = psstartprocess($dsync, $dsyncflag + $dpath[$i] + $storage)


$exe gets turned into this captured during a debug session.

 Code:
? $exe
c:\dexis\DEXSYNC.EXE, /v /h /c /i /n /m \\lan-dexis01\d-Drive\DEXIS\DATA e:\dexis\data



this line throws an error.
 Code:
$PSObject.execute('$Process=[System.Diagnostics.Process]::Start("' + $exe + '")')



 Code:
ERROR: Exception calling "Start" with "1" argument(s): "The system cannot find the fil
ERROR: e specified"
ERROR: At line:1 char:45
ERROR: + $Process=[System.Diagnostics.Process]::Start( <<<< "c:\dexis\DEXSYNC.EXE, /v
ERROR: /h /c /i /n /m \\lan-dexis01\d-Drive\DEXIS\DATA e:\dexis\data")


My tests done with just launching Notepad.exe worked great! But seems that adding an argument, causes problems.