Forum Discussion
LogicDX342
Nov 01, 2024Copper Contributor
How to Disable the Strong Password Requirement
Hello, I followed the instructions in the https://learn.microsoft.com/en-us/microsoft-365/admin/add-users/reset-passwords?view=o365-worldwide#set-strong-passwords guide and used the following comman...
Kidd_Ip
Nov 02, 2024MVP
Are you following this?
Get-MgUser -UserId <UserPrincipalName> | Select-Object -ExpandProperty PasswordPolicies
Clear-Host
Set-MgUser -UserId <UserPrincipalName> -PasswordPolicies "DisableStrongPassword"
- LogicDX342Nov 03, 2024Copper ContributorThe first command yields no results, and the third command returns an error indicating that 'Set-MgUser' is not a valid command.