Public/Unlock-AllAccounts.ps1

function Unlock-AllAccounts {

    <#
    .DESCRIPTION
    Unlocks all Active Directory Accounts
 
    .NOTES
    Requires the Active Directory Module.
 
    .Link
    https://github.com/TheTaylorLee/AdminToolbox
    #>


    [CmdletBinding()]
    Param (
    )

    Search-ADAccount -LockedOut | Unlock-ADAccount
}