I'm not surprised that you found a lot of activity there: the Wi-Fi interface is expectedly the primary network interface on my laptop ;-)
For now, I'm running with the Wi-Fi and Gbps Ethernet interfaces enabled, with powermanagement enabled, and with the Bluetooth interface disabled.
"devcon driverfiles" and "devcon drivernodes" do provide some information:
USB\VID_413C&PID_8156\6&28CCC288&0&3
Name: Dell Wireless 370 Bluetooth Mini-card
Driver installed from C:\Windows\INF\oem77.inf [BCBTUsbDriverInstallWin7]. 8 file(s) used by driver:
C:\Windows\system32\BcmBtRSupport.dll
C:\Windows\system32\BtwRSupportService.exe
C:\Windows\system32\drivers\bcbtums.sys
C:\Windows\system32\drivers\btwampfl.sys
C:\Windows\system32\DRIVERS\BTHUSB.SYS
C:\Windows\system32\DRIVERS\bthport.sys
C:\Windows\system32\fsquirt.exe
C:\Windows\system32\btwdi.dll
USB\VID_413C&PID_8156\6&28CCC288&0&3
Name: Dell Wireless 370 Bluetooth Mini-card
Driver node #0:
Inf file is C:\Windows\INF\bth.inf
Inf section is Bthusb
Driver description is Generic Bluetooth Adapter
Manufacturer name is GenericAdapter
Provider name is Microsoft
Driver date is 2006-06-21
Driver version is 6.3.9600.17673
Driver node rank is 16719874
Driver node flags are 0010A040
Inf is digitally signed
Driver node #1:
Inf file is C:\Windows\INF\bth.inf
Inf section is Bthusb
Driver description is Generic Bluetooth Adapter
Manufacturer name is GenericAdapter
Provider name is Microsoft
Driver date is 2006-06-21
Driver version is 6.3.9600.17673
Driver node rank is 16719873
Driver node flags are 0010A040
Inf is digitally signed
Driver node #2:
Inf file is C:\Windows\INF\oem77.inf
Inf section is BCBTUsbDriverInstallWin7
Driver description is Dell Wireless 370 Bluetooth Mini-card
Manufacturer name is Broadcom
Provider name is Broadcom Corporation
Driver date is 2013-10-18
Driver version is 12.0.0.8047
Driver node rank is 16711681
Driver node flags are 00042044
Inf is digitally signed
But neither gives the full details about all 8 driver files as Device Manager does.
A simple PowerShell script can do the trick, though:
param([string]$devicespec)
$devcon='C:\Program Files\Windows Kits\8.1\Tools\x86\devcon.exe'
$devcon_args=@('driverfiles',$devicespec)
$driverfiles=&$devcon$devcon_args
foreach($linein$driverfiles)
{
if($line-match'^(\S+)')
{
$device=$Matches[1]
$grab=$false
}
if($line-match'Name:\s+(.*)')
{
$name=$Matches[1]
}
if($line-match'\d+ file(s) used by driver:')
{
$grab=$true
}
if($grab)
{
if($line-match'^\s+(.*)')
{
if($line-notmatch'\d+ file(s) used by driver:')
{
$filename=$Matches[1]
$fileversion=(Get-Item$filename).VersionInfo.FileVersion
$obj=New-Object-TypeNamePSObject
Add-Member-InputObject$obj-MemberTypeNoteProperty-NameDevice-Value$device
Add-Member-InputObject$obj-MemberTypeNoteProperty-NameName-Value$name
Add-Member-InputObject$obj-MemberTypeNoteProperty-NameFullName-Value$filename
Add-Member-InputObject$obj-MemberTypeNoteProperty-NameFileVersion-Value$fileversion
$obj
}
}
else
{
$grab=$false
}
}
}
PS> .\DriverDetails.ps1 -devicespec 'USB\VID_413C&PID_8156' | format-table -Wrap
Device Name FullName FileVersion
USB\VID_413C&PID_8156\6&28CCC288&0&3 Dell Wireless 370 Bluetooth Mini-card C:\Windows\system32\BcmBtRSupport.dll 12.0.0.7600
USB\VID_413C&PID_8156\6&28CCC288&0&3 Dell Wireless 370 Bluetooth Mini-card C:\Windows\system32\BtwRSupportService.exe 12.0.0.8047
USB\VID_413C&PID_8156\6&28CCC288&0&3 Dell Wireless 370 Bluetooth Mini-card C:\Windows\system32\drivers\bcbtums.sys 12.0.0.8047
USB\VID_413C&PID_8156\6&28CCC288&0&3 Dell Wireless 370 Bluetooth Mini-card C:\Windows\system32\drivers\btwampfl.sys 12.0.0.7403
USB\VID_413C&PID_8156\6&28CCC288&0&3 Dell Wireless 370 Bluetooth Mini-card C:\Windows\system32\DRIVERS\BTHUSB.SYS 6.3.9600.16384 (win
blue_rtm.130821-162
3)
USB\VID_413C&PID_8156\6&28CCC288&0&3 Dell Wireless 370 Bluetooth Mini-card C:\Windows\system32\DRIVERS\bthport.sys 6.3.9600.16384 (win
blue_rtm.130821-162
3)
USB\VID_413C&PID_8156\6&28CCC288&0&3 Dell Wireless 370 Bluetooth Mini-card C:\Windows\system32\fsquirt.exe 6.3.9600.16384 (win
blue_rtm.130821-162
3)
USB\VID_413C&PID_8156\6&28CCC288&0&3 Dell Wireless 370 Bluetooth Mini-card C:\Windows\system32\btwdi.dll 12.0.0.7030
P.S. There's a DevCon.exe in c:/Windows that does nothing. Is it present on your machine too?