Skip to content

Commit

Permalink
Merge pull request #896 from microsoft/Dev
Browse files Browse the repository at this point in the history
Release 1.20.1111.1
  • Loading branch information
NikCharlebois authored Nov 11, 2020
2 parents 9a8f300 + f5e094a commit c00777b
Show file tree
Hide file tree
Showing 132 changed files with 1,124 additions and 486 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change log for Microsoft365DSC

## 1.20.1111.1

* AADPolicy
Initial Release;
* Fixes an issue with SCRetentionCompliancePolicy where
the wrong parameter sets was being passed for creation.
(Issue #890)

## 1.20.1104.1

* AADMSGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function Get-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down Expand Up @@ -515,7 +515,7 @@ function Export-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function Get-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down Expand Up @@ -328,7 +328,7 @@ function Export-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function Get-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down Expand Up @@ -400,7 +400,7 @@ function Export-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function Get-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down Expand Up @@ -495,7 +495,7 @@ function Export-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function Get-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down Expand Up @@ -124,7 +124,7 @@ function Get-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down Expand Up @@ -433,7 +433,7 @@ function Export-TargetResource
}
elseif ($null -ne $GlobalAdminAccount)
{
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[0]
$tenantIdValue = $GlobalAdminAccount.UserName.Split('@')[1]
}
Add-M365DSCEvent -Message $_ -EntryType 'Error' `
-EventID 1 -Source $($MyInvocation.MyCommand.Source) `
Expand Down
Loading

0 comments on commit c00777b

Please sign in to comment.