Or, Exporting AD
users created in last 7 days to CSV file using PowerShell command
Or, Get AD users
report created in last 7 days with the help of PowerShell
Descriptions: If you are looking for exporting AD users
created in last 7 days or any custom days in a CSV file/report, this article is
for you my friend. In my case, I am going to export users created in last 7
days.
Steps:
Run Windows PowerShell as Administrator > run the
commands mentioned below to get the CSV output/report
AD users created in
last 7 days
Get-ADUser
-Filter "Name -like '*'" -Properties Name, Title, Office, Created |
where {$_.Created -gt $(Get-Date).AddDays("-7")} | select Name,
Title, Office | Export-Csv D:\temp\ADReport.csv
Cheers, Please write me back if you have any query or
feedback on this.
No comments:
Post a Comment