gioxx / UtentiAD_in_scadenza.ps1
0 вподобань
0 форк(-ів)
2 файл(-ів)
Остання активність 2 months ago
| 1 | Import-Module ActiveDirectory |
| 2 | |
| 3 | # Definisci la scadenza account (in questo caso filtro gli account che scadranno entro il 31/12 dell'anno in corso) |
| 4 | $oggi = Get-Date |
| 5 | $fineAnno = Get-Date -Year $oggi.Year -Month 12 -Day 31 |
| 6 | |
| 7 | $utenti = Get-ADUser -Filter {Enabled -eq $true} -Property SamAccountName, DisplayName, AccountExpirationDate | |
| 8 | Where-Object { $_.AccountExpirationDate -and $_.AccountExpirationDate -le $fineAnno } |
| 9 | $utenti | Select-Object SamAccountName, DisplayName, AccountExpirationDate | Format-Table -AutoSize |
Новіше
Пізніше