File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
module/EntraBeta/customizations Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 1717 [System.Security.SecureString] $Password,
1818 [Parameter(ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)]
1919 [System.Boolean] $EnforceChangePasswordPolicy
20- [Parameter(ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)]
21- [System.Boolean] $ForceChangePasswordNextSignInWithMfa
2220 )
2321 PROCESS {
2422 $params = @{}
8886
8987 $PasswordProfile = @{}
9088 if($null -ne $PSBoundParameters["ForceChangePasswordNextLogin"]) { $PasswordProfile["ForceChangePasswordNextSignIn"] = $ForceChangePasswordNextSignIn }
91- if($null -ne $PSBoundParameters["EnforceChangePasswordPolicy"]) { $PasswordProfile["ForceChangePasswordNextSignInWithMfa"] = $ForceChangePasswordNextSignInWithMfa }
89+ if($null -ne $PSBoundParameters["EnforceChangePasswordPolicy"]) { $PasswordProfile["ForceChangePasswordNextSignInWithMfa"] = $EnforceChangePasswordPolicy }
9290 if($null -ne $PSBoundParameters["Password"]) { $PasswordProfile["password"] = $PlainPassword }
9391
9492 Write-Debug("============================ TRANSFORMATIONS ============================")
You can’t perform that action at this time.
0 commit comments