Skip to content

Instantly share code, notes, and snippets.

@PartTimeLegend
Created March 25, 2021 09:35
Show Gist options
  • Select an option

  • Save PartTimeLegend/b8d316e6b83a93a9a254ea8f32a68d4b to your computer and use it in GitHub Desktop.

Select an option

Save PartTimeLegend/b8d316e6b83a93a9a254ea8f32a68d4b to your computer and use it in GitHub Desktop.
Find Windows Edition
switch ((Get-WmiObject -class Win32_OperatingSystem).Caption)
{
{$_.Contains("Home")} { Write-Output "Home" }
{$_.Contains("Business")} { Write-Output "Business" }
{$_.Contains("Enterprise")} { Write-Output "Enterprise" }
Default { "Unknown" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment