Hi!One but not only solution is to use AT-commands.
First, log on to your computer as administrator (you should have network-admin -rights).
Then you run a bat (of course you can use a kix-script, but I've used bat) which copies scripts to remote computers' temp-directories. It's contents is something like this:
code:
if not exist \\%remote_computer%\c$\Temp md \\%remote_computer%\c$\Temp
copy .\Scripts\*.* \\%remote_computer%\c$\Temp\*.*
AT \\%remote_computer% 12:00 /interactive C:\Temp\Script.cmd
That script.cmd starts on remote computer when it's local time is 12:00. It is run by SYSTEM, so it can install almost anything. Script.cmd looks like this:
code:
C:\Temp\kix32 C:\Temp\Script.kix
del C:\Temp\Script.kix /Q
Contents of Script.kix is something like this:
code:
SETCONSOLE("MINIMIZE")
Run "C:\Temp\Program.exe /Q"
This is the way that I install small programs on remote computers. Hopefully it helps you.