lib/core/icingaagent/getters/Get-IcingaNetbiosName.psm1

function Get-IcingaNetbiosName()
{
    $ComputerData = Get-IcingaWindowsInformation Win32_ComputerSystem;

    return $ComputerData.Name;
}