YanissNaidja

Untitled

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