Skip to content

Instantly share code, notes, and snippets.

@sebingel
Created February 2, 2016 21:10
Show Gist options
  • Save sebingel/29eb0dbc0802d3b04bdd to your computer and use it in GitHub Desktop.
Save sebingel/29eb0dbc0802d3b04bdd to your computer and use it in GitHub Desktop.
Gets the friendly OS Name in C#
string name = (from x in new ManagementObjectSearcher("SELECT Caption FROM Win32_OperatingSystem").Get().Cast<ManagementObject>()
select x.GetPropertyValue("Caption")).FirstOrDefault();
System.Console.WriteLine(name != null ? name.ToString() : "Unknown");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment