我想从一台windows服务器远程部署到另一台windows服务器,在那里我需要远程启动和停止tomcat服务。但是我无法访问服务(启动或停止服务),tomcat服务在任务调度程序中配置,我想通过批处理脚本中的命令运行tomcat。当我在我想要部署的特定服务器上运行命令时,它工作正常,但是远程命令无法访问Tomcat服务。
可以运行/modify/等。使用schtasks
命令远程调度任务。
Microsoft schtasks命令
schtasks /run /s <machine name> /tn <task name>
命令控制台帮助
`C:>schtasks /?`
SCHTASKS /parameter [arguments]
Description:
Enables an administrator to create, delete, query, change, run and
end scheduled tasks on a local or remote system. Replaces AT.exe.
Parameter List:
/Create Creates a new scheduled task.
/Delete Deletes the scheduled task(s).
/Query Displays all scheduled tasks.
/Change Changes the properties of scheduled task.
/Run Runs the scheduled task immediately.
/End Stops the currently running scheduled task.
/? Displays this help message.
Examples:
SCHTASKS
SCHTASKS /?
SCHTASKS /Run /?
SCHTASKS /End /?
SCHTASKS /Create /?
SCHTASKS /Delete /?
SCHTASKS /Query /?
SCHTASKS /Change /?
你的帖子缺乏信息。你能更具体地说明你的问题吗?