如何通过 CMD 或 PowerShell 了解笔记本电脑中的蓝牙版本

如何通过 CMD 或 PowerShell 了解笔记本电脑中的蓝牙版本

作为这个答案,我知道如何找到我的内置蓝牙设备。但我们能否仅仅通过命令或者电源外壳知道这些信息吗?

答案1

尝试...

# Very basic stuff
($SysInfo = systeminfo) -match 'bluetooth'

# get all NIC details
(Get-NetAdapter | Select-Object -Property *) -match 'bluetooth'

MacAddress                                       : A4-34-D9-71-B3-DE
Status                                           : Disconnected
LinkSpeed                                        : 3 Mbps
MediaType                                        : 802.3
PhysicalMediaType                                : BlueTooth
AdminStatus                                      : Up
MediaConnectionState                             : Disconnected
DriverInformation                                : Driver Date 2006-06-21 Version 10.0.17134.1 NDIS 6.30
DriverFileName                                   : bthpan.sys
NdisVersion                                      : 6.30
...

* 已更新 - 根据 OP 上次请求 *

是的,但是让我们看看是否可以做得更好。

查看此模块...

设备管理 PowerShell Cmdlets 示例 - 简介“blogs.technet.microsoft.com/wincat/2012/09/06/device-management-powershell-cmdlets-sample-an-introduction”

“gallery.technet.microsoft.com/Device-Management-7fad2388”

Import-Module -Name DeviceManagement
(Get-Device | Select-Object Name,DriverVersion,DriverProvider,DriverDescription) -match 'bluetooth'

# Results

Name                                      DriverVersion DriverProvider     DriverDescription                        
----                                      ------------- --------------     -----------------                        
Intel(R) Wireless Bluetooth(R)            19.71.0.2     Intel Corporation  Intel(R) Wireless Bluetooth(R)           
...          
Bluetooth LE Device                      
Bluetooth Device (RFCOMM Protocol TDI)    10.0.17134.1  Microsoft          Bluetooth Device (RFCOMM Protocol TDI


(Get-Driver | Select-Object *) -match 'bluetooth'

# Results

...

Description      : Bluetooth Device (Personal Area Network)
ManufacturerName : Microsoft
ProviderName     : Microsoft
DriverDate       : 20-Jun-06 17:00:00
DriverVersion    : 10.0.17134
...

Description      : Standard Bluetooth Modem
ManufacturerName : Standard Cell Phones
ProviderName     : Microsoft
DriverDate       : 20-Jun-06 17:00:00
DriverVersion    : 10.0.17134

Description      : Edimax Wi-Fi N150 Bluetooth4.0 USB Adapter
ManufacturerName : Edimax Technology Co., Ltd.
ProviderName     : Microsoft
DriverDate       : 25-Oct-16 17:00:00
DriverVersion    : 1030.11.503

Description      : 802.11g MiniUSB 2.0 Wireless Bluetooth Combo
ManufacturerName : Ralink Technology Corp.
ProviderName     : Microsoft
DriverDate       : 01-Oct-11 17:00:00
DriverVersion    : 4.0.10

相关内容