Zkusil jsem s VLC, jde mi s (jde o interní spustení, jednou na serveru ti ten .exe spustit nepujde /cesta) :
<?php
exec( '"C:\\Program Files\\VideoLAN\\VLC\\vlc.exe"' );
?>
<?php
exec( 'start "C:\\Program Files\\VideoLAN\\VLC\\vlc.exe" -I rc' );
//exec( 'start "C:\\Program Files\\VideoLAN\\VLC\\vlc.exe" -I rc' );
?>
<?php
exec('c:\WINDOWS\system32\cmd.exe /c START C:\Program Files\VideoLAN\VLC\vlc.bat');
// .bat ULOZENY VE SLOZCE
?>
<?php
$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run('"C:\\Program Files\\VideoLAN\\VLC\\"',7,false);
/*
* $WshShell = new COM("WScript.Shell");
* $oExec = $WshShell->Run("cmd", 7, false);
*/
?>
• Pres ten .txt jsi to zkousel jak ?<?php exec ( 'c:/WINDOWS/system32/cmd.exe /c "echo OK>c:/test.txt"' ); ?>