Confirm All Users have PasswordNeverExpires
So with PowerShell we can grant users the policy of PasswordNeverExpires, which in some cases are good enough security. Perhaps togethere with a second factor for authentication. PS Command: Get-MsolUser | Set-MsolUser -All -PasswordNeverExpires $true ($false will do the upposite). But later you might wanne confirm all users have PasswordNeverExpires or some users should…