ถ้าเราต้องการดูว่าแต่ละ User นั้นเปลี่ยนรหัสผ่านล่าสุดเมื่อไหร่
เราสามารถใช้คำสั่ง PowerShell ดังนี้
- Connect Office 365 with PowerShell
-
ถ้าใช้คำสั่งนี้
Get-MsolUser
-all
|
select
displayname, LastPasswordChangeTimestamp
-
ถ้าต้องการให้ Export ออกมาเป็น CSV
Get-MsolUser
-All
|
select
DisplayName, LastPasswordChangeTimeStamp
|
Export-CSV
c:\temp\LastPasswordChange.csv
-NoTypeInformation
ลองดูครับ