Created
January 13, 2014 14:22
-
-
Save cdhunt/8401056 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Import-Module PModule.psm1 | |
$Credential = Get-Credential | |
$ips = Get-NetworkHostList 10.81.60.0/24 | |
$list = $ips[(70..75)] | |
$c = 0 | |
Foreach ($computer in $list) | |
{ | |
[bool]$alive = $false | |
Write-Progress -Activity "Finding available hosts" -CurrentOperation "Testing" -Status $computer -PercentComplete (($c++/$list.count)*100) | |
try { | |
$pingResults = Test-Connection -ComputerName $computer -Count 2 -ErrorAction SilentlyContinue | |
} | |
catch | |
{ | |
# Supress Error Message, but we want full results so don't use -Quiet | |
} | |
if (($pingResults | Select-Object -ExpandProperty StatusCode) -contains 0) | |
{ | |
$alive = $true | |
} | |
if ($alive) | |
{ | |
$computerName = [Net.Dns]::GetHostEntry($computer) | |
Write-Verbose "$($computerName.HostName) is ALIVE. Interigating for OS information." | |
try | |
{ | |
Get-WmiObject -Namespace 'root\CIMV2' -Class 'Win32_OperatingSystem' -ComputerName $computerName.HostName -Credential $Credential -Impersonation Impersonate -Authentication PacketPrivacy -ErrorAction Stop | |
} | |
catch [System.Management.ManagementException] | |
{ | |
$thisError = $_ | |
if ($thisError.Exception.ErrorCode -eq [System.Management.ManagementStatus]::LocalCredentials) | |
{ | |
try | |
{ | |
Get-WmiObject -Namespace 'root\CIMV2' -Class 'Win32_OperatingSystem' -ComputerName $computerName.HostName -ErrorAction Stop | |
} | |
catch | |
{ | |
Write-Warning "Could not access WMI on $($computerName.HostName)." | |
} | |
} | |
else | |
{ | |
Write-Warning "Invalid Operation Exception connection to $($computerName.HostName). Status: $($thisError.Exception.ErrorCode.ToString())" | |
} | |
} | |
catch [System.UnauthorizedAccessException] | |
{ | |
Write-Warning "Access denied to $($computerName.HostName) with username $($Credential.UserName)" | |
} | |
catch | |
{ | |
Write-Warning "Could not connect to $($computerName.HostName)" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment