Ситуация такова: через require_once присоединяю файл, содержащий строку <?php passthru('...');?>, где в кавычках находится команда. Выполняется под windows.
И вот, выполняется только команда shutdown -s. Другие не выполняются (например, mspaint). В чем ошибка?
exec() is for calling a system command, and perhaps dealing with the output yourself.
system() is for executing a system command and immediately displaying the output - presumably text.
passthru() is for executing a system command which you wish the raw return from - presumably something binary.