Check Serial number on all your disks

				
					$laptopname = Read-Host -Prompt "which laptop"
Do
{
IF (Test-Connection -BufferSize 32 -Count 1 -ComputerName $laptopname -Quiet) {

Get-WMIObject -Class Win32_physicalmedia -ComputerName $laptopname | Format-List PSComputername, SerialNumber
Get-WMIObject -Class Win32_DiskDrive -ComputerName $laptopname |Format-List model, SerialNumber
} Else {
Write-Host "laptop "$laptopname "is not on the network"
}
$laptopname = Read-Host -Prompt "next laptop or 0 to exit"
} until ($laptopname -eq 0)
				
			

More articles

Dynamic botnet filter

We can utilize dynamic botnet filters on firewalls and specific services can be called upon dynamically. On Github there are several

Read More »