Voici un petit script pour récupérer le numero de serie d'une machine distante :
Get-WmiObject -Class Win32_BIOS -NameSpace "root\CIMV2" -ComputerName NOM_PC_DISTANT | format-list SerialNumber
a executer en administrateur du domaine
Démarrer un service
Start-Service "remoteregistry"
Arreter un service
stop-Service "remoteregistry"
Redémarrer un service
Restart-Service "remoteregistry"
Restart-Service spooler -force
Voir l'état d'un service sur un poste distant
Get-WmiObject -computer NOM_PC_DISTANT Win32_Service -Filter "Name='remoteregistry'" | Stop-Service
Démarrer un service sur un poste distant
(Get-WmiObject -computer NOM_PC_DISTANT Win32_Service -Filter "Name='remoteregistry'").InvokeMethod("StopService",$null)
Aucun commentaire:
Enregistrer un commentaire