How get list of local network computers?

You will need to use the System.DirectoryServices namespace and try the following: DirectoryEntry root = new DirectoryEntry(“WinNT:”); foreach (DirectoryEntry computers in root.Children) { foreach (DirectoryEntry computer in computers.Children) { if (computer.Name != “Schema”) { textBox1.Text += computer.Name + “\r\n”; } } } It worked for me.

A call to SSPI failed, see inner exception – The Local Security Authority cannot be contacted

This means the other side is using another version of TLS and you are using an older version. Set up security attribute to TLS12 before making the connection. This is a widely known problem, as many providers start using TLS12 (e.g. paypal,amazon and so on). ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

Bind address and MySQL server [closed]

The address you specify in bind tells MySQL where to listen. 0.0.0.0 is a special address, which means “bind to every available network”. Only client software which is able to open a connection to the server using the same address that is specified in the ‘bind’ option will be allowed to connect. Some examples: If … Read more

How can I access netstat-like Ethernet statistics from a Windows program

The WMI will provide those readings: SELECT * FROM Win32_PerfFormattedData_Tcpip_IP SELECT * FROM Win32_PerfFormattedData_Tcpip_TCP SELECT * FROM Win32_PerfFormattedData_Tcpip_UDP SELECT * FROM Win32_PerfFormattedData_Tcpip_ICMP SELECT * FROM Win32_PerfFormattedData_Tcpip_Networkinterface These classes are available on Windows XP or newer. You may have to resign to the matching “Win32_PerfRawData” classes on Windows 2000, and do a little bit more of … Read more