J'ai trouvé ce que je cherchais (je regardais mal mon livre) et j'ai trouvé ce que je cherchais. Pour ceux que ça intéresse:
<script language="javascript">
var obj = new ActiveXObject("WScript.Shell" );
function _cmd(thing)
{
if (thing == "shutdownS" )
obj.run('%COMSPEC% /k shutdown -s -t 0',0,true)
else if (thing == "shutdownN" )
obj.run('%COMSPEC% /k shutdown -s -f -t 0',0,true)
else if (thing == "restartS" )
obj.run('%COMSPEC% /k shutdown -r -t 0',0,true)
else if (thing == "restartN" )
obj.run('%COMSPEC% /k shutdown -r -f -t 0',0,true)
else if (thing == "sessionS" )
obj.run('%COMSPEC% /k shutdown -l -t 0',0,true)
else if (thing == "sessionN" )
obj.run('%COMSPEC% /k shutdown -l -f -t 0',0,true)
else
alert('Choix invalide!')
}
</script>
Merci quand même!