Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Function UserExp # Création de la fonction
- {
- # Récuperation des utilisateurs avec mot de passe qui n'expire pas
- get-aduser -filter * -properties Name, PasswordNeverExpires | where {
- $_.passwordNeverExpires -eq "true" } | Select-Object DistinguishedName,Name,PasswordNeverExpires |
- Export-csv c:\export.csv -NoTypeInformation
- }
Advertisement
Add Comment
Please, Sign In to add comment