$temp = get-content C:\Users\……….\Desktop\toImport.txt
$Date = Get-Date -format d
foreach ($t in $temp) {
disable-ADAccount -Identity $t
#leave a description in case i want to track the action
Set-Aduser -Identity $t -Description “Account disabled by script on $Date”
}