Category Archives: powershell

Getting the Computer Name, Domain, more using powershell

Getting the Computer Name, Domain, more using powershell a. gc env:Computername    $computer = get-content env:ComputerNameUse the WMI objects to get computer name and other details$Computer = Get-WmiObject -Class Win32_ComputerSystem -ComputerName $computer -namespace “rootCIMV2”for Machine domain: $computer.Domain# Print Computer Name  “Computer Name is: {0}” -f $Computer.Name  If you want to get… Read more »