-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathSet-ExOutOfOffice.ps1
166 lines (148 loc) · 6.77 KB
/
Set-ExOutOfOffice.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#Requires -Version 5.0
<#
.SYNOPSIS
Connect to Microsoft Exchange Server and enable or disable Automatic Replies for one or more specified mailboxes
.DESCRIPTION
.NOTES
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
the use and the consequences of the use of this freely available script.
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
© ScriptRunner Software GmbH
.COMPONENT
.LINK
https://github.com/scriptrunner/ActionPacks/tree/master/Exchange/MailBoxes
.Parameter MailboxIds
[sr-en] Aliases, Display names, Distinguished names, SamAccountNames, Guid or user principal names of the mailboxes from which to set out of office
.Parameter InternalText
[sr-en] Automatic Replies message that's sent to internal senders or senders within the organization
.Parameter AutoReplyType
[sr-en] Automatic Replies are sent to external senders.
.Parameter ExternalText
[sr-en] Automatic Replies message that's sent to external senders or senders outside the organization
.Parameter StartDate
[sr-en] Start date that Automatic Replies are sent for the specified mailbox
The text StartDate will be replaced by the defined start date
.Parameter EndDate
[sr-en] End date that Automatic Replies are sent for the specified mailbox
The text EndDate will be replaced by the defined end date
.Parameter GenerateReport
[sr-en] Generates a report with the current mailbox settings
Requires Library Script ReportLibrary from the Action Pack Reporting\_LIB_
#>
param(
[Parameter(Mandatory = $true,ParameterSetName="Disable Auto Reply")]
[Parameter(Mandatory = $true,ParameterSetName="Enable Auto Reply")]
[Parameter(Mandatory = $true,ParameterSetName="Schedule Auto Reply")]
[string[]]$MailboxIds ,
[Parameter(Mandatory = $true,ParameterSetName="Enable Auto Reply",HelpMessage="ASRDisplay(Multiline)")]
[Parameter(Mandatory = $true,ParameterSetName="Schedule Auto Reply",HelpMessage="ASRDisplay(Multiline)")]
[string]$InternalText,
[Parameter(ParameterSetName="Enable Auto Reply")]
[Parameter(ParameterSetName="Schedule Auto Reply")]
[ValidateSet("All","Only contact list members","Internal only")]
[string]$AutoReplyType = "All",
[Parameter(ParameterSetName="Enable Auto Reply",HelpMessage="ASRDisplay(Multiline)")]
[Parameter(ParameterSetName="Schedule Auto Reply",HelpMessage="ASRDisplay(Multiline)")]
[string]$ExternalText ,
[Parameter(Mandatory = $true,ParameterSetName="Schedule Auto Reply")]
[datetime]$StartDate,
[Parameter(Mandatory = $true,ParameterSetName="Schedule Auto Reply")]
[datetime]$EndDate,
[Parameter(ParameterSetName="Disable Auto Reply")]
[Parameter(ParameterSetName="Enable Auto Reply")]
[Parameter(ParameterSetName="Schedule Auto Reply")]
[switch]$GenerateReport
)
try{
[string[]]$Properties = @('Identity','AutoReplyState','StartTime','EndTime','ExternalAudience','IsValid')
[string[]]$resultMessage = @()
[string]$msg = "Mailbox {0} "
[string]$replyType = 'All'
[hashtable]$cmdArgs = @{'ErrorAction' = 'Stop'
'Confirm' = $false
}
if($PSCmdlet.ParameterSetName -eq "Disable Auto Reply"){
$cmdArgs.Add('AutoReplyState' , 'Disabled')
$msg += "disabled"
}
else{
if($AutoReplyType -eq 'Only contact list members'){
$replyType = 'Known'
}
if($AutoReplyType -eq 'Internal only'){
$replyType = 'None'
}
if($PSCmdlet.ParameterSetName -eq "Schedule Auto Reply"){
if([System.String]::IsNullOrWhiteSpace($InternalText) -eq $false){
$InternalText = $InternalText.Replace("StartDate",$StartDate.ToShortDateString()).Replace("EndDate",$EndDate.ToShortDateString())
}
if($replyType -ne 'None'){
if([System.String]::IsNullOrWhiteSpace($ExternalText) -eq $false){
$ExternalText = $ExternalText.Replace("StartDate",$StartDate.ToShortDateString()).Replace("EndDate",$EndDate.ToShortDateString())
}
}
if($StartDate.ToFileTimeUtc() -lt [DateTime]::Now.ToFileTimeUtc()){
$StartDate = [DateTime]::Now
}
if(($null -eq $EndDate) -or ($EndDate.Year -lt 2020)){
$EndDate = $StartDate
}
if($EndDate.ToFileTimeUtc() -lt [DateTime]::Now.ToFileTimeUtc()){
$EndDate = $StartDate.AddDays(1)
}
}
if([System.String]::IsNullOrWhiteSpace($ExternalText) -eq $true){
$ExternalText = $InternalText
}
$cmdArgs.Add('ExternalAudience', $replyType)
$cmdArgs.Add('InternalMessage', $InternalText )
$cmdArgs.Add('ExternalMessage', $ExternalText )
if($PSCmdlet.ParameterSetName -eq "Schedule Auto Reply"){
$cmdArgs.Add('AutoReplyState', 'Scheduled')
$cmdArgs.Add('EndTime', $EndDate)
$cmdArgs.Add('StartTime', $StartDate)
$msg += "scheduled"
}
else{
$cmdArgs.Add('AutoReplyState', 'Enabled')
$msg += "enabled"
}
}
$Script:resHtml = @()
foreach($item in $MailboxIds){
try{
$box = Get-Mailbox -Identity $item -ErrorAction Stop
if($null -ne $box){
try{
$null = Set-MailboxAutoReplyConfiguration @cmdArgs -Identity $box.UserPrincipalName
if($GenerateReport -eq $true){
$Script:resHtml += Get-MailboxAutoReplyConfiguration -Identity $box.UserPrincipalName | Select-Object $Properties
}
$resultMessage += [System.String]::Format($msg,$box.UserPrincipalName)
}
catch{
Write-Output "Error occurred at set Mailbox $($item)"
}
}
}
catch{
Write-Output "Error occurred at get Mailbox $($item)"
}
}
if($GenerateReport -eq $true){
ConvertTo-ResultHtml -Result $Script:resHtml
}
if($SRXEnv) {
$SRXEnv.ResultMessage = $resultMessage
}
else{
Write-Output $resultMessage
}
}
catch{
throw
}
finally{
}