Using C#, I am creating a simple application for retrieving the machine information using the C# code itself.
So far, I have found the following libraries to help getting certain information:
- OS, Username, Machine name (https://msdn.microsoft.com/en-us/library/system.environment.aspx)
- Network information like the IP Address, DNS (https://msdn.microsoft.com/en-us/library/system.net.dns.aspx)
I still want to figure out how to retrieve the following information:
- Temperature of the CPU
- Battery power of the laptop / mobile device
Kindly share whether they can be achieved using existing .Net libraries or not and how, else please share whether an additional stuff like software or hardware is required.
Thanks.