I am trying to write an wpf app that allows me to browse a list of servers/computers on a network (AD or Workgroup).
In the past I have opened explorer type windows for folder or directory browsing using code such as
System.Diagnostics.Process.Start("Explorer.exe");
But in this instance I don’t need the user to select a folder or file just view the names of the machines on the network.
Can anyone suggest any .net classes or namespaces that support this type of functionality? I’ve done some cursory reading on WMI and it looks as if the System.Management namespace may be the route to take. Can anyone provide me with some suggestions to narrow in on what methods I may want to look at from this namespace?
-Cheers
C#: you can use Gong Solutions Shell Library
using System.Collections;
using System.Collections.Generic;
using GongSolutions.Shell;
using GongSolutions.Shell.Interop;