se você puder fazer uma tarefa agendada e tiver permissões suficientes para fazer isso, poderá usar este script.
Se você criar dois scripts, poderá programar o script 1 para ser executado na quarta-feira às 17h (?) E, em seguida, definir a parte em que diz .AddDays(1)
a 2.
e você pode fazer com que o outro script seja executado na sexta-feira às 17h (?) e definir a adddays
para 4
$identity = "email address"
$autoReplyState = "Scheduled"
$externalMessage = "Enter a message shown to people outside of your domain"
$internalMessage = "Enter a message shown to people inside of your domain"
#this means it will start now
$startTime = Get-Date
#this means it will end now + 1 day
$endTime = $startTime.AddDays(1)
# Import the Exchange Modules
## This part is is for Exchange 2010, Required managements tools to be installed.
## remove the # at the start of the next line if you wish to use exchange 2010
# add-pssnapin Microsoft.Exchange.Management.PowerShell.E2010
##This part is for Exchange 2013/2016
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://ExchangeServer/PowerShell/ -Authentication Kerberos
Import-PSSession $Session -DisableNameChecking
Set-MailboxAutoReplyConfiguration -Identity $identity -AutoReplyState $autoReplyState -StartTime $startTime -EndTime $endTime -InternalMessage $internalMessage -ExternalMessage $externalMessage