Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EXO-Policies: Changed $PSBoundParameters to [System.Collections.Hashtable] for resources where it was needed #1163

Merged
merged 5 commits into from
Apr 19, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added removal items in paramaters
  • Loading branch information
RuudGijsbers committed Apr 18, 2021
commit a8976d9b55479605030e76a36424f762e19860b7
5 changes: 5 additions & 0 deletions Modules/Microsoft365DSC/Modules/M365DSCUtil.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ function Format-EXOParams
$EXOParams.Remove("GlobalAdminAccount") | Out-Null
$EXOParams.Remove("Ensure") | Out-Null
$EXOParams.Remove("Verbose") | Out-Null
$EXOParams.Remove('ApplicationId') | Out-Null
$EXOParams.Remove('TenantId') | Out-Null
$EXOParams.Remove('CertificateThumbprint') | Out-Null
$EXOParams.Remove('CertificatePath') | Out-Null
$EXOParams.Remove('CertificatePassword') | Out-Null
if ('New' -eq $Operation)
{
$EXOParams += @{
Expand Down