ajout fichier stop.php

This commit is contained in:
jbousquie 2016-12-08 15:32:15 +01:00
parent cfe3507e9c
commit ce0ef1875e

View File

@ -0,0 +1,8 @@
<?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);
?>