DSCResources/MSFT_xExchOutlookAnywhere/MSFT_xExchOutlookAnywhere.psm1
function Get-TargetResource { [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSDSCUseVerboseMessageInDSCResource", "")] [CmdletBinding()] [OutputType([System.Collections.Hashtable])] param ( [Parameter(Mandatory = $true)] [System.String] $Identity, [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()] $Credential, [Parameter()] [System.Boolean] $AllowServiceRestart = $false, [Parameter()] [System.String] $DomainController, [Parameter()] [System.String[]] $ExtendedProtectionFlags, [Parameter()] [System.String[]] $ExtendedProtectionSPNList, [Parameter()] [ValidateSet('Allow','None','Require')] [System.String] $ExtendedProtectionTokenChecking, [Parameter()] [ValidateSet('Ntlm','Basic','Negotiate')] [System.String] $ExternalClientAuthenticationMethod, [Parameter()] [System.Boolean] $ExternalClientsRequireSsl, [Parameter()] [System.String] $ExternalHostname, [Parameter()] [System.String[]] $IISAuthenticationMethods, [Parameter()] [ValidateSet('Ntlm','Basic','Negotiate')] [System.String] $InternalClientAuthenticationMethod, [Parameter()] [System.String] $InternalHostname, [Parameter()] [System.Boolean] $InternalClientsRequireSsl, [Parameter()] [System.Boolean] $SSLOffloading ) LogFunctionEntry -Parameters @{"Identity" = $Identity} -VerbosePreference $VerbosePreference #Establish remote Powershell session GetRemoteExchangeSession -Credential $Credential -CommandsToLoad 'Get-OutlookAnywhere' -VerbosePreference $VerbosePreference $RpcVdir = GetOutlookAnywhere @PSBoundParameters if ($null -ne $RpcVdir) { $returnValue = @{ Identity = $Identity InternalHostname = $RpcVdir.InternalHostname.HostnameString ExternalHostname = $RpcVdir.ExternalHostname.HostnameString InternalClientAuthenticationMethod = $RpcVdir.InternalClientAuthenticationMethod ExternalClientAuthenticationMethod = $RpcVdir.ExternalClientAuthenticationMethod IISAuthenticationMethods = $RpcVdir.IISAuthenticationMethods ExtendedProtectionFlags = $RpcVdir.ExtendedProtectionFlags ExtendedProtectionSPNList = $RpcVdir.ExtendedProtectionSPNList ExtendedProtectionTokenChecking = $RpcVdir.ExtendedProtectionTokenChecking ExternalClientsRequireSsl = $RpcVdir.ExternalClientsRequireSsl InternalClientsRequireSsl = $RpcVdir.InternalClientsRequireSsl SSLOffloading = $RpcVdir.SSLOffloading } } $returnValue } function Set-TargetResource { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [System.String] $Identity, [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()] $Credential, [Parameter()] [System.Boolean] $AllowServiceRestart = $false, [Parameter()] [System.String] $DomainController, [Parameter()] [System.String[]] $ExtendedProtectionFlags, [Parameter()] [System.String[]] $ExtendedProtectionSPNList, [Parameter()] [ValidateSet('Allow','None','Require')] [System.String] $ExtendedProtectionTokenChecking, [Parameter()] [ValidateSet('Ntlm','Basic','Negotiate')] [System.String] $ExternalClientAuthenticationMethod, [Parameter()] [System.Boolean] $ExternalClientsRequireSsl, [Parameter()] [System.String] $ExternalHostname, [Parameter()] [System.String[]] $IISAuthenticationMethods, [Parameter()] [ValidateSet('Ntlm','Basic','Negotiate')] [System.String] $InternalClientAuthenticationMethod, [Parameter()] [System.String] $InternalHostname, [Parameter()] [System.Boolean] $InternalClientsRequireSsl, [Parameter()] [System.Boolean] $SSLOffloading ) LogFunctionEntry -Parameters @{"Identity" = $Identity} -VerbosePreference $VerbosePreference #Establish remote Powershell session GetRemoteExchangeSession -Credential $Credential -CommandsToLoad 'Set-OutlookAnywhere' -VerbosePreference $VerbosePreference #Ensure an empty string is $null and not a string SetEmptyStringParamsToNull -PSBoundParametersIn $PSBoundParameters RemoveParameters -PSBoundParametersIn $PSBoundParameters -ParamsToRemove 'Credential','AllowServiceRestart' Set-OutlookAnywhere @PSBoundParameters if($AllowServiceRestart -eq $true) { Write-Verbose -Message 'Recycling MSExchangeRpcProxyAppPool and MSExchangeRpcProxyFrontEndAppPool' RestartAppPoolIfExists -Name MSExchangeRpcProxyAppPool RestartAppPoolIfExists -Name MSExchangeRpcProxyFrontEndAppPool } else { Write-Warning -Message 'The configuration will not take effect until MSExchangeRpcProxyAppPool and MSExchangeRpcProxyFrontEndAppPool are manually recycled.' } } function Test-TargetResource { [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSDSCUseVerboseMessageInDSCResource", "")] [CmdletBinding()] [OutputType([System.Boolean])] param ( [Parameter(Mandatory = $true)] [System.String] $Identity, [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()] $Credential, [Parameter()] [System.Boolean] $AllowServiceRestart = $false, [Parameter()] [System.String] $DomainController, [Parameter()] [System.String[]] $ExtendedProtectionFlags, [Parameter()] [System.String[]] $ExtendedProtectionSPNList, [Parameter()] [ValidateSet('Allow','None','Require')] [System.String] $ExtendedProtectionTokenChecking, [Parameter()] [ValidateSet('Ntlm','Basic','Negotiate')] [System.String] $ExternalClientAuthenticationMethod, [Parameter()] [System.Boolean] $ExternalClientsRequireSsl, [Parameter()] [System.String] $ExternalHostname, [Parameter()] [System.String[]] $IISAuthenticationMethods, [Parameter()] [ValidateSet('Ntlm','Basic','Negotiate')] [System.String] $InternalClientAuthenticationMethod, [Parameter()] [System.String] $InternalHostname, [Parameter()] [System.Boolean] $InternalClientsRequireSsl, [Parameter()] [System.Boolean] $SSLOffloading ) LogFunctionEntry -Parameters @{"Identity" = $Identity} -VerbosePreference $VerbosePreference #Establish remote Powershell session GetRemoteExchangeSession -Credential $Credential -CommandsToLoad 'Get-OutlookAnywhere' -VerbosePreference $VerbosePreference #Ensure an empty string is $null and not a string SetEmptyStringParamsToNull -PSBoundParametersIn $PSBoundParameters $RpcVdir = GetOutlookAnywhere @PSBoundParameters if ($null -eq $RpcVdir) { return $false } else { if (!(VerifySetting -Name 'InternalHostname' -Type 'String' -ExpectedValue $InternalHostname -ActualValue $RpcVdir.InternalHostname.HostnameString -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } if (!(VerifySetting -Name 'ExternalHostname' -Type 'String' -ExpectedValue $ExternalHostname -ActualValue $RpcVdir.ExternalHostname.HostnameString -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } if (!(VerifySetting -Name 'InternalClientAuthenticationMethod' -Type 'String' -ExpectedValue $InternalClientAuthenticationMethod -ActualValue $RpcVdir.InternalClientAuthenticationMethod -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } if (!(VerifySetting -Name 'ExternalClientAuthenticationMethod' -Type 'String' -ExpectedValue $ExternalClientAuthenticationMethod -ActualValue $RpcVdir.ExternalClientAuthenticationMethod -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } if (!(VerifySetting -Name 'ExtendedProtectionTokenChecking' -Type 'String' -ExpectedValue $ExtendedProtectionTokenChecking -ActualValue $RpcVdir.ExtendedProtectionTokenChecking -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } #ExternalClientsRequireSsl will only actually return as $true if ExternalHostname was also set if (![System.String]::IsNullOrEmpty($ExternalHostname) -and !(VerifySetting -Name 'ExternalClientsRequireSsl' -Type 'Boolean' -ExpectedValue $ExternalClientsRequireSsl -ActualValue $RpcVdir.ExternalClientsRequireSsl -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } if (!(VerifySetting -Name 'InternalClientsRequireSsl' -Type 'Boolean' -ExpectedValue $InternalClientsRequireSsl -ActualValue $RpcVdir.InternalClientsRequireSsl -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } if (!(VerifySetting -Name 'SSLOffloading' -Type 'Boolean' -ExpectedValue $SSLOffloading -ActualValue $RpcVdir.SSLOffloading -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } if (!(VerifySetting -Name 'IISAuthenticationMethods' -Type 'Array' -ExpectedValue $IISAuthenticationMethods -ActualValue $RpcVdir.IISAuthenticationMethods -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } if (!(VerifySetting -Name 'ExtendedProtectionFlags' -Type 'Array' -ExpectedValue $ExtendedProtectionFlags -ActualValue $RpcVdir.ExtendedProtectionFlags -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } if (!(VerifySetting -Name 'ExtendedProtectionSPNList' -Type 'Array' -ExpectedValue $ExtendedProtectionSPNList -ActualValue $RpcVdir.ExtendedProtectionSPNList -PSBoundParametersIn $PSBoundParameters -VerbosePreference $VerbosePreference)) { return $false } } #If the code made it this far all properties are in a desired state return $true } function GetOutlookAnywhere { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [System.String] $Identity, [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()] $Credential, [Parameter()] [System.Boolean] $AllowServiceRestart = $false, [Parameter()] [System.String] $DomainController, [Parameter()] [System.String[]] $ExtendedProtectionFlags, [Parameter()] [System.String[]] $ExtendedProtectionSPNList, [Parameter()] [ValidateSet('Allow','None','Require')] [System.String] $ExtendedProtectionTokenChecking, [Parameter()] [ValidateSet('Ntlm','Basic','Negotiate')] [System.String] $ExternalClientAuthenticationMethod, [Parameter()] [System.Boolean] $ExternalClientsRequireSsl, [Parameter()] [System.String] $ExternalHostname, [Parameter()] [System.String[]] $IISAuthenticationMethods, [Parameter()] [ValidateSet('Ntlm','Basic','Negotiate')] [System.String] $InternalClientAuthenticationMethod, [Parameter()] [System.String] $InternalHostname, [Parameter()] [System.Boolean] $InternalClientsRequireSsl, [Parameter()] [System.Boolean] $SSLOffloading ) RemoveParameters -PSBoundParametersIn $PSBoundParameters -ParamsToKeep 'Identity','DomainController' return (Get-OutlookAnywhere @PSBoundParameters) } Export-ModuleMember -Function *-TargetResource |