So it is my fault then!!!
Further down the list in properties is 'Display name' which of course shows Micronas USB Headset. As you suggest, a possible quick fix is simply to amend the registry to change the name to Sennheiser...is this possible?
Yes, we can edit the registry but disadvantage: Next time Windows reinstalls the device it overwrites the registry with the Micronas device name. (Tho, Windows wouldn't likely reinstall it unless your first uninstalled it for whatever reason.) But before the registry route, let's try one more crack at your driver's .inf files. I think the steps below should be simple / not-to-much work to do
Step 1. See if all your driver .inf files are being stored in C:\Windows directory
The registry key DevicePath tells Windows Plug and Play (PnP) where to search for .inf files. DevicePath is a semi-colon ; separated list of directories
Start->Run , enter
regedit . Navigate to
HKEY-LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion
Look for
DevicePath
Does each directory in DevicePath start with either %SytstemRoot% or C:\Windows ??
If, yes, then our search through C:\Windows should (I hope) find what we want
Fyi.. %SystemRoot% is a Windows' "variable". This variable equals the string value: C:\Windows )
In my example below, all directories in DevicePath (highlighted in yellow) start %SystemRoot% therefore all my PnP driver .inf files are being stored in different subdirectories all within directory C:\Windows . (Click image for full size)
Step 2. How to search through all the .inf files in directory C:\Windows
Download and open the file strings.zip . Unzip it. Put file strings.exe in directory C:\Windows\system32
AFTER you put strings.exe in the C:\windows\system32 directory, open an a Elevated commmand prompt window
Copy/paste the command below into the window. Ignore any findstr: line too long messages you might see. The command creates file micronas.txt on your desktop. Attach it to your next post
Code:
strings -a -s C:\Windows\*.inf | findstr /i /c:micronas > "%userprofile%\desktop\micronas.txt"
Hopefully, i'll see what i'm looking for in this file! Else, we can do the registry next
/* EDIT */
Step3: One more step?
Uggh. Windows! I see there's something a bit different for "unattended" installs. Using Vista advanced search, check Hidden files and folders option and search for
wdma_usb.inf (the file we can see in your registry snapshot). But search your entire
C: drive for this file!
And/or maybe best of all do the command search below (tho will take a bit as it will search through all .inf files on your C drive. Take a bit of time at least would be thorough! Then also attach the additional file
micronas2.txt
Code:
strings -a -s C:\*.inf | findstr /i /c:micronas > "%userprofile%\desktop\micronas2.txt"