PoshCode Archive  Artifact [22b5a41f6d]

Artifact 22b5a41f6da97ad66a1b800d3a0b7b8ff927d4285550c483635ab1937b58b98d:

  • File AD-user-support-tool.ps1 — part of check-in [fc57d2cd83] at 2018-06-10 13:40:51 on branch trunk — #Created by Ty Lopes (user: Ty Lopes size: 2547)

# encoding: ascii
# api: powershell
# title: AD user support tool
# description: #Created by Ty Lopes 
# version: 0.1
# type: module
# author: Ty Lopes
# license: CC0
# x-poshcode-id: 4427
# x-archived: 2013-09-03T05:12:32
# x-published: 2013-08-30T14:38:00
#
# #Aug 2013
# #Support utility to speed up recurring/quick Active Directory Tasks
# #unlock user account/change password/set to expire in xx number of days
#
#Created by Ty Lopes 
#Aug 2013
#Support util to speed up re-curring/quick Active Directory Tasks
#unlock user account/change password/set to expire in xx number of days

Import-Module ActiveDirectory

#Prompt for credentials
$creds = Get-Credential

#Loop counter
$i = 1

Do
{
clear-host

#Menu
$answers = Read-host -prompt "
        _______________________________________________________________
        Support Util

        a. Unlock user account
        b. change password
        c. change password and set for user to change at next logon
        d. set account to NOT change password at next logon
        e. Exit
        f. Set account to expire in XX number of days
        _______________________________________________________________

        Enter a b c d or e"

$i++

if ($answers -eq "a"){Read-Host "Enter the user account to unlock" | Unlock-ADAccount -Credential $($creds)}


if ($answers -eq "b"){ 
    $username = Read-host -prompt "Enter Username to reset users password"
    $newPassword = (Read-Host -Prompt "Provide New Password" -AsSecureString)
    Set-ADAccountPassword -Identity $username -NewPassword $newPassword -Reset -Credential $($creds)
}

if ($answers -eq "c")
{
    $username = Read-host -prompt "Enter Username to reset users password"
    $newPassword = (Read-Host -Prompt "Provide New Password" -AsSecureString)
    Set-ADAccountPassword -Identity $username -NewPassword $newPassword -Reset -Credential $($creds)
    Set-ADUser $username -ChangePasswordAtLogon $true -Credential $($creds)
} 

if ($answers -eq "d")
{
    $username = Read-host -prompt "Enter Username to reset users password"
    Set-ADUser $username -ChangePasswordAtLogon $false -Credential $($creds)
}

if ($answers -eq "f")
{
    $username = Read-host -prompt "Enter Username to extend expiration"
    $expires =  Read-host -prompt "Enter how many days away to expire the account"
    Set-adaccountExpiration $username -timespan "$expires" -Credential $($creds)
} 

if ($answers -eq "e")
{
    $host.exit()
}
}
while ($i -le 1000)