window server 2003+IIS6 下php 怎么执行 bat文件

WBOY
Release: 2016-06-13 13:32:33
Original
1055 people have browsed it

window server 2003+IIS6 下php 如何执行 bat文件?
我的bat文件中调用了另一个exe程序,代码如下
  @echo off
  cd "path to my exe program"
  dir
  xxx.exe argument1 argument2
  exit
然后我在php中调用bat文件,代码如下
  $res= system('cmd /C c:\\ivl\\view\\webrooms\\test.bat' ,$retval);
echo "
".$res." return: ".$retval;
结果可是输出dir命令产生的output,但是没有执行调用的xxx.exe程序。

我查了网上资料,赋予了IUSER_xxx读和执行xxx.exe以及批处理文件所在目录的权限,但还是不能执行。
请问各位,应该如何编码才能实现?

谢谢!

------解决方案--------------------
既然知道是权限问题.
那么.赋予相应权限就行了....
------解决方案--------------------
为什么非得要"cmd /c"去执行bat文件呢?直接执行不也一样吗?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!