ok... after ripping Bryce's Rcmd UDF, I have it installing, executing, and uninstalling:
code:
 	$dl="q"
$svrpath="\\server\shared"
$tools="\\server\logon\tools"
use "\\$name\ipc$$"
$targetSystemRoot = readvalue("\\$name\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\","SystemRoot")
shell '%comspec% /c $tools\xnet list $target | find /i "rcmdsvc" > nul'
if @error = 0
shell '%comspec% /c $tools\xnet stop \\$name\rcmdsvc > nul'
shell '%comspec% /c $tools\xnet remove \\$name\rcmdsvc /y > nul'
endif
copy "$tools\rcmd*.exe" "\\$name\admin$$\system32"
if @error <> 0 exit(@error) endif
shell '%comspec% /c $tools\xnet install \\$name\rcmdsvc /b:$targetsystemroot\system32\rcmdsvc.exe /n:"Remote Command Service" /u:localsystem /i:y /s:auto > nul'
shell '%comspec% /c $tools\xnet start \\$name\rcmdsvc > nul'
shell '%comspec% /c $tools\rcmd.exe \\$name net use $dl: $svrpath'
shell '%comspec% /c $tools\xnet stop \\$name\rcmdsvc > nul'
shell '%comspec% /c $tools\xnet remove \\$name\rcmdsvc /y > nul'
del "$destdir\rcmdsvc.exe"
use "$target\ipc$$" /delete

However, the system account cannot access the network.

I have tried to use SOON.EXE to schedule a Job
code:
 C:\>soon \\client 61 /interactive "cmd /c net use q: \\server\shared" 

With the same result.

Any Ideas...
_________________________
How to ask questions the smart way <-----------> Before you ask