我正在尝试使用COM类打开MyComputer ...你能帮我解决COM类中MyComputer的名称吗? 例如,如果您想打开NotePad,请执行以下操作:
<?php
$shell = new COM("WScript.Shell");
$shell->Run("notepad.exe");
$shell = null; ?>
运行( “Notepad.exe的”);适用于记事本,但当我使用运行(“mycomputer.exe”); 我面临错误:
致命错误:未捕获的异常'com_exception',消息'来源:未知
说明:未知'在E:\ Localhost \ root \ test.php中:3堆栈跟踪:#0 E:\ Localhost \ root \ test.php(3):com-&gt;运行('computer.exe')#1 {main}抛出E:\ Localhost \ root \ test.php在第3行
我感谢亲爱的朋友们的帮助&lt; 3
答案 0 :(得分:0)
你可以尝试:
<?php
$shell = new COM("WScript.Shell");
$shell->Run("explorer.exe ,");
$shell = null; ?>
当我们添加&#34;,&#34;它打开我的电脑。