This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ActiveRoles CmdLets NOT FREE - just sayin