Get some system info?
-
Hello to all, I want some system info to my C# application. 1) Hard disk serial no (Manufature serial no) 2) Mac Address 3) IP Address How can i get these all & use it in my application.
Divyang Mithaiwala
-
Hello to all, I want some system info to my C# application. 1) Hard disk serial no (Manufature serial no) 2) Mac Address 3) IP Address How can i get these all & use it in my application.
Divyang Mithaiwala
hi i have used only for IP address for that you can do following 1. Add using System.Net; 2. IPHostEntry ipHost = Dns.GetHostByName(Dns.GetHostName()); IPAddress [] ip = ipHost.AddressList; string ipaddress = ip[0].ToString();
-
Hello to all, I want some system info to my C# application. 1) Hard disk serial no (Manufature serial no) 2) Mac Address 3) IP Address How can i get these all & use it in my application.
Divyang Mithaiwala
Use the Environment class to retrieve information such as command line arguments, the exit code, environment variable settings, contents of the call stack, time since last system boot, and the version of the common language runtime. other than those mentioned above you can use the WMI Ahmad Shaban
-
Use the Environment class to retrieve information such as command line arguments, the exit code, environment variable settings, contents of the call stack, time since last system boot, and the version of the common language runtime. other than those mentioned above you can use the WMI Ahmad Shaban
Thanx Ahmad It is so usefull to me.
Divyang Mithaiwala
-
Hello to all, I want some system info to my C# application. 1) Hard disk serial no (Manufature serial no) 2) Mac Address 3) IP Address How can i get these all & use it in my application.
Divyang Mithaiwala
-
hi i have used only for IP address for that you can do following 1. Add using System.Net; 2. IPHostEntry ipHost = Dns.GetHostByName(Dns.GetHostName()); IPAddress [] ip = ipHost.AddressList; string ipaddress = ip[0].ToString();
Thanx Manish, It's work for me.
Divyang Mithaiwala System Engineer & Software Developer