标签: php batch-file remote-server
我正在尝试在PHP中执行以下代码。它运行,但返回我的本地系统的结果,我需要在远程系统上运行bat文件。
if( pclose(popen("cmd /c "."\\\\ServerName\path\Test.bat", 'r')) ) { return true; } return false;
TEST.BAT DIR> mohit.txt 我看到mohit.txt是在我的本地计算机根目录中创建的,因为我希望将该文件放在同一目录中的远程服务器上。
答案 0 :(得分:0)
您是否尝试过使用php的exec功能?
exec( '/path/Test.bat' );