Device Manager is enabled through the Microsoft Management Console.
Because of this, you can just execute the msc file that is used for device
manager, in this case "devmgmt.msc". You can just create a new instance of
the Process class and pass "devmgmt.msc" as the program to execute:
// Show the device manager.
Process.Start("devmgmt.msc");