Public/Get-PasswordExpired.ps1

function Get-PasswordExpired {

    <#
    .SYNOPSIS
    -Taylor Lee
    Modified 05172019
 
    .DESCRIPTION
    Returns a list of Active Directory Accounts with expired passwords
 
    .NOTES
    Requires the Active Directory Module.
 
    .Link
    Get-DCLockoutEvents2
    Get-LockedAccounts
    Set-Password
    Unlock-Account
    Unlock-AllAccounts
 
    .Link
    https://github.com/TheTaylorLee/AdminToolbox
    #>


    [CmdletBinding()]
    param (
    )

    Import-Module ActiveDirectory

    Search-ADAccount -PasswordExpired | Select-Object name | Sort-Object name | Format-List

}