PoshCode Archive  Artifact [c5e49f3bc4]

Artifact c5e49f3bc45bc1a96b292e508b6835eee5ede00e0d4a85404baca02a707171af:

  • File check-disabledstatus.ps1 — part of check-in [13c68e94cb] at 2018-06-10 12:56:22 on branch trunk — This script reads a list of usernames from a text file and outputs (to the screen) a comma-delimited list of usernames with a status value (OK, DISABLED or NOTFOUND). This uses ADSI. (user: unknown size: 1583)

# encoding: ascii
# api: powershell
# title: check-disabledstatus
# description: This script reads a list of usernames from a text file and outputs (to the screen) a comma-delimited list of usernames with a status value (OK, DISABLED or NOTFOUND).  This uses ADSI.
# version: 0.1
# type: class
# license: CC0
# x-poshcode-id: 1066
# x-archived: 2009-05-03T10:56:30
#
#
# check-disabledstatus.ps1
# by Ken Hoover <ken.hoover@yale.edu> - Yale University ITS Windows Systems Team - Spring 2009
#
# reads a text file of usernames and outputs CSV showing the status of that user - OK, DISABLED or NOTFOUND

if (!($args[0])) {
	Write-Host "`nPlease specify a file containing usernames to check on the command line.`n" -ForegroundColor yellow
	exit
}

# the bit pattern for a disabled user
$isdisabled = 0x02

$searcher = new-object DirectoryServices.DirectorySearcher([ADSI]"")

$userlist = Get-Content $args[0] | sort

$i = 0

foreach ($user in $userlist)
{
	$status  = "NOSUCHUSER"
	$i++
	
	$pc = [int](($i / $userlist.count) * 100)
	
	Write-Progress -Activity "Checking users" -Status "$user..." -percentcomplete $pc
	
	$searcher.filter = "(&(objectClass=user)(sAMAccountName= $user))"
	$founduser = $searcher.findOne()
	
	# $uac = ($founduser.psbase.properties.useraccountcontrol[0])
	
	if ($founduser.psbase.properties.useraccountcontrol) {
		if ($founduser.psbase.properties.useraccountcontrol[0] -band $isdisabled) {   # Logical AND test
			$status = "DISABLED"
		} else {
			$status = "OK"
		}
	}
	Write-Host "$user, $status"
}