I have used the following line to get a list of resources so I can identify the serial ports on a machine and have a user select the appropriate port.
ResourceManager.GetLocalManager().ParseResource(resource,out interfaceType,out interfaceNumber,out resourceClass,out expandedName,out userAlias);
This works fine on my desktop installation but fails to work when I run the code on my laptop. In the latter case, the userAlias is an empty string.
Is there something that needs to be turned/initialised, that I have overlooked?