Created
November 4, 2015 06:14
-
-
Save ZJPat/a73c4ae0d5258b51834a 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
$NumDays = 0 | |
$LogDir = ".\AD-Accounts.csv" | |
$currentDate = [System.DateTime]::Now | |
$currentDateUtc = $currentDate.ToUniversalTime() | |
$lltstamplimit = $currentDateUtc.AddDays(- $NumDays) | |
$lltIntLimit = $lltstampLimit.ToFileTime() | |
$adobjroot = [adsi]'' | |
$objstalesearcher = New-Object System.DirectoryServices.DirectorySearcher($adobjroot) | |
$objstalesearcher.filter = "(&(objectCategory=person)(objectClass=user)(lastLogonTimeStamp<=" + $lltIntLimit + "))" | |
$users = $objstalesearcher.findall() | select ` | |
@{e={$_.properties.cn};n='Display Name'},` | |
@{e={$_.properties.samaccountname};n='Username'},` | |
@{e={[datetime]::FromFileTimeUtc([int64]$_.properties.lastlogontimestamp[0])};n='Last Logon'},` | |
@{e={[string]$adspath=$_.properties.adspath;$account=[ADSI]$adspath;$account.psbase.invokeget('AccountDisabled')};n='Account Is Disabled'} | |
$users | Export-CSV -NoType $LogDir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment