在批处理文件运行带有参数的exe文件

在批处理文件运行带有参数的exe文件

本文介绍了在批处理文件运行带有参数的exe文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请看看我的批处理文件。

Please have a look at my batch file.

echo off
start "c:\program files\php\php.exe D:\mydocs\mp\index.php param1 param2"

但它不工作。任何想法我怎么得到它的工作?

but it isn't working. Any ideas how do I get it working?

推荐答案

这应该工作:

start "" "c:\program files\php\php.exe" D:\mydocs\mp\index.php param1 param2

启动命令间$ P $点的第一个参数,如果它包含空格的窗口标题。在这种情况下,这意味着启动认为你的整个参数的标题和认为没有命令。通过(空标题)作为第一个参数启动解决问题。

The start command interprets the first argument as a window title if it contains spaces. In this case, that means start considers your whole argument a title and sees no command. Passing "" (an empty title) as the first argument to start fixes the problem.

这篇关于在批处理文件运行带有参数的exe文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 01:29