批处理文件通过Windows任务计划程序运行

时间:2015-03-20 13:01:55

标签: batch-file automation windows-scheduler

我在Windows中创建了一个任务计划程序来运行batch文件。该批处理文件依次调用cmd文件。 cmd文件需要一些用户输入。能告诉我如何为这个自动过程提供输入吗?

显示的信息如下:

[input] Where is your product view ?

2 个答案:

答案 0 :(得分:1)

  

...我如何为这个自动过程提供输入?

假设myCmd.cmd包含下一行:

set /p "input=[input] Where is your product view ?"

使用适当的答案创建文件myInput.txt,如下所示:

here is my product view  

并在批处理文件中使用< redirection,如下所示:

call myCmd.cmd<myInput.txt

答案 1 :(得分:0)

我猜你是这样做的:

ECHO Where is your product view ?
SET /p input=

那么你可以简单地从参数中设置input变量:

SET input=%*

这将在调用BATCH文件时获取参数。 file.bat "Here is my product view."