I'm thinking the jt.exe method may be better.. I wrote a script to do this, but if the standard shares aren't enabled it won't work...

Here is my script:
code:
break on
call "i:\netview.kix"
$fileversion = "4, 0, 2"
$computer="000000000"
$netview = netview("@LDOMAIN")
$date = "@DATE @TIME"
if @error = 0
for each $computer in $netview
$computerupdateddate=READPROFILESTRING ("i:\cpkix.ini","@LDOMAIN",$computer)
if $computerupdateddate = ""
if GETFILEVERSION ("\\" + $computer + "ADMIN$$\kix32.exe") <> $fileversion
COPY "I:\kix32exe\*.*" "\\" + $computer + "\ADMIN$$"
IF @ERROR = 0
$ok = WriteProfileString ("i:\cpkix.ini","@LDOMAIN",$computer,$date)
ELSE
$ok = WriteProfileString ("i:\cpkix.ini","@LDOMAIN-FAILED",$computer,$date)
endif
ELSE
$ok = WriteProfileString ("i:\cpkix.ini","@LDOMAIN",$computer,"AlreadyCurrent -- "+$date)
endif
endif
Next
Endif

Are there any comments on this?

Brian