icinga-powershell-framework/lib/core/icingaagent/getters/Get-IcingaAgentVersion.psm1

7 lines
120 B
PowerShell
Raw Normal View History

2019-09-29 12:25:40 -04:00
function Get-IcingaAgentVersion()
{
$IcingaAgent = Get-IcingaAgentInstallation;
return $IcingaAgent.Version;
}