Sorry, but this page is not yet available in english.Clic here to send a translate request
WinEXE - Manipuler les services Windows
Introduction
Pour interagir avec les services Windows, nous allons utiliser la commande "net"
En pratique
Arrêter un service
winexe -U HOME/Administrator%Pass123 //192.168.1.125 "net stop Nom_Du_Service"
Démarrer un service
winexe -U HOME/Administrator%Pass123 //192.168.1.125 "net start Nom_Du_Service"
Relancer un service
winexe -U HOME/Administrator%Pass123 //192.168.1.125 "cmd /C net stop Nom_Du_Service && net start Nom_Du_Service"
Obtenir la liste des services démarrés
winexe -U HOME/Administrator%Pass123 //192.168.1.125 "net start"
Retour