Search code examples
.netpowershell

How do I get the localhost name in PowerShell?


How do I get the localhost (machine) name in PowerShell? I am using PowerShell 1.0.


Solution

  • You can just use the .NET Framework method:

    [System.Net.Dns]::GetHostName()

    also

    $env:COMPUTERNAME