functions/Disable-User.ps1

Function Disable-User {
    <#
    .SYNOPSIS
        This script will carry out some basic actions against an AD User to disable their access and process them as a leaver
        Actions include:
 
        DEFAULT
        - Disable AD Account
        - Change password
        - Set Mail Nickname (so that hide from GAL works)
        - Hide from GAL
        - Clear Title, Manager, Department and Company Fields
        - Set description to "Disabled: (date & time)"
        - Remove from all groups
        - Move to leaver OU
        - Set Mailbox to shared
 
        OPTIONAL
        - Forward emails
        - Delegate mailbox
 
    .NOTES
        Name: Disable-User
        Author: Elliott Marter
 
        TO ADD
        Login to EOL and add a check for this
        Set mailbox to shared
        Forward emails
        Delegate emails
        Remove Licences
      
      
    .EXAMPLE
        Disable-User -Username john.smith -Forward mr.boss@contoso.com -Delegate mr.boss@contoso.com
      
      
    .LINK
        https://www.powershellgallery.com/profiles/elliottmarter
    #>

     
        [CmdletBinding()]
        param(
            [Parameter(Position=0,mandatory=$true)]
            [string]  $Username,
            [string]  $Forward,
            [string]  $Delegate
        )

    $logfile = "$env:SystemDrive\elm_tools_logs\leaver_logs\$Username.txt"
    New-Item $logfile -Force -Confirm:$false | Out-Null
    Write-Output "logfile is here $logfile"
    
    # Call function to ask for Leaver OU
    if ($LeaverOU -eq $null) {
    $LeaverOU = (Select-ADOrganizationalUnit -Message "Select Leaver OU").DistinguishedName
    }

    # Quick try catch to validate the username and confirm run
    try {
        $User = Get-ADUser -Identity $Username
        $Confirm = Read-Host "$($User.UserPrincipalName) will be disabled, Do you wish to contiune? Y/N"
        }
    catch {
        throw "ERROR: Could not find $($Username), please try again"
        }


    If ($Confirm -eq "Y") {

        if ($Forward -or $Delegate) {
            Connect-ExchangeOnline
            }

        # Disable Account
        Disable-ADAccount $User -Confirm:$false
        Write-Output "$User account has been disabled" | Tee-Object $logfile -Append

        # Set New Password
        $Pass = (iwr https://www.dinopass.com/password/strong -UseBasicParsing).Content
        Set-ADAccountPassword -Identity $User -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "$Pass" -Force)
        Write-Output "Password has been reset to $Pass" | Tee-Object $logfile -Append

        # Clear Title, Manager, Department and Company
        Set-ADUser $User -Title $null -Manager $null -Department $null -Company $null
        Write-Output "Title, Manager, Department and Company has been cleared" | Tee-Object $logfile -Append

        # Set description to date disabled
        $Description = "Disabled: $((get-date).ToString())"
        Set-ADUser $User -Description $Description
        Write-Output "Descripton set to $Description" | Tee-Object $logfile -Append

        # Remove From all groups
        $Groups = Get-AdPrincipalGroupMembership -Identity $User.SamAccountName | Where-Object -Property Name -Ne -Value 'Domain Users'
        Write-Output "$($user.SamAccountName) is being removed from the following groups" | Tee-Object $logfile -Append
        Write-Output $($Groups.Name) | Tee-Object $logfile -Append
        $Groups | Remove-AdGroupMember -Members $User -Confirm:$false

    try {
        # Set MailNickName & msExchHideFromAddressLists
        Set-ADObject $User -Replace @{MailNickName=$user.SamAccountName}
        Write-Output "Mailnickname set to $($user.SamAccountName)" | Tee-Object $logfile -Append
            
        Set-ADObject $User -Replace @{msExchHideFromAddressLists=$true}
        Write-Output "$($user.SamAccountName) hidden from GAL" | Tee-Object $logfile -Append
        }
    catch {
        Write-Output "Unable to set MailNickName & msExchHideFromAddressLists attribute (AD Schema may not have Exchange attributes??)"
        }

        # Move to Leaver OU
        Move-ADObject $User -TargetPath $LeaverOU
        Write-Output "$($user.SamAccountName) has been moved to $LeaverOU" | Tee-Object $logfile -Append

        # Set Mail forwarding
        If ($Forward) {
            Set-Mailbox -Identity $User.UserPrincipalName -DeliverToMailboxAndForward $true -ForwardingSMTPAddress "$Forward"
            Write-Output "Mail has been forwarded to $Forward" | Tee-Object $logfile -Append
        }

        # Set Mail delegation
        If ($Delegate) {
            Add-MailboxPermission -Identity $User.UserPrincipalName -User $Delegate -AccessRights FullAccess -InheritanceType All
            Write-Output "Mail has been delegated to $Delegate" | Tee-Object $logfile -Append
        }

    }

}