C # obtain System Version Information

Source: Internet
Author: User

Directly paste the Code:
Public class OSInfoMation
{
Public static string OSBit ()
{
Try
{
ConnectionOptions oConn = new ConnectionOptions ();
System. Management. ManagementScope managementScope = new System. Management. ManagementScope ("\\\\ localhost", oConn );
System. Management. ObjectQuery objectQuery = new System. Management. ObjectQuery ("select AddressWidth from Win32_Processor ");
ManagementObjectSearcher moSearcher = new ManagementObjectSearcher (managementScope, objectQuery );
ManagementObjectCollection moReturnCollection = null;
String addressWidth = null;
MoReturnCollection = moSearcher. Get ();
Foreach (ManagementObject oReturn in moReturnCollection)
{
AddressWidth = oReturn ["AddressWidth"]. ToString ();
} // Www.heatpress123.net
Return addressWidth;
}
Catch
{
Return "Get error ";
}
 
}
 
Public static string GetOsVersion ()
{
String osBitString = OSBit ();
String osVersionString = Environment. OSVersion. ToString ();
Return string. Format (@ "system: {0 }. Bits: {1} ", osVersionString, osBitString );
}
}
Call:
 
Static void Main (string [] args)
{
Console. WriteLine (OSInfoMation. GetOsVersion ());
Console. ReadLine ();
}
 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.