23
Mar
Quand vous managez votre infrastructure VMware à partir d’un vCenter, vous pouvez lister en PowerCli les ESXIs en « Maintenance Mode » et connaitre l’utilisateur qui a fait cette action en lancant la commande PowerCli noté ci-dessous.
Si vous voulez filtrer les evenements des Esxis sur une période reduite, vous pouvez ajouter l’option « -Start » à la cmdlet Get-VIEvent. le format de la date doit etre dd/mm/yyyy ou mm/dd/yyyy
1 2 3 4 5 6 7 8 9 10 11 12 |
Get-VMHost | where{$_.ConnectionState -eq "Maintenance"} | Get-VIEvent -Start 23/03/2022 | where{ $_.FullFormattedMessage -match "Task: Enter maintenance mode"} | select @{N='Server';E={$_.Host.NAME}},USERNAME,CreatedTime Server UserName CreatedTime myEsxi monUser 23/03/2022 20:17:03 |
Voici également deux autres solutions posté par LucD sur le forum « VMWare Communities »
Solution 1 :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Get-VMHost | where{$_.ConnectionState -eq 'Maintenance'} | Select Name, @{N='Date';E={ $script:maint = Get-VIEvent -Entity $_ -MaxSamples ([int]::MaxValue) | where{$_ -is [VMware.Vim.EnteredMaintenanceModeEvent]} | Sort-Object -Property CreatedTime -Descending | Select -First 1 $script:maint.CreatedTime }}, @{N='User';E={$script:maint.UserName}} |
Solution 2 :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
Connect-viserver -Server (Get-Content D:\Scripts\vCList.txt) > $null $report = Foreach ($vc in $global:DefaultVIServers) { $mmTab = @{} Get-VMHost -Server $vc | % { $mmTab.Add($_.Name, $_.ConnectionState) } $start = (Get-Date).AddDays(-2) $mmEvents = Get-VIEvent -Start $start -MaxSamples ([int]::MaxValue) | where {$_ -is [VMware.Vim.TaskEvent] -and $_.Info.DescriptionId -eq "HostSystem.enterMaintenanceMode"} | Group-Object -Property {$_.Hodst.Name} | ForEach-Object -Process { $_.Group | Sort-Object -Property CreatedTime | ForEach-Object -Process { New-Object PSObject -Property @{ HostName = $_.Host.Name CreatedTime = $_.CreatedTime User = $_.UserName CurrentState = $mmTab[$_.Host.Name] } } } $mmNoEvents = $mmTab.GetEnumerator() | where {$mmEvents.HostName -notcontains $_.Name} | ForEach-Object -Process { New-Object psobject -Property { HostName = $_.Name CreatedTime = '' User = '' CurrentState = $_.Value } } $mmEvents + $mmNoEvents } $report | Export-Csv D:\Scripts\List-vC-Evts-Hosts-in-MM.csv |
A lire :