How Can We Help?

Categories

Get Serial Number of a Remote Computer with PowerShell

You are here:
< Back

The following command get a serial number of the current computer:

Get-WMIObject Win32_Bios | Select-Object SerialNumber

You can pass the remote computer name with the paramater –ComputerName and get serial number of remote machine.

Get-WMIObject Win32_Bios -ComputerName 'remote-svr1' | Select-Object SerialNumber