Powershell: Get FQDN Hostname

后端 未结 15 1682
长发绾君心
长发绾君心 2021-01-30 12:24

I want to retrieve the FQDN name of windows server via powershell script. I have found 2 solution so far:

$server =  Invoke-Command -ScriptBlock {hostname}
         


        
15条回答
  •  滥情空心
    2021-01-30 13:16

    How about this

    $FQDN=[System.Net.Dns]::GetHostByName($VM).Hostname.Split('.')
    [int]$i = 1
    [int]$x = 0
    [string]$Domain = $null
    do {
        $x = $i-$FQDN.Count
        $Domain = $Domain+$FQDN[$x]+"."
        $i = $i + 1
    } until ( $i -eq $FQDN.Count )
    $Domain = $Domain.TrimEnd(".")
    

提交回复
热议问题