PowerShell - Get Remote users from list of Servers. (Get-Content and Test-Connection)
- Jon Boyette
- Jan 7, 2022
- 1 min read
get-content C:\temp\yourtextfile.txt | foreach-object {
$Comp = $_
if (test-connection -computername $Comp -count 1 -quiet)
{
([ADSI]"WinNT://$comp").Children | ?{$_.SchemaClassName -eq 'user' } | %{
$groups = $_.Groups() | %{$_.GetType().InvokeMember("Name", 'GetProperty', $null, $_, $null)}
$_ | Select @{n='Computername';e={$comp}},
@{n='UserName';e={$_.Name}},
@{n='Active';e={if($_.PasswordAge -like 0){$false} else{$true}}},
@{n='LastLogin';e={$_.LastLogin}},
@{n='Memberof';e={$groups -join ';'}}
}
} Else {Write-Warning "Server '$Comp' is Unreachable hence Could not fetch data"}
}|Export-Csv -NoTypeInformation c:\temp\RemoteLocalUsers.csv
Comments