Question : Simple Powershell script to search all users in the domain for creation date

Simple Powershell script to search all users in the domain for creation date.  If you are supper cool, also need to know how to disable an account if it has not been used, or is to old, say 90 days.  I found some online, but they are super complicated, and I am looking for something a little simpler.   Is there a simple answer in PSv1?

Answer : Simple Powershell script to search all users in the domain for creation date


Then you'd be better calling it with the -psconsolefile setting.

e.g.

PowerShell.exe -psconsolefile "%ProgramFiles%\Quest Software\Management Shell for AD\ConsoleSettings.psc1"

See what I mean?

The startup script is session specific so doesn't really lend itself easily to run as a scheduled task.

If you prefer to move to something without the extra cmdlets we can change the above to native functions.

Chris

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
function Get-Users {
	$Users = @()
 
	$objDomain = New-Object System.DirectoryServices.DirectoryEntry
	$objSearcher = New-Object System.DirectoryServices.DirectorySearcher
	$objSearcher.SearchRoot = $objDomain
 
	$objSearcher.Filter = ("(&(objectClass=user)(objectCategory=person))")
 
	$intProperties = $objSearcher.PropertiesToLoad.Add("name")
	$intProperties = $objSearcher.PropertiesToLoad.Add("createTimeStamp")
 
	$objResults = $objSearcher.FindAll()
	ForEach ($objResult in $objResults) {
		$Users += $objResult.Properties | `
			Select-Object @{n="name";e={$_.name}},@{n="createTimeStamp";e={$_.createtimestamp}}
	}
 
	return $Users
}
 
# Example exporting results to a CSV file
Get-Users | Export-CSV -Path "C:\Stuff\test.csv"
Open in New Window Select All
Random Solutions  
 
programming4us programming4us