views:

24

answers:

1

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.

+2  A: 

Can you use:

Process.Start("devmgmt.msc");

for the *_onclick method ?

RobertPitt