ContainerInfo/Get-NavContainerOsVersion.ps1
<#
.Synopsis Get the OS Version for a NAV/BC Container or a NAV/BC Container image .Description Returns the version of the WindowsServerCore image used to build the Container or ContainerImage .Parameter containerOrImageName Name of the container or container image for which you want to get the OS Version .Example Get-NavContainerOsVersion -containerOrImageName navserver .Example Get-NavContainerOsVersion -containerOrImageName microsoft/dynamics-nav:2017 #> function Get-NavContainerOsVersion { [CmdletBinding()] Param ( [Parameter(Mandatory=$true)] [string] $containerOrImageName ) Process { $inspect = docker inspect $containerOrImageName | ConvertFrom-Json return "$($inspect.Config.Labels.osversion)" } } Set-Alias -Name Get-BCContainerOsVersion -Value Get-NavContainerOsVersion Export-ModuleMember -Function Get-NavContainerOsVersion -Alias Get-BCContainerOsVersion |