Export-LastLogonTime.ps1
<#PSScriptInfo .VERSION 1.5 .GUID efd8653f-3a23-4d78-a7d1-b766da9015bf .AUTHOR Chris Carter .COMPANYNAME .COPYRIGHT 2016 Chris Carter .TAGS ActiveDirectory, LastLogonTime .LICENSEURI http://creativecommons.org/licenses/by-sa/4.0/ .PROJECTURI https://gallery.technet.microsoft.com/Export-Last-Logon-Times-4fcb07cb .ICONURI .EXTERNALMODULEDEPENDENCIES ActiveDirectory .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES The Server parameter was added to specify which Domain Controller(s) to use when checking the logon times. The switch parameters NoClobber and Force were added for improved control over file overwrites. Help data was updated with new information, and minor errors corrected. #> <# .SYNOPSIS This command will export the account name and the last logon time of the users in the specified OU to a .csv file format at the specified destination. .DESCRIPTION Export-LastLogonTime takes the OU name or distinguished name specified in the OU parameter and retrieves its users' account names and last logon times. Then it exports a .csv file to the destination given in the Destination parameter. This command will search the entire domain for the OU name specified. If the destination path contains spaces it must be wrapped in quotation marks, and the file name specified must end in .csv. Due to the fact that the LastLogonDate does not replicate between domain controllers, this script will search for domain controllers and compare the LastLogonDate from each one to find the most recent time a user logged in unless specific Domain Controllers are specified to the Server parameter. While available, supplying specific Domain Controllers to the Server parameter is discouraged because there is a possibility they will not be correct due to the reason described above. .PARAMETER OrganizationalUnit Specifies the name or the distinguished name of the OU from which to retrieve users. Any escape characters are still required to be escaped: http://social.technet.microsoft.com/wiki/contents/articles/5312.active-directory-characters-to-escape.aspx .PARAMETER Server Specifies the Active Directory Domain Services instance (Domain Controller) to connect to by providing the NETBios name or the fully qualified directory server name. If left blank all Domain Controllers are used. .PARAMETER Destination Specifies the location and file name of the exported csv file. If you do not specify a full path, the current location will be used. The file name must have a .csv extension specified. .PARAMETER NoClobber Do not overwrite an existing file. By default, if a file exists in the specified path, Export-LastLogonTime overwrites the file without warning. .PARAMETER Force Overwrites the file specified in path without prompting. If you use the NoClobber parameter, this has no effect. .INPUTS System.String You can pipe Organizational Unit names and distinguished names as strings to Export-LastLogonTime. .OUTPUTS None Export-LastLogonTimes.ps1 does not generate any output. .EXAMPLE PS C:\> Export-LastLogonTime -OrganizationalUnit Users -Destination "C:\Users\administrator\Documents\LastLogon.csv" The following command will get the account name and latest last logon times out of all Domain Controllers for the OU named Users and export the information to a .csv file named LastLogon.csv in the Administrator's Documents folder. .EXAMPLE PS C:\> 'Users', 'OU=Restricted Users,DC=example,DC=com' | Export-LastLogonTime -Destination "C:\Users\administrator\Documents\LastLogon.csv" This command will export the latest last logon times out of all Domain Controllers for all of the users in the Users and Restricted Users OUs. Note that Restricted Users is given as its distinguished name, while Users is not. The command will accept either. .EXAMPLE PS C:\> Export-LastLogonTime -OrganizationalUnit 'Users','Restricted Users' -Server DC01 -Destination C:\Users\administrator\Documents\LastLogon.csv THis command will export the last logon times from the Domain Controller DC01 for all of the users in the Users and Restricted Users OUs to the file in the Destination parameter. .EXAMPLE PS C:\> Export-LastLogonTime -OU Users -DC 'DC01','DC02' -Destination C:\Users\administrator\Documents\LastLogon.csv This command will export the latest last logon times out of the Domain Controllers DC01 and DC02 for all of the users in the Users OU to a csv file in the path specified in the Destination parameter. .NOTES This command uses the ActiveDirectory PowerShell Module. This module is automatically installed on domain controllers and workstations or member servers that have installed the Remote Server Administration Tools (RSAT). If you are not on a machine that meets this criteria, the command will fail to work. .LINK Get-ADUser .LINK Get-ADObject .LINK Get-ADDomainController .LINK Export-Csv #> #Requires -Version 3.0 [CmdletBinding(HelpURI='https://gallery.technet.microsoft.com/Export-Last-Logon-Times-4fcb07cb')] Param( [Parameter(Mandatory=$true, Position=0,ValueFromPipeline=$true)] [Alias("OU")] [String[]]$OrganizationalUnit, [Parameter(Position=1)] [Alias("DC")] [String[]]$Server, [Parameter(Mandatory=$true, Position=2)] [ValidatePattern("\.csv$")] [String]$Destination, [Switch]$NoClobber, [Switch]$Force ) Begin { #Function to test for module installation and successful load. Thank you to Hey, Scripting Guy! blog for this one. Function Test-Module { Param ( [Parameter(Mandatory=$true, Position=0)][String]$Name ) #Test for module imported if (!(Get-Module -Name $Name)) { #Test for module availability if (Get-Module -ListAvailable | Where-Object {$_.Name -eq $Name}) { #If not loaded but available, import module Import-Module $Name $True } #Module not installed else {$False} } #Module already imported else {$True} } Function Get-LogonTimes($OU) { if ($OU -imatch '(?:(?:(?:OU|CN)=.+?)(?<!\\),)+?(?:(?:DC=.+?)(?<!\\),)?DC=.+$') { Write-Verbose "Distinguished Name entered" $OUDN = $OU } else { #Search for input OU and store distinguished name property Write-Verbose "Resolving Distinguished Names" $OUDN = (Get-ADOrganizationalUnit -Filter "Name -eq '$OU'" -ea SilentlyContinue).DistinguishedName } #test for valid result of OU if ($OUDN) { #Iterate through in case multiple OUs have equal Name properties foreach ($DN in $OUDN) { Write-Verbose "Getting users of OU $DN..." #If distinguished name exists, get users' account name and last logon times $users = Get-ADUser -Filter * -SearchBase $DN -Properties DisplayName #Iterate through each user and get its LastLogonDate property from each domain controller foreach ($user in $users) { Write-Verbose "Getting logon times for user $($user.Name)..." $DCLogonTimes = @() foreach ($dc in $DCs) { Write-Verbose "Getting logon times from DC $($dc.Name)..." $DCLogonTimes += (Get-ADUser -Identity $user.SamAccountName -Server $dc.Name -Properties LastLogonDate).LastLogonDate } #Sort the dates to get the highest date on top Write-Verbose "Determining the latest time of all logons...`n`n" $DCLogonTimes = $DCLogonTimes | Sort-Object -Descending [PSCustomObject]@{SamAccountName = $user.SamAccountName; DisplayName = $user.DisplayName; LastLogonDate = $DCLogonTimes[0]} } } } #No OU was found with the name supplied else { #Generate alert for no OU found Write-Error "The OU $OU is not a valid OU name in the domain." } } #Store list of logon times $result = @() #Test for ActiveDirectory Module Write-Verbose "Testing for ActiveDirectory Module..." if (!(Test-Module -Name "ActiveDirectory")) { #If not installed, alert Write-Error "There was a problem loading the Active Directory module. Either you are not on a domain controller or your workstation does not have Remote Server Administration Tools (RSAT) installed." exit } Write-Verbose "ActiveDirectory Module installed" #Get Domain Controllers - this can take a while #Use ArrayList so the Remove method can be used $DCs = New-Object System.Collections.ArrayList Write-Verbose "Getting Domain Controllers..." if ($Server) { foreach ($s in $Server) { try { $DCs.Add((Get-ADDomainController -Identity $s)) | Out-Null } catch { Write-Error "There was not a matching Domain Controller $s found in this domain." } } } else { foreach ($dc in (Get-ADDomainController -Filter * -ea SilentlyContinue)) { $DCs.Add($dc) | Out-Null } } #Check that any Domain Controllers were retrieved from Active Directory. if (!$DCs) { Write-Error "No Domain Controllers were found. Either there is a network problem or no Domain Controllers are running Active Directory Web Services." exit } else { Write-Verbose "$($DCs.Count) Domain Controllers received" } #Test that the dcs are running AD Web Services, and remove from the list if they are not. #Clone because objects can't be removed while enumerating Write-Verbose "Testing that all Domain Controllers are up and running Active Directory Web Services..." foreach ($dc in $DCs.Clone()) { if (!(Get-Service -ComputerName $dc.Name -Name ADWS -ea SilentlyContinue)) { $DCs.Remove($dc) Write-Warning "The Domain Controller $($dc.Name) is either down, or does not have Active Directory Web Services running. It will be skipped during checking." } } #Check that any Domain Controllers remaining after ADWS test. if (!$DCs) { Write-Error "None of the Domain Controllers being requested are responding or they do not have Active Directory Web Services running." exit } else { Write-Verbose "All eligible Domain Controllers added to the list." } } Process { foreach ($OU in $OrganizationalUnit) { $result += Get-LogonTimes -OU $OU } } End { Write-Verbose "Getting the results to export" #Sort and export the desired information to a .csv file $result = $result | Sort-Object -Property SamAccountName $result | Export-Csv -Path $Destination -NoTypeInformation -NoClobber:$NoClobber -Force:$Force if ($?) { Write-Verbose "Results exported." } else { Write-Verbose "No results exported." } } |