Is there a way to add a link to the Device Manager in a WPF application? I mean, a hyperlink that once clicked opens the Device Manager window. Thank you very much.
Can you use:
Process.Start("devmgmt.msc");
for the *_onclick method ?