Direct Inward Dialing: +1 408 916 9892
A system administrator would want to ensure that only authenticated users are logging into the organization's network. The following is a comparison between the methods of obtaining the AD computer a user last logged into details using Windows PowerShell and ADAudit Plus:
$Computers = Get-ADComputer -Filter {(enabled -eq "true") -and (OperatingSystem -Like "*XP*")} | Select-Object -ExpandProperty Name $output=@() ForEach($PSItem in $Computers) { $User = Get-CimInstance Win32_ComputerSystem -ComputerName $PSItem | Select-Object -ExpandProperty UserName $Obj = New-Object -TypeName PSObject -Property @{ "Computer" = $PSItem "User" = $User } $output+=$Obj } $output
Screenshots:
Following are the limitations to obtain an AD user's last logon into any computer report using native tools like Windows PowerShell:
ADAudit Plus, on the other hand, will seamlessly generate a report to show a user's last logon on any computer in a simple and intuitively designed UI, at the click of a button.