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

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

    return $ComputerData.Name;
}