-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathnew-Office365Group.ps1
85 lines (57 loc) · 2.61 KB
/
new-Office365Group.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<#
.SYNOPSIS
This function creates the new distribution group in office 365.
.DESCRIPTION
This function creates the new distribution group in office 365.
.PARAMETER originalDLConfiguration
The original configuration of the DL on premises.
.PARAMETER groupTypeOverride
Submits the group type override of specified by the administrator at run time.
.OUTPUTS
None
.EXAMPLE
new-Office365DL -groupTypeOverride "Security" -originalDLConfiguration adConfigVariable -office365DLConfiguration CONFIG
#>
Function new-office365Group
{
[cmdletbinding()]
Param
(
[Parameter(Mandatory = $true)]
$originalDLConfiguration,
[Parameter(Mandatory = $true)]
$office365DLConfiguration,
[Parameter(Mandatory = $true)]
$exchangeOnlineConnectionInfo
)
#Output all parameters bound or unbound and their associated values.
write-functionParameters -keyArray $MyInvocation.MyCommand.Parameters.Keys -parameterArray $PSBoundParameters -variableArray (Get-Variable -Scope Local -ErrorAction Ignore)
#Declare function variables.
[string]$functionGroupType=$NULL #Holds the return information for the group query.
[string]$functionMailNickName = ""
[string]$functionName = ((Get-Date -Format FileDateTime)+(Get-Random)).tostring()
$functionDL = $NULL
$functionIsRoom = $FALSE
#Start function processing.
Out-LogFile -string "********************************************************************************"
Out-LogFile -string "BEGIN New-Office365Group"
Out-LogFile -string "********************************************************************************"
out-logfile -string ("Random DL name: "+$functionName)
#Create the distribution group in office 365.
try
{
out-logfile -string "Creating the distribution group in Office 365."
$previousErrorAction = $ErrorActionPreference
$ErrorActionPreference = 'Stop'
$functionDL = new-o365UnifiedGroup -displayname $functionName -owner $exchangeOnlineConnectionInfo.userPrincipalName
$ErrorActionPreference = $previousErrorAction
out-logfile -string $functionDL
}
catch
{
Out-LogFile -string $_ -isError:$TRUE
}
Out-LogFile -string "END New-Office365Group"
Out-LogFile -string "********************************************************************************"
return $functionDL
}