07
Avr
Collection d’outils PowerShell indispensables pour l’administration Microsoft
Comments
Lire en Powershell les Events d’un serveur Local ou Distant
Pour obtenir les Events système en Powershell
1 2 3 4 5 6 7 8 |
. Clear-Host $Machine = "Srv1" Get-Eventlog -Logname System -ComputerName $Machine -newest 1000 | Where-Object {$_.EventID -lt '1000'} | Format-Table . |
Pour obtenir les Events concernant les applications
1 2 3 4 5 6 7 8 9 |
. Clear-Host $Machine = "Srv1" Get-Eventlog -Logname Application -ComputerName $Machine -newest 1000 | Where-Object {$_.EventID -lt '1000'} | Format-Table . |
Pour obtenir les Events concernant une application spécifique
1 2 3 4 5 6 7 8 9 |
. Clear-Host $Machine = "Srv1" Get-Eventlog -Logname Application -ComputerName $Machine -Source "VMUpgradeHelper" -newest 1000 | Where-Object {$_.EventID -lt '1000'} | Format-Table . |