- Главная
- csr 4.0 bluetooth driver
- csr 4.0 bluetooth driver
Csr 4.0 Bluetooth Driver High Quality Direct
# Check if Bluetooth 4.0 LE is supported $leSupport = Get-PnpDeviceProperty -InstanceId $device.InstanceId -KeyName "83DA6326-97A6-4088-9453-A1923F573B29 6" -ErrorAction SilentlyContinue if ($leSupport.Data -eq $true) Write-Host "Bluetooth 4.0 LE Support: Yes" -ForegroundColor Green else Write-Host "Bluetooth 4.0 LE Support: Not detected" -ForegroundColor Red
# Get driver details $driver = Get-PnpDeviceProperty -InstanceId $device.InstanceId -KeyName "DEVPKEY_Device_DriverVersion" $driverDate = Get-PnpDeviceProperty -InstanceId $device.InstanceId -KeyName "DEVPKEY_Device_DriverDate" $manufacturer = Get-PnpDeviceProperty -InstanceId $device.InstanceId -KeyName "DEVPKEY_Device_Manufacturer" csr 4.0 bluetooth driver
foreach ($device in $csrDevices) Write-Host "`nFound: $($device.FriendlyName)" -ForegroundColor Green Write-Host "Status: $($device.Status)" -ForegroundColor Yellow # Check if Bluetooth 4
Write-Host "Driver Version: $($driver.Data)" Write-Host "Driver Date: $($driverDate.Data)" Write-Host "Manufacturer: $($manufacturer.Data)" csr 4.0 bluetooth driver
if (-not $csrDevices) Write-Host "No CSR Bluetooth adapter found." -ForegroundColor Red exit 1
$btService = Get-Service "bthserv" if ($btService.Status -ne "Running") Write-Host "Bluetooth Support Service is not running. Starting..." -ForegroundColor Yellow Start-Service -Name "bthserv"