Comment savoir quelle version du Bluetooth a mon PC ?

Réponses rédigées par Antoine
Dernière mise à jour : 2020-05-20 08:43:45
Thèmes : windows - bluetooth - pc
Question

Comment puis-je savoir quelle version du Bluetooth a mon PC, Bluetooth 1, 2, 3, 4, 5 etc ?

Réponse

Pour identifier la version du Bluetooth dont est équipé votre PC, procédez comme suit :

  • Activez le bluetooth de votre PC.
  • Effectuez un clic-droit sur le bouton Démarrer.
  • Sélectionnez Gestionnaire de périphériques.
  • Dépliez la section Bluetooth.
  • Effectuez un clic droit, puis Propriétés sur votre adaptateur bluetooth.
  • Allez sur l'onglet Avancé.
  • Une référence LMP est notée en regard de Version du microprogramme (firmware).

Table de correspondance LMP / Version Bluetooth :

LMP 11 – Bluetooth 5.2 LMP 10 – Bluetooth 5.1 LMP 9.x – Bluetooth 5.0 LMP 8.x – Bluetooth 4.2 LMP 7.x – Bluetooth 4.1 LMP 6.x – Bluetooth 4.0 LMP 5.x – Bluetooth 3.0 + HS LMP 4.x – Bluetooth 2.1 + EDR LMP 3.x – Bluetooth 2.0 + EDR LMP 2.x – Bluetooth 1.2 LMP 1.x – Bluetooth 1.1 LMP 0.x – Bluetooth 1.0b

Réponse

Vous pouvez utiliser PowerShell pour identifier la version du Bluetooth de votre PC Windows :

  • Maintenez la touche Windows et appuyez sur R.
  • Saisissez powershell et appuyez sur OK.
  • Collez le code ci-après et appuyez sur la touche Entrée.
  • Windows affiche la version du Bluetooth.

Code PowerShell pour savoir quelle est la version du Bluetooth d'un PC Windows :

Get-PnpDevice -Class 'Bluetooth' |
Select-Object FriendlyName, InstanceID -PipelineVariable BTDevice |
Foreach-Object InstanceId |
Foreach-Object { Get-PnpDeviceProperty -InstanceId $_ } |
Where-Object { $_.KeyName -eq '{A92F26CA-EDA7-4B1D-9DB2-27B68AA5A2EB} 4' -Or $_.KeyName -eq 'DEVPKEY_Bluetooth_RadioLmpVersion' } |
Select-Object @{ l='Description'; e={ $BTDevice.FriendlyName } },
    @{ l='InstanceId'; e={ $BTDevice.InstanceId } },
    @{ l='Version'; e={ switch ($_.Data) { 0 {'1.0b'} 1 {'1.1'} 2 {'1.2'} 3 {'2.0 + EDR'} 4 {'2.1 + EDR'} 5 {'3.0 + HS'} 6 {'4.0'} 7 {'4.1'} 8 {'4.2'} 9 {'5.0'} 10 {'5.1'} 11 {'5.2'} } }
}

Remarque : Au moment où je publie ce code, la version la plus élevée du Bluetooth est 5.2 (LMP11). Il vous faudra ainsi à l'avenir compléter la dernière ligne de code : 12 {'5.3'}, etc.