vickerps 0 Posted March 17, 2004 What is the best way to launch a program on another pc eg Dim $ComputerName, $Count,$TotalTills $ComputerName = StringTrimRight (@ComputerName,1) #INCLUDE <Process.au3> $TotalTills=2 $Count=1 DO $Count = $Count +1 _RunDOS ( "Copy c:\answers.txt \\" & $ComputerName & $Count & "\c$\answers.txt" ) Run ("\\" & $ComputerName & $Count & "\d$\utility\Twinmar.exe") UNTIL $Count = $TotalTills This works but it launches on the local pc not the remote pc Share this post Link to post Share on other sites
Jos 2,175 Posted March 17, 2004 (edited) This will run the program on the pc running this script and not on the target pc. You could use the pstools from sysinternals and do a PSexec command. Edited March 17, 2004 by JdeB SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites