IT Knowledge Base

~ Without sacrifice, there can be no victory ~

發佈日期:

如何利用PowerShell指令‧尋找特定OU內用戶密碼最後更改日期

網絡經過不堪一擊攻擊後,現在公司變成驚弓之鳥,樣樣也講網絡安全,其中一樣就是全民改密碼,但要知道那人不聽話,就要先找出密碼期限。

Get-ADUser -SearchBase "OU=HK,DC=EXAMPLE,DC=COM" -Server "EXAMPLE.COM" -Filter * -Properties passwordlastset, passwordneverexpires, Enabled | Select Name, passwordlastset, Passwordneverexpires, Enabled | export-csv "outfile.csv"

-SearchBase: 只尋找特定OU內用戶名稱;
-Server: 如要搜尋其他網域,便要輸入其他伺服器名稱;
-Properties passwordlastset, passwordneverexpires, Enabled: 要顯示的內容選項,包括最後密碼更改日期,密碼是否設定為永不過期,及用戶帳戶是否仍然啟用;

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *