icinga-powershell-framework/lib/core/icingaagent/getters/Get-IcingaNetbiosName.psm1
2020-03-10 17:01:43 +01:00

6 lines
125 B
PowerShell

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