2016-12-08 15:32:15 +01:00

8 lines
196 B
PHP

<?php
// Ce script lance un shutdown (ou restart) sur une machine
$host = $_POST['host'];
$action = $_POST['act'];
$command = 'shutdown /m \\\\' .$host.' /'.$action.' /f /t 0';
exec($command);
?>