Run application or Process on a remote computer

后端 未结 3 1074
闹比i
闹比i 2020-12-30 16:42

I need to run an application or service on a remote computer. I have had success with psexec from SysInternals, but I am investigating and would like to compre alternatives.

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-30 17:33

    The other possiblity would be to use the windows AT command which schedules tasks via the windows scheduler. You can submit jobs remotely with the command as long as you have administrator access and the schedule service is running on the other machine. To examine the syntax, just open a CMD window and type AT /?.

    for example to run something on machine named "server" at 4am, just enter the command

    AT \\server 4:00 "c:\something.bat"
    

提交回复
热议问题