Skip to content

Commit

Permalink
Update strong-password.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kwekuako committed Oct 19, 2020
1 parent efdfccc commit 83f9410
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion microsoft-365/admin/add-users/strong-password.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ You must also connect to Microsoft 365 with PowerShell.

1. [Connect to Microsoft 365 with PowerShell](https://docs.microsoft.com/office365/enterprise/powershell/connect-to-office-365-powershell#connect-with-the-microsoft-azure-active-directory-module-for-windows-powershell).

2. Using PowerShell, you can disable strong passwords for specific users with this command:
2. Using PowerShell, you can disable strong passwords for all users with this command:

```powershell
Get-MsolUser | Set-MsolUser -StrongPasswordRequired $false
3. You can disable strong passwords for specific users with this command:
```powershell
Set-MsolUser –UserPrincipalName –StrongPasswordRequired $false
Expand Down

0 comments on commit 83f9410

Please sign in to comment.