POWERSHELL
Trouver les numéros de Build de votre OS Windows 10
function Get-W10-Info { $path = 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion' Get-ItemProperty -Path $path -Name CurrentBuild, UBR, ReleaseID, CompositionEditionID | Select-Object -Property CurrentBuild, UBR, ReleaseID, CompositionEditionID...