Can I get Full computer name using powershell?
Clash Royale CLAN TAG#URR8PPP
Possible duplicate of Powershell: Get FQDN Hostname
– Rogerson Nazário
29 mins ago
@Paxz I want Full Computer Name from the system properties. I don't want device name or FQDN or Computer name or ComputerName+FQDN
– Akhil Teej
15 mins ago
@RogersonNazário No, I'm searching for Full Computer Name. not ComputerName+FQDN
– Akhil Teej
14 mins ago
Well it seems Full Computer Name is the FQDN... (superuser.com/questions/640046/…). So really a duplicate of stackoverflow.com/questions/12268885/…
– Paxz
5 mins ago
Can I get Full computer name using powershell?
My system has different full computer name. But I got answers like computername+domainName. I want only "Full computer name" in the properties.
Possible duplicate of Powershell: Get FQDN Hostname
– Rogerson Nazário
29 mins ago
@Paxz I want Full Computer Name from the system properties. I don't want device name or FQDN or Computer name or ComputerName+FQDN
– Akhil Teej
15 mins ago
@RogersonNazário No, I'm searching for Full Computer Name. not ComputerName+FQDN
– Akhil Teej
14 mins ago
Well it seems Full Computer Name is the FQDN... (superuser.com/questions/640046/…). So really a duplicate of stackoverflow.com/questions/12268885/…
– Paxz
5 mins ago
1 Answer
1
http://blog.riccardocelesti.it/find-computer-name-and-domain-using-powershell/
Use (Get-WmiObject Win32_ComputerSystem).Name
.
(Get-WmiObject Win32_ComputerSystem).Name
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Well what do you want? The FQDN? Only the Device Name?
– Paxz
30 mins ago