
Originally Posted by
Splash
Personally I'd be using Group Policy to push this out, rather than making use of PSExec.
I agree

Originally Posted by
Apex
psexec.exe <\\hostname of pc we want to copy the file to> –c FileFormatConverters.exe /quiet
The command would be
psexec.exe -c -f -d \\hostname FileFormatConverters.exe /passive /quiet
You could be fancy and use this little batch I wrote
Code:
@echo off
echo.
echo Please Enter The Remote PC's Hostname
echo.
Set /P hname=
CLS
Echo Please Wait...
psexec.exe -c -f -d\\%hname% fileformatconverters.exe /quiet /passive
save it as install.bat and make sure its in the same folder as both your psexec.exe and fileformatconverters.exe and that you are logged in as domain admin.