Command line 是否可以计划所有命令行的使用?

Command line 是否可以计划所有命令行的使用?,command-line,taskscheduler,hyperion,Command Line,Taskscheduler,Hyperion,我正在使用Hyperion规划。有许多内置的命令行实用程序。我可以知道是否可以使用windows任务计划程序计划运行所有这些命令行实用程序吗 您可以使用批处理文件运行所有命令。只需从任务调度器调用批处理文件。在Linux上,我们按如下方式安排工作: [apphyp@ichypp0013 ~]$ crontab -l ### Minutes hours DayOfMonth Month Weekday(0-6 Sunday-Saturday) ### ### ### DAILY ONLINE BA

我正在使用Hyperion规划。有许多内置的命令行实用程序。我可以知道是否可以使用windows任务计划程序计划运行所有这些命令行实用程序吗

您可以使用批处理文件运行所有命令。只需从任务调度器调用批处理文件。

在Linux上,我们按如下方式安排工作:

[apphyp@ichypp0013 ~]$ crontab -l
### Minutes hours DayOfMonth Month Weekday(0-6 Sunday-Saturday)
###
###
### DAILY ONLINE BACKUP Plan0
00 20  * * 1-5 /app/ncia/scripts/stop.hyp.sh 2>&1
30 20  * * 1-5 /app/ncia/scripts/backup_Planning0.sh 2>&1
00 22  * * 1-5 /app/ncia/scripts/start.hyp.sh 2>&1
### Automatic Transfer
00 09  * * 1-5 /app/ncia/scripts/automatic.transfer.FMC_to_R2C.sh >> /app/ncia/log/automatic.transfer.FMC_to_R2C.log
00 23  * * 0-4 /app/ncia/scripts/automatic.transfer.HRC_to_HR2C.sh >> /app/ncia/log/automatic.transfer.HRC_to_HR2C.log
30 22  * * 0-4 /app/ncia/scripts/automatic.launch.business.rule.FMC_Admin_PrepareAllData_to_R2C.sh >> /app/ncia/log/automatic.launch.business.rule.FMC_Admin_PrepareAllData_to_R2C.log

这个问题太宽泛了