Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save discoposse/492475 to your computer and use it in GitHub Desktop.
Save discoposse/492475 to your computer and use it in GitHub Desktop.
# Requires ActiveRoles CmdLets from Quest Software (They're free and awesome) - http://www.quest.com/powershell/activeroles-server.aspx
Get-QADComputer -searchroot "OU=yourcomputerOUname,dc=yourdomain,dc=com" -SizeLimit 0 |
ForEach-Object {
$hostname = $_.name
$serialnumber = (Get-WMIObject Win32_BIOS -computer $hostname -ErrorAction SilentlyContinue).SerialNumber
if (-not $serialnumber) {
Add-Content d:\logfiles\offlinehosts.txt "$hostname is in offline"
}
else {
Write-Host "$hostname,$serialnumber" # output to screen
Add-Content d:\logfiles\serialnumberlist.txt "$hostname,$serialnumber"
}
}
@amntnmn7
Copy link

ActiveRoles CmdLets NOT FREE - just sayin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment