icinga-powershell-framework/lib/core/framework/Get-IcingaPowerShellModuleVersion.psm1

15 lines
252 B
PowerShell
Raw Normal View History

function Get-IcingaPowerShellModuleVersion()
{
param(
$ModuleName
);
$ModuleDetails = Get-Module -Name $ModuleName;
if ($null -eq $ModuleDetails) {
return $null;
}
return $ModuleDetails.PrivateData.Version;
}