Search code examples
c#wpfdevice-manager

Link to the Device Manager


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.


Solution

  • Can you use:

    Process.Start("devmgmt.msc");
    

    for the *_onclick method ?