如何从另一个批处理文件调用 Windows 批处理文件

发布于 2024-08-28 07:01:29 字数 201 浏览 9 评论 0原文

我需要创建一个批处理文件来更改特定文件夹的路径并执行一组其他 bat 文件。

我的批处理文件如下所示:

start cd c:\temp\
command1
command2

但它不起作用。它只是将路径更改为 C:\Temp 但忽略下一行。

我该如何解决这个问题?

谢谢。

I need to create a batch file that changes path to a particular folder and executes a set of another bat files.

My batch file looks as follows:

start cd c:\temp\
command1
command2

But it does not work. It just changes path to C:\Temp but ignores next lines.

How can I fix this?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

孤凫 2024-09-04 07:01:29

尝试:

cd c:\temp
start command1 
start command2

Try:

cd c:\temp
start command1 
start command2
千紇 2024-09-04 07:01:29

将“call”放在对其他 .bat 文件的引用前面。像这样,

cd c:\temp
call command1 
call command2

Put "call" in front of references to other .bat files. Like this,

cd c:\temp
call command1 
call command2
伊面 2024-09-04 07:01:29

不要忘记检查您是否真的位于驱动器 C 上。在执行其他操作之前先尝试执行“c:”。

c:
cd c:\temp\

dont forget to check if you are really on drive c. try executing a "c:" first before anything else.

c:
cd c:\temp\
带上头具痛哭 2024-09-04 07:01:29

只需放入 CD c:\temp:

cd c:\temp\
command1
command2

甚至:

cd c:\temp\
start /W command1
start /W command2

Just put CD c:\temp:

cd c:\temp\
command1
command2

Or even:

cd c:\temp\
start /W command1
start /W command2
呆头 2024-09-04 07:01:29
cd c:\temp
cmd /c command1 
start command2
cd c:\temp
cmd /c command1 
start command2
日久见人心 2024-09-04 07:01:29

如果您取出start命令,它应该可以工作。

cd c:\temp\
command1
command2

If you take out the start command, it should work.

cd c:\temp\
command1
command2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文