简体   繁体   中英

PHP + winexe -> loads forever

I'm trying to list running services on a windows server via php. Therefore I'm using shell_exec with winexe.

My script:

$cmd = "winexe --interactive=0 --user='***' --password='***' //192.168.***.** \"net start\"";
$output = shell_exec($cmd); 
echo $output;

Unfortunately on execution the page loads forever with no result. The command works on the command-line (Debian).

Anyone an idea?

Thanks in advance.

Save $cmd with correct format into a new bash file. Set cmd value for call this file. Remember set execution perms to this file. Check if your apache user has perms for exec winexe

===

Try to launch

    cat </dev/null | winexe --interactive=0 --ostype=1 --user=...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM