PowerShell 7.5.4 released

Tout est ici : Release v7.5.4 Release of PowerShell · PowerShell/PowerShell · GitHub

Powershell 7.5.3

Le 10/09 une nouvelle version de Powershell est disponible

Mise à jour des ESX en mode ligne de commande

Tout est détaillé dans la KB suivante : https://knowledge.broadcom.com/external/article/343425/upgrade-a-host-with-offline-zip-bundle.html

Upgrade Path vCenter

Toute les informations sur ce lien : Product Interoperability Matrix

Upgrade Path ESXi

Toute les informations sur ce lien : Product Interoperability Matrix

Security Advisories VMSA-2025-0013

Plus d’infos sur le lien suivant : VMSA-2025-0013: VMware ESXi, Workstation, Fusion, and Tools updates address multiple vulnerabilities (CVE-2025-41236, CVE-2025-41237, CVE-2025-41238, CVE-2025-41239)

Obtenez toutes les infos sur les vmk avec vMotion

Afin de lister / exporter les informations paramétrées sur vos hôtes ESXi (Port réseau, IP, Masque), vous pouvez utiliser : Get-VMHost | Get-VMHostNetwork | Select Hostname, VMKernelGateway -ExpandProperty VirtualNic |` Where {$_.vMotionEnabled} | Select Hostname, PortGroupName, IP, SubnetMask

Unable to apply DRS resource settings on host

2 Kbs peuvent être utilisé :

Désactivation SSH via Powercli

Get-VMHost monex | Get-VMHostService | Where Key -EQ « TSM-SSH » | Stop-VMHostService -Confirm:$False

Activation SSH via Powercli

Get-VMHost Monexi| Get-VMHostService | Where Key -EQ « TSM-SSH » | Start-VMHostService