In This powershell script, We are exporting the user details with current date and time , This will export user details including First Name, Last name, Creation date, Logon Name, Last Password set, Password Expiry etc.

# Split path
$Path = Split-Path -Parent “c:\ad_scripts\*.*”

# Create variable for the date stamp in log file
$LogDate = Get-Date -f yyyyMMddhhmm

# Define CSV and log file location variables
# They have to be on the same location as the script
$Csvfile = $Path + “\AllADUsers_$logDate.csv”

# Import Active Directory module
Import-Module ActiveDirectory

# Set distinguishedName as searchbase, you can use one OU or multiple OUs
# Or use the root domain like DC=infoalias,DC=local
$DNs = @(
“DC=infoalias,dc=local”

)

# Create empty array
$AllADUsers = @()

# Loop through every DN
foreach ($DN in $DNs) {
$Users = Get-ADUser -SearchBase $DN -Filter * -Properties *

# Add users to array
$AllADUsers += $Users
}

# Create list
$AllADUsers | Sort-Object Name | Select-Object `
@{Label = “First name”; Expression = { $_.GivenName } },
@{Label = “Last name”; Expression = { $_.Surname } },
@{Label = “Display name”; Expression = { $_.DisplayName } },
@{Label = “User logon name”; Expression = { $_.SamAccountName } },
@{Label = “User principal name”; Expression = { $_.UserPrincipalName } },
@{Label = “Street”; Expression = { $_.StreetAddress } },
@{Label = “Description”; Expression = { $_.Description } },
@{Label = “E-mail”; Expression = { $_.Mail } },
@{Label = “HomePage”; Expression = { $_.wWWHomePage } },
@{Label = “Mobile”; Expression = { $_.mobile } },
@{Label = “Notes”; Expression = { $_.info } },
@{Label = “Distinguished Name”; Expression = { $_.distinguishedName } },
@{Label = “When Created”; Expression = { $_.whencreated } },
@{Label = “Last Password Set”; Expression = { $_.passwordlastset } },
@{Label = “Password Expiry”; Expression = { $_.UserPasswordExpiryTimeComputed } },
@{Label = “User Must change password Next logon”; Expression = { $_.ChangePasswordAtLogon } },

@{Label = “Password Never Expiry”; Expression = { $_.passwordNeverExpires } },

@{Label = “Account status”; Expression = { if (($_.Enabled -eq ‘TRUE’) ) { ‘Enabled’ } Else { ‘Disabled’ } } },
@{Label = “Last logon date”; Expression = { $_.lastlogondate } }|

# Export report to CSV file
Export-Csv -Encoding UTF8 -Path $Csvfile -NoTypeInformation #-Delimiter “;”

By amit_g

Welcome to my IT Infra Blog! My name is Amit Kumar, and I am an IT infrastructure expert with over 11 years of experience in the field. Throughout my career, I have worked with a wide variety of systems and technologies, from network infrastructure and cloud computing to hardware and software development. On this blog, I aim to share my knowledge, insights, and opinions on all things related to IT infrastructure. From industry trends and best practices to tips and tricks for managing complex systems, my goal is to provide valuable information that will help IT professionals and enthusiasts alike. Whether you are a seasoned IT veteran or just getting started in the field, I hope you will find my blog to be a valuable resource. In addition to sharing my own thoughts and ideas, I also welcome feedback, comments, and questions from my readers. I believe that a collaborative approach is the best way to advance the field of IT infrastructure and I look forward to hearing from you. Thank you for visiting my blog, and I hope you will continue to follow along as I explore the fascinating world of IT infrastructure. Sincerely, Amit Kumar

Leave a Reply

Your email address will not be published. Required fields are marked *