All Tags »
PowerShell »
Windows
Sorry, but there are no more tags available to filter with.
-
This is a pretty cool one liner that is of tremendous help. You can get the
serial number of most PCs via PowerShell remotely. This includes Dell service
tags.
Command:
Get-WMIObject -Class ''Win32_BIOS'' -Computer computername | select SerialNumber
Example:
Get-WMIObject –Class ...