icinga-powershell-framework/lib/core/icingaagent/getters/Get-IcingaNetbiosName.psm1
2020-07-27 11:45:02 +02:00

6 lines
140 B
PowerShell

function Get-IcingaNetbiosName()
{
$ComputerData = Get-IcingaWindowsInformation Win32_ComputerSystem;
return $ComputerData.Name;
}