├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── General.md │ ├── Problem_with_resource.yml │ ├── Resource_proposal.yml │ └── config.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .markdownlint.json ├── .vscode ├── analyzersettings.psd1 ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GitVersion.yml ├── LICENSE ├── README.md ├── RequiredModules.psd1 ├── Resolve-Dependency.ps1 ├── Resolve-Dependency.psd1 ├── SECURITY.md ├── azure-pipelines.yml ├── codecov.yml ├── source ├── DSCResources │ ├── DSC_ExchAcceptedDomain │ │ ├── DSC_ExchAcceptedDomain.psm1 │ │ └── DSC_ExchAcceptedDomain.schema.mof │ ├── DSC_ExchActiveSyncVirtualDirectory │ │ ├── DSC_ExchActiveSyncVirtualDirectory.psm1 │ │ └── DSC_ExchActiveSyncVirtualDirectory.schema.mof │ ├── DSC_ExchAddressList │ │ ├── DSC_ExchAddressList.psm1 │ │ └── DSC_ExchAddressList.schema.mof │ ├── DSC_ExchAntiMalwareScanning │ │ ├── DSC_ExchAntiMalwareScanning.psm1 │ │ └── DSC_ExchAntiMalwareScanning.schema.mof │ ├── DSC_ExchAutoMountPoint │ │ ├── DSC_ExchAutoMountPoint.psm1 │ │ └── DSC_ExchAutoMountPoint.schema.mof │ ├── DSC_ExchAutodiscoverVirtualDirectory │ │ ├── DSC_ExchAutodiscoverVirtualDirectory.psm1 │ │ └── DSC_ExchAutodiscoverVirtualDirectory.schema.mof │ ├── DSC_ExchClientAccessServer │ │ ├── DSC_ExchClientAccessServer.psm1 │ │ └── DSC_ExchClientAccessServer.schema.mof │ ├── DSC_ExchDatabaseAvailabilityGroup │ │ ├── DSC_ExchDatabaseAvailabilityGroup.psm1 │ │ └── DSC_ExchDatabaseAvailabilityGroup.schema.mof │ ├── DSC_ExchDatabaseAvailabilityGroupMember │ │ ├── DSC_ExchDatabaseAvailabilityGroupMember.psm1 │ │ └── DSC_ExchDatabaseAvailabilityGroupMember.schema.mof │ ├── DSC_ExchDatabaseAvailabilityGroupNetwork │ │ ├── DSC_ExchDatabaseAvailabilityGroupNetwork.psm1 │ │ └── DSC_ExchDatabaseAvailabilityGroupNetwork.schema.mof │ ├── DSC_ExchEcpVirtualDirectory │ │ ├── DSC_ExchEcpVirtualDirectory.psm1 │ │ └── DSC_ExchEcpVirtualDirectory.schema.mof │ ├── DSC_ExchEventLogLevel │ │ ├── DSC_ExchEventLogLevel.psm1 │ │ └── DSC_ExchEventLogLevel.schema.mof │ ├── DSC_ExchExchangeCertificate │ │ ├── DSC_ExchExchangeCertificate.psm1 │ │ └── DSC_ExchExchangeCertificate.schema.mof │ ├── DSC_ExchExchangeServer │ │ ├── DSC_ExchExchangeServer.psm1 │ │ └── DSC_ExchExchangeServer.schema.mof │ ├── DSC_ExchFrontendTransportService │ │ ├── DSC_ExchFrontendTransportService.psm1 │ │ └── DSC_ExchFrontendTransportService.schema.mof │ ├── DSC_ExchImapSettings │ │ ├── DSC_ExchImapSettings.psm1 │ │ └── DSC_ExchImapSettings.schema.mof │ ├── DSC_ExchInstall │ │ ├── DSC_ExchInstall.psm1 │ │ └── DSC_ExchInstall.schema.mof │ ├── DSC_ExchJetstress │ │ ├── DSC_ExchJetstress.psm1 │ │ └── DSC_ExchJetstress.schema.mof │ ├── DSC_ExchJetstressCleanup │ │ ├── DSC_ExchJetstressCleanup.psm1 │ │ └── DSC_ExchJetstressCleanup.schema.mof │ ├── DSC_ExchMailboxDatabase │ │ ├── DSC_ExchMailboxDatabase.psm1 │ │ └── DSC_ExchMailboxDatabase.schema.mof │ ├── DSC_ExchMailboxDatabaseCopy │ │ ├── DSC_ExchMailboxDatabaseCopy.psm1 │ │ └── DSC_ExchMailboxDatabaseCopy.schema.mof │ ├── DSC_ExchMailboxServer │ │ ├── DSC_ExchMailboxServer.psm1 │ │ └── DSC_ExchMailboxServer.schema.mof │ ├── DSC_ExchMailboxTransportService │ │ ├── DSC_ExchMailboxTransportService.psm1 │ │ └── DSC_ExchMailboxTransportService.schema.mof │ ├── DSC_ExchMaintenanceMode │ │ ├── DSC_ExchMaintenanceMode.psm1 │ │ ├── DSC_ExchMaintenanceMode.schema.mof │ │ └── TransportMaintenance.psm1 │ ├── DSC_ExchMapiVirtualDirectory │ │ ├── DSC_ExchMapiVirtualDirectory.psm1 │ │ └── DSC_ExchMapiVirtualDirectory.schema.mof │ ├── DSC_ExchOabVirtualDirectory │ │ ├── DSC_ExchOabVirtualDirectory.psm1 │ │ └── DSC_ExchOabVirtualDirectory.schema.mof │ ├── DSC_ExchOutlookAnywhere │ │ ├── DSC_ExchOutlookAnywhere.psm1 │ │ └── DSC_ExchOutlookAnywhere.schema.mof │ ├── DSC_ExchOwaVirtualDirectory │ │ ├── DSC_ExchOwaVirtualDirectory.psm1 │ │ └── DSC_ExchOwaVirtualDirectory.schema.mof │ ├── DSC_ExchPopSettings │ │ ├── DSC_ExchPopSettings.psm1 │ │ └── DSC_ExchPopSettings.schema.mof │ ├── DSC_ExchPowershellVirtualDirectory │ │ ├── DSC_ExchPowerShellVirtualDirectory.psm1 │ │ └── DSC_ExchPowerShellVirtualDirectory.schema.mof │ ├── DSC_ExchReceiveConnector │ │ ├── DSC_ExchReceiveConnector.psm1 │ │ └── DSC_ExchReceiveConnector.schema.mof │ ├── DSC_ExchRemoteDomain │ │ ├── DSC_ExchRemoteDomain.psm1 │ │ └── DSC_ExchRemoteDomain.schema.mof │ ├── DSC_ExchSendConnector │ │ ├── DSC_ExchSendConnector.psm1 │ │ └── DSC_ExchSendConnector.schema.mof │ ├── DSC_ExchTransportService │ │ ├── DSC_ExchTransportService.psm1 │ │ └── DSC_ExchTransportService.schema.mof │ ├── DSC_ExchUMCallRouterSettings │ │ ├── DSC_ExchUMCallRouterSettings.psm1 │ │ └── DSC_ExchUMCallRouterSettings.schema.mof │ ├── DSC_ExchUMService │ │ ├── DSC_ExchUMService.psm1 │ │ └── DSC_ExchUMService.schema.mof │ ├── DSC_ExchWaitForADPrep │ │ ├── DSC_ExchWaitForADPrep.psm1 │ │ └── DSC_ExchWaitForADPrep.schema.mof │ ├── DSC_ExchWaitForDAG │ │ ├── DSC_ExchWaitForDAG.psm1 │ │ └── DSC_ExchWaitForDAG.schema.mof │ ├── DSC_ExchWaitForMailboxDatabase │ │ ├── DSC_ExchWaitForMailboxDatabase.psm1 │ │ └── DSC_ExchWaitForMailboxDatabase.schema.mof │ └── DSC_ExchWebServicesVirtualDirectory │ │ ├── DSC_ExchWebServicesVirtualDirectory.psm1 │ │ └── DSC_ExchWebServicesVirtualDirectory.schema.mof ├── Examples │ ├── ConfigureAutoMountPoints-FromCalculator │ │ ├── CalculatorAndScripts │ │ │ └── Servers.csv │ │ └── ConfigureAutoMountPoints-FromCalculator.ps1 │ ├── ConfigureAutoMountPoints-Manual │ │ └── ConfigureAutoMountPoints-Manual.ps1 │ ├── ConfigureDatabases-FromCalculator │ │ ├── CalculatorAndScripts │ │ │ ├── E2013Calcv7.6 - Example.xlsm │ │ │ ├── MailboxDatabaseCopies.csv │ │ │ └── MailboxDatabases.csv │ │ └── ConfigureDatabases-FromCalculator.ps1 │ ├── ConfigureDatabases-Manual │ │ └── ConfigureDatabases-Manual.ps1 │ ├── ConfigureNamespaces │ │ ├── InternetFacingSite │ │ │ └── InternetFacingSite.ps1 │ │ ├── RegionalNamespaces │ │ │ └── RegionalNamespaces.ps1 │ │ └── SingleNamespace │ │ │ └── SingleNamespace.ps1 │ ├── ConfigureVirtualDirectories │ │ └── ConfigureVirtualDirectories.ps1 │ ├── CreateAndConfigureDAG │ │ └── CreateAndConfigureDAG.ps1 │ ├── EndToEndExample │ │ ├── 1-ConfigureLCMForDeployment.ps1 │ │ ├── 10-OngoingConfiguration.ps1 │ │ ├── 2-InstallAndRunJetstress.ps1 │ │ ├── 3-CleanupJetstress.ps1 │ │ ├── 4-InstallExchange.ps1 │ │ ├── 5-ConfigureServerSettings.ps1 │ │ ├── 6-ConfigureDAG.ps1 │ │ ├── 7-ConfigurePrimaryDatabases.ps1 │ │ ├── 8-ConfigureDatabaseCopies.ps1 │ │ ├── 9-ConfigureLCMForContinuousChecking.ps1 │ │ └── Calculators │ │ │ ├── Lab │ │ │ ├── MailboxDatabaseCopies.csv │ │ │ ├── MailboxDatabases.csv │ │ │ └── Servers.csv │ │ │ └── Prod │ │ │ ├── MailboxDatabaseCopies.csv │ │ │ ├── MailboxDatabases.csv │ │ │ └── Servers.csv │ ├── InstallExchange │ │ └── InstallExchange.ps1 │ ├── JetstressAutomation │ │ ├── 1-InstallAndRunJetstress.ps1 │ │ └── 2-CleanupJetstress.ps1 │ ├── MaintenanceMode │ │ ├── MaintenanceModePrep.ps1 │ │ ├── MaintenanceModeStart.ps1 │ │ └── MaintenanceModeStop.ps1 │ ├── PostInstallationConfiguration │ │ └── PostInstallationConfiguration.ps1 │ ├── QuickStartTemplate │ │ └── QuickStartTemplate.ps1 │ └── WaitForADPrep │ │ └── WaitForADPrep.ps1 ├── ExchangeDsc.psd1 ├── ExchangeDsc.psm1 ├── Modules │ ├── ExchangeDscCalculatorHelper │ │ ├── ExchangeDscCalculatorHelper.psd1 │ │ └── ExchangeDscCalculatorHelper.psm1 │ ├── ExchangeDscDiskPart │ │ ├── ExchangeDscDiskPart.psd1 │ │ └── ExchangeDscDiskPart.psm1 │ └── ExchangeDscHelper │ │ ├── ExchangeDscHelper.psd1 │ │ └── ExchangeDscHelper.psm1 ├── WikiSource │ └── Home.md └── en-US │ └── about_ExchangeDsc.help.txt └── tests ├── Data ├── MailboxDatabaseCopiesV7.6.csv ├── MailboxDatabasesBad.csv ├── MailboxDatabasesV6.6.csv ├── MailboxDatabasesV7.6.csv ├── ServersV7.6.csv ├── TestCert1.pfx └── TestCert2.pfx ├── Integration ├── DSC_ExchActiveSyncVirtualDirectory.Integration.Tests.ps1 ├── DSC_ExchAntiMalwareScanning.Integration.Tests.ps1 ├── DSC_ExchAutoMountPoint.Integration.Tests.ps1 ├── DSC_ExchAutodiscoverVirtualDirectory.Integration.Tests.ps1 ├── DSC_ExchClientAccessServer.Integration.Tests.ps1 ├── DSC_ExchDatabaseAvailabilityGroup.Integration.Tests.ps1 ├── DSC_ExchEcpVirtualDirectory.Integration.Tests.ps1 ├── DSC_ExchEventLogLevel.Integration.Tests.ps1 ├── DSC_ExchExchangeCertificate.Integration.Tests.ps1 ├── DSC_ExchExchangeServer.Integration.Tests.ps1 ├── DSC_ExchFrontendTransportService.Integration.Tests.ps1 ├── DSC_ExchImapSettings.Integration.Tests.ps1 ├── DSC_ExchMailboxDatabase.Integration.Tests.ps1 ├── DSC_ExchMailboxServer.Integration.Tests.ps1 ├── DSC_ExchMailboxTransportService.Integration.Tests.ps1 ├── DSC_ExchMaintenanceMode.Integration.Tests.ps1 ├── DSC_ExchMapiVirtualDirectory.Integration.Tests.ps1 ├── DSC_ExchOabVirtualDirectory.Integration.Tests.ps1 ├── DSC_ExchOutlookAnywhere.Integration.Tests.ps1 ├── DSC_ExchOwaVirtualDirectory.Integration.Tests.ps1 ├── DSC_ExchPopSettings.Integration.Tests.ps1 ├── DSC_ExchPowershellVirtualDirectory.Integration.Tests.ps1 ├── DSC_ExchReceiveConnector.Integration.Tests.ps1 ├── DSC_ExchSendConnector.Integration.Tests.ps1 ├── DSC_ExchTransportService.Integration.Tests.ps1 ├── DSC_ExchUMCallRouterSettings.Integration.Tests.ps1 ├── DSC_ExchUMService.Integration.Tests.ps1 ├── DSC_ExchWebServicesVirtualDirectory.Integration.Tests.ps1 └── ExchangeDscCommon.Integration.Tests.ps1 ├── TestHelpers └── ExchangeDscTestHelper.psm1 └── Unit ├── DSC_ExchAcceptedDomain.tests.ps1 ├── DSC_ExchActiveSyncVirtualDirectory.tests.ps1 ├── DSC_ExchAddressList.tests.ps1 ├── DSC_ExchAntiMalwareScanning.tests.ps1 ├── DSC_ExchAutoMountPoint.tests.ps1 ├── DSC_ExchAutodiscoverVirtualDirectory.tests.ps1 ├── DSC_ExchClientAccessServer.tests.ps1 ├── DSC_ExchDatabaseAvailabilityGroup.tests.ps1 ├── DSC_ExchDatabaseAvailabilityGroupMember.tests.ps1 ├── DSC_ExchDatabaseAvailabilityGroupNetwork.tests.ps1 ├── DSC_ExchEcpVirtualDirectory.tests.ps1 ├── DSC_ExchEventLogLevel.tests.ps1 ├── DSC_ExchExchangeCertificate.tests.ps1 ├── DSC_ExchExchangeServer.tests.ps1 ├── DSC_ExchFrontendTransportService.tests.ps1 ├── DSC_ExchImapSettings.tests.ps1 ├── DSC_ExchInstall.tests.ps1 ├── DSC_ExchJetstress.tests.ps1 ├── DSC_ExchJetstressCleanup.tests.ps1 ├── DSC_ExchMailboxDatabase.tests.ps1 ├── DSC_ExchMailboxDatabaseCopy.tests.ps1 ├── DSC_ExchMailboxServer.tests.ps1 ├── DSC_ExchMailboxTransportService.tests.ps1 ├── DSC_ExchMaintenanceMode.tests.ps1 ├── DSC_ExchMapiVirtualDirectory.tests.ps1 ├── DSC_ExchOabVirtualDirectory.tests.ps1 ├── DSC_ExchOutlookAnywhere.tests.ps1 ├── DSC_ExchOwaVirtualDirectory.tests.ps1 ├── DSC_ExchPopSettings.tests.ps1 ├── DSC_ExchPowershellVirtualDirectory.tests.ps1 ├── DSC_ExchReceiveConnector.tests.ps1 ├── DSC_ExchRemoteDomain.tests.ps1 ├── DSC_ExchSendConnector.tests.ps1 ├── DSC_ExchTransportService.tests.ps1 ├── DSC_ExchUMCallRouterSettings.tests.ps1 ├── DSC_ExchUMService.tests.ps1 ├── DSC_ExchWaitForADPrep.tests.ps1 ├── DSC_ExchWaitForDAG.tests.ps1 ├── DSC_ExchWaitForMailboxDatabase.tests.ps1 ├── DSC_ExchWebServicesVirtualDirectory.tests.ps1 ├── ExchangeDscCalculatorHelper.tests.ps1 └── ExchangeDscHelper.tests.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.github/ISSUE_TEMPLATE/General.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Problem_with_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.github/ISSUE_TEMPLATE/Problem_with_resource.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Resource_proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.github/ISSUE_TEMPLATE/Resource_proposal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/analyzersettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.vscode/analyzersettings.psd1 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/README.md -------------------------------------------------------------------------------- /RequiredModules.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/RequiredModules.psd1 -------------------------------------------------------------------------------- /Resolve-Dependency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/Resolve-Dependency.ps1 -------------------------------------------------------------------------------- /Resolve-Dependency.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/Resolve-Dependency.psd1 -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/codecov.yml -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAcceptedDomain/DSC_ExchAcceptedDomain.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAcceptedDomain/DSC_ExchAcceptedDomain.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAcceptedDomain/DSC_ExchAcceptedDomain.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAcceptedDomain/DSC_ExchAcceptedDomain.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchActiveSyncVirtualDirectory/DSC_ExchActiveSyncVirtualDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchActiveSyncVirtualDirectory/DSC_ExchActiveSyncVirtualDirectory.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchActiveSyncVirtualDirectory/DSC_ExchActiveSyncVirtualDirectory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchActiveSyncVirtualDirectory/DSC_ExchActiveSyncVirtualDirectory.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAddressList/DSC_ExchAddressList.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAddressList/DSC_ExchAddressList.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAddressList/DSC_ExchAddressList.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAddressList/DSC_ExchAddressList.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAntiMalwareScanning/DSC_ExchAntiMalwareScanning.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAntiMalwareScanning/DSC_ExchAntiMalwareScanning.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAntiMalwareScanning/DSC_ExchAntiMalwareScanning.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAntiMalwareScanning/DSC_ExchAntiMalwareScanning.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAutoMountPoint/DSC_ExchAutoMountPoint.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAutoMountPoint/DSC_ExchAutoMountPoint.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAutoMountPoint/DSC_ExchAutoMountPoint.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAutoMountPoint/DSC_ExchAutoMountPoint.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAutodiscoverVirtualDirectory/DSC_ExchAutodiscoverVirtualDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAutodiscoverVirtualDirectory/DSC_ExchAutodiscoverVirtualDirectory.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchAutodiscoverVirtualDirectory/DSC_ExchAutodiscoverVirtualDirectory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchAutodiscoverVirtualDirectory/DSC_ExchAutodiscoverVirtualDirectory.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchClientAccessServer/DSC_ExchClientAccessServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchClientAccessServer/DSC_ExchClientAccessServer.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchClientAccessServer/DSC_ExchClientAccessServer.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchClientAccessServer/DSC_ExchClientAccessServer.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchDatabaseAvailabilityGroup/DSC_ExchDatabaseAvailabilityGroup.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchDatabaseAvailabilityGroup/DSC_ExchDatabaseAvailabilityGroup.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchDatabaseAvailabilityGroup/DSC_ExchDatabaseAvailabilityGroup.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchDatabaseAvailabilityGroup/DSC_ExchDatabaseAvailabilityGroup.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchDatabaseAvailabilityGroupMember/DSC_ExchDatabaseAvailabilityGroupMember.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchDatabaseAvailabilityGroupMember/DSC_ExchDatabaseAvailabilityGroupMember.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchDatabaseAvailabilityGroupMember/DSC_ExchDatabaseAvailabilityGroupMember.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchDatabaseAvailabilityGroupMember/DSC_ExchDatabaseAvailabilityGroupMember.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchDatabaseAvailabilityGroupNetwork/DSC_ExchDatabaseAvailabilityGroupNetwork.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchDatabaseAvailabilityGroupNetwork/DSC_ExchDatabaseAvailabilityGroupNetwork.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchDatabaseAvailabilityGroupNetwork/DSC_ExchDatabaseAvailabilityGroupNetwork.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchDatabaseAvailabilityGroupNetwork/DSC_ExchDatabaseAvailabilityGroupNetwork.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchEcpVirtualDirectory/DSC_ExchEcpVirtualDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchEcpVirtualDirectory/DSC_ExchEcpVirtualDirectory.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchEcpVirtualDirectory/DSC_ExchEcpVirtualDirectory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchEcpVirtualDirectory/DSC_ExchEcpVirtualDirectory.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchEventLogLevel/DSC_ExchEventLogLevel.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchEventLogLevel/DSC_ExchEventLogLevel.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchEventLogLevel/DSC_ExchEventLogLevel.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchEventLogLevel/DSC_ExchEventLogLevel.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchExchangeCertificate/DSC_ExchExchangeCertificate.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchExchangeCertificate/DSC_ExchExchangeCertificate.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchExchangeCertificate/DSC_ExchExchangeCertificate.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchExchangeCertificate/DSC_ExchExchangeCertificate.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchExchangeServer/DSC_ExchExchangeServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchExchangeServer/DSC_ExchExchangeServer.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchExchangeServer/DSC_ExchExchangeServer.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchExchangeServer/DSC_ExchExchangeServer.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchFrontendTransportService/DSC_ExchFrontendTransportService.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchFrontendTransportService/DSC_ExchFrontendTransportService.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchFrontendTransportService/DSC_ExchFrontendTransportService.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchFrontendTransportService/DSC_ExchFrontendTransportService.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchImapSettings/DSC_ExchImapSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchImapSettings/DSC_ExchImapSettings.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchImapSettings/DSC_ExchImapSettings.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchImapSettings/DSC_ExchImapSettings.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchInstall/DSC_ExchInstall.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchInstall/DSC_ExchInstall.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchInstall/DSC_ExchInstall.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchInstall/DSC_ExchInstall.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchJetstress/DSC_ExchJetstress.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchJetstress/DSC_ExchJetstress.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchJetstress/DSC_ExchJetstress.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchJetstress/DSC_ExchJetstress.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchJetstressCleanup/DSC_ExchJetstressCleanup.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchJetstressCleanup/DSC_ExchJetstressCleanup.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchJetstressCleanup/DSC_ExchJetstressCleanup.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchJetstressCleanup/DSC_ExchJetstressCleanup.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMailboxDatabase/DSC_ExchMailboxDatabase.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMailboxDatabase/DSC_ExchMailboxDatabase.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMailboxDatabase/DSC_ExchMailboxDatabase.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMailboxDatabase/DSC_ExchMailboxDatabase.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMailboxDatabaseCopy/DSC_ExchMailboxDatabaseCopy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMailboxDatabaseCopy/DSC_ExchMailboxDatabaseCopy.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMailboxDatabaseCopy/DSC_ExchMailboxDatabaseCopy.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMailboxDatabaseCopy/DSC_ExchMailboxDatabaseCopy.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMailboxServer/DSC_ExchMailboxServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMailboxServer/DSC_ExchMailboxServer.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMailboxServer/DSC_ExchMailboxServer.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMailboxServer/DSC_ExchMailboxServer.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMailboxTransportService/DSC_ExchMailboxTransportService.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMailboxTransportService/DSC_ExchMailboxTransportService.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMailboxTransportService/DSC_ExchMailboxTransportService.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMailboxTransportService/DSC_ExchMailboxTransportService.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMaintenanceMode/DSC_ExchMaintenanceMode.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMaintenanceMode/DSC_ExchMaintenanceMode.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMaintenanceMode/DSC_ExchMaintenanceMode.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMaintenanceMode/DSC_ExchMaintenanceMode.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMaintenanceMode/TransportMaintenance.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMaintenanceMode/TransportMaintenance.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMapiVirtualDirectory/DSC_ExchMapiVirtualDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMapiVirtualDirectory/DSC_ExchMapiVirtualDirectory.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchMapiVirtualDirectory/DSC_ExchMapiVirtualDirectory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchMapiVirtualDirectory/DSC_ExchMapiVirtualDirectory.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchOabVirtualDirectory/DSC_ExchOabVirtualDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchOabVirtualDirectory/DSC_ExchOabVirtualDirectory.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchOabVirtualDirectory/DSC_ExchOabVirtualDirectory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchOabVirtualDirectory/DSC_ExchOabVirtualDirectory.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchOutlookAnywhere/DSC_ExchOutlookAnywhere.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchOutlookAnywhere/DSC_ExchOutlookAnywhere.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchOutlookAnywhere/DSC_ExchOutlookAnywhere.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchOutlookAnywhere/DSC_ExchOutlookAnywhere.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchOwaVirtualDirectory/DSC_ExchOwaVirtualDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchOwaVirtualDirectory/DSC_ExchOwaVirtualDirectory.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchOwaVirtualDirectory/DSC_ExchOwaVirtualDirectory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchOwaVirtualDirectory/DSC_ExchOwaVirtualDirectory.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchPopSettings/DSC_ExchPopSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchPopSettings/DSC_ExchPopSettings.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchPopSettings/DSC_ExchPopSettings.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchPopSettings/DSC_ExchPopSettings.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchPowershellVirtualDirectory/DSC_ExchPowerShellVirtualDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchPowershellVirtualDirectory/DSC_ExchPowerShellVirtualDirectory.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchPowershellVirtualDirectory/DSC_ExchPowerShellVirtualDirectory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchPowershellVirtualDirectory/DSC_ExchPowerShellVirtualDirectory.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchReceiveConnector/DSC_ExchReceiveConnector.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchReceiveConnector/DSC_ExchReceiveConnector.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchReceiveConnector/DSC_ExchReceiveConnector.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchReceiveConnector/DSC_ExchReceiveConnector.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchRemoteDomain/DSC_ExchRemoteDomain.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchRemoteDomain/DSC_ExchRemoteDomain.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchRemoteDomain/DSC_ExchRemoteDomain.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchRemoteDomain/DSC_ExchRemoteDomain.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchSendConnector/DSC_ExchSendConnector.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchSendConnector/DSC_ExchSendConnector.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchSendConnector/DSC_ExchSendConnector.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchSendConnector/DSC_ExchSendConnector.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchTransportService/DSC_ExchTransportService.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchTransportService/DSC_ExchTransportService.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchTransportService/DSC_ExchTransportService.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchTransportService/DSC_ExchTransportService.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchUMCallRouterSettings/DSC_ExchUMCallRouterSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchUMCallRouterSettings/DSC_ExchUMCallRouterSettings.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchUMCallRouterSettings/DSC_ExchUMCallRouterSettings.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchUMCallRouterSettings/DSC_ExchUMCallRouterSettings.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchUMService/DSC_ExchUMService.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchUMService/DSC_ExchUMService.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchUMService/DSC_ExchUMService.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchUMService/DSC_ExchUMService.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchWaitForADPrep/DSC_ExchWaitForADPrep.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchWaitForADPrep/DSC_ExchWaitForADPrep.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchWaitForADPrep/DSC_ExchWaitForADPrep.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchWaitForADPrep/DSC_ExchWaitForADPrep.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchWaitForDAG/DSC_ExchWaitForDAG.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchWaitForDAG/DSC_ExchWaitForDAG.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchWaitForDAG/DSC_ExchWaitForDAG.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchWaitForDAG/DSC_ExchWaitForDAG.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchWaitForMailboxDatabase/DSC_ExchWaitForMailboxDatabase.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchWaitForMailboxDatabase/DSC_ExchWaitForMailboxDatabase.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchWaitForMailboxDatabase/DSC_ExchWaitForMailboxDatabase.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchWaitForMailboxDatabase/DSC_ExchWaitForMailboxDatabase.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchWebServicesVirtualDirectory/DSC_ExchWebServicesVirtualDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchWebServicesVirtualDirectory/DSC_ExchWebServicesVirtualDirectory.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ExchWebServicesVirtualDirectory/DSC_ExchWebServicesVirtualDirectory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/DSCResources/DSC_ExchWebServicesVirtualDirectory/DSC_ExchWebServicesVirtualDirectory.schema.mof -------------------------------------------------------------------------------- /source/Examples/ConfigureAutoMountPoints-FromCalculator/CalculatorAndScripts/Servers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureAutoMountPoints-FromCalculator/CalculatorAndScripts/Servers.csv -------------------------------------------------------------------------------- /source/Examples/ConfigureAutoMountPoints-FromCalculator/ConfigureAutoMountPoints-FromCalculator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureAutoMountPoints-FromCalculator/ConfigureAutoMountPoints-FromCalculator.ps1 -------------------------------------------------------------------------------- /source/Examples/ConfigureAutoMountPoints-Manual/ConfigureAutoMountPoints-Manual.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureAutoMountPoints-Manual/ConfigureAutoMountPoints-Manual.ps1 -------------------------------------------------------------------------------- /source/Examples/ConfigureDatabases-FromCalculator/CalculatorAndScripts/E2013Calcv7.6 - Example.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureDatabases-FromCalculator/CalculatorAndScripts/E2013Calcv7.6 - Example.xlsm -------------------------------------------------------------------------------- /source/Examples/ConfigureDatabases-FromCalculator/CalculatorAndScripts/MailboxDatabaseCopies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureDatabases-FromCalculator/CalculatorAndScripts/MailboxDatabaseCopies.csv -------------------------------------------------------------------------------- /source/Examples/ConfigureDatabases-FromCalculator/CalculatorAndScripts/MailboxDatabases.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureDatabases-FromCalculator/CalculatorAndScripts/MailboxDatabases.csv -------------------------------------------------------------------------------- /source/Examples/ConfigureDatabases-FromCalculator/ConfigureDatabases-FromCalculator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureDatabases-FromCalculator/ConfigureDatabases-FromCalculator.ps1 -------------------------------------------------------------------------------- /source/Examples/ConfigureDatabases-Manual/ConfigureDatabases-Manual.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureDatabases-Manual/ConfigureDatabases-Manual.ps1 -------------------------------------------------------------------------------- /source/Examples/ConfigureNamespaces/InternetFacingSite/InternetFacingSite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureNamespaces/InternetFacingSite/InternetFacingSite.ps1 -------------------------------------------------------------------------------- /source/Examples/ConfigureNamespaces/RegionalNamespaces/RegionalNamespaces.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureNamespaces/RegionalNamespaces/RegionalNamespaces.ps1 -------------------------------------------------------------------------------- /source/Examples/ConfigureNamespaces/SingleNamespace/SingleNamespace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureNamespaces/SingleNamespace/SingleNamespace.ps1 -------------------------------------------------------------------------------- /source/Examples/ConfigureVirtualDirectories/ConfigureVirtualDirectories.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/ConfigureVirtualDirectories/ConfigureVirtualDirectories.ps1 -------------------------------------------------------------------------------- /source/Examples/CreateAndConfigureDAG/CreateAndConfigureDAG.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/CreateAndConfigureDAG/CreateAndConfigureDAG.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/1-ConfigureLCMForDeployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/1-ConfigureLCMForDeployment.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/10-OngoingConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/10-OngoingConfiguration.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/2-InstallAndRunJetstress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/2-InstallAndRunJetstress.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/3-CleanupJetstress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/3-CleanupJetstress.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/4-InstallExchange.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/4-InstallExchange.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/5-ConfigureServerSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/5-ConfigureServerSettings.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/6-ConfigureDAG.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/6-ConfigureDAG.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/7-ConfigurePrimaryDatabases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/7-ConfigurePrimaryDatabases.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/8-ConfigureDatabaseCopies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/8-ConfigureDatabaseCopies.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/9-ConfigureLCMForContinuousChecking.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/9-ConfigureLCMForContinuousChecking.ps1 -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/Calculators/Lab/MailboxDatabaseCopies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/Calculators/Lab/MailboxDatabaseCopies.csv -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/Calculators/Lab/MailboxDatabases.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/Calculators/Lab/MailboxDatabases.csv -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/Calculators/Lab/Servers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/Calculators/Lab/Servers.csv -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/Calculators/Prod/MailboxDatabaseCopies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/Calculators/Prod/MailboxDatabaseCopies.csv -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/Calculators/Prod/MailboxDatabases.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/Calculators/Prod/MailboxDatabases.csv -------------------------------------------------------------------------------- /source/Examples/EndToEndExample/Calculators/Prod/Servers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/EndToEndExample/Calculators/Prod/Servers.csv -------------------------------------------------------------------------------- /source/Examples/InstallExchange/InstallExchange.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/InstallExchange/InstallExchange.ps1 -------------------------------------------------------------------------------- /source/Examples/JetstressAutomation/1-InstallAndRunJetstress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/JetstressAutomation/1-InstallAndRunJetstress.ps1 -------------------------------------------------------------------------------- /source/Examples/JetstressAutomation/2-CleanupJetstress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/JetstressAutomation/2-CleanupJetstress.ps1 -------------------------------------------------------------------------------- /source/Examples/MaintenanceMode/MaintenanceModePrep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/MaintenanceMode/MaintenanceModePrep.ps1 -------------------------------------------------------------------------------- /source/Examples/MaintenanceMode/MaintenanceModeStart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/MaintenanceMode/MaintenanceModeStart.ps1 -------------------------------------------------------------------------------- /source/Examples/MaintenanceMode/MaintenanceModeStop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/MaintenanceMode/MaintenanceModeStop.ps1 -------------------------------------------------------------------------------- /source/Examples/PostInstallationConfiguration/PostInstallationConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/PostInstallationConfiguration/PostInstallationConfiguration.ps1 -------------------------------------------------------------------------------- /source/Examples/QuickStartTemplate/QuickStartTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/QuickStartTemplate/QuickStartTemplate.ps1 -------------------------------------------------------------------------------- /source/Examples/WaitForADPrep/WaitForADPrep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Examples/WaitForADPrep/WaitForADPrep.ps1 -------------------------------------------------------------------------------- /source/ExchangeDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/ExchangeDsc.psd1 -------------------------------------------------------------------------------- /source/ExchangeDsc.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/ExchangeDsc.psm1 -------------------------------------------------------------------------------- /source/Modules/ExchangeDscCalculatorHelper/ExchangeDscCalculatorHelper.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Modules/ExchangeDscCalculatorHelper/ExchangeDscCalculatorHelper.psd1 -------------------------------------------------------------------------------- /source/Modules/ExchangeDscCalculatorHelper/ExchangeDscCalculatorHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Modules/ExchangeDscCalculatorHelper/ExchangeDscCalculatorHelper.psm1 -------------------------------------------------------------------------------- /source/Modules/ExchangeDscDiskPart/ExchangeDscDiskPart.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Modules/ExchangeDscDiskPart/ExchangeDscDiskPart.psd1 -------------------------------------------------------------------------------- /source/Modules/ExchangeDscDiskPart/ExchangeDscDiskPart.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Modules/ExchangeDscDiskPart/ExchangeDscDiskPart.psm1 -------------------------------------------------------------------------------- /source/Modules/ExchangeDscHelper/ExchangeDscHelper.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Modules/ExchangeDscHelper/ExchangeDscHelper.psd1 -------------------------------------------------------------------------------- /source/Modules/ExchangeDscHelper/ExchangeDscHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/Modules/ExchangeDscHelper/ExchangeDscHelper.psm1 -------------------------------------------------------------------------------- /source/WikiSource/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/WikiSource/Home.md -------------------------------------------------------------------------------- /source/en-US/about_ExchangeDsc.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/source/en-US/about_ExchangeDsc.help.txt -------------------------------------------------------------------------------- /tests/Data/MailboxDatabaseCopiesV7.6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Data/MailboxDatabaseCopiesV7.6.csv -------------------------------------------------------------------------------- /tests/Data/MailboxDatabasesBad.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Data/MailboxDatabasesBad.csv -------------------------------------------------------------------------------- /tests/Data/MailboxDatabasesV6.6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Data/MailboxDatabasesV6.6.csv -------------------------------------------------------------------------------- /tests/Data/MailboxDatabasesV7.6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Data/MailboxDatabasesV7.6.csv -------------------------------------------------------------------------------- /tests/Data/ServersV7.6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Data/ServersV7.6.csv -------------------------------------------------------------------------------- /tests/Data/TestCert1.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Data/TestCert1.pfx -------------------------------------------------------------------------------- /tests/Data/TestCert2.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Data/TestCert2.pfx -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchActiveSyncVirtualDirectory.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchActiveSyncVirtualDirectory.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchAntiMalwareScanning.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchAntiMalwareScanning.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchAutoMountPoint.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchAutoMountPoint.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchAutodiscoverVirtualDirectory.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchAutodiscoverVirtualDirectory.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchClientAccessServer.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchClientAccessServer.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchDatabaseAvailabilityGroup.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchDatabaseAvailabilityGroup.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchEcpVirtualDirectory.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchEcpVirtualDirectory.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchEventLogLevel.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchEventLogLevel.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchExchangeCertificate.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchExchangeCertificate.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchExchangeServer.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchExchangeServer.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchFrontendTransportService.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchFrontendTransportService.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchImapSettings.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchImapSettings.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchMailboxDatabase.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchMailboxDatabase.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchMailboxServer.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchMailboxServer.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchMailboxTransportService.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchMailboxTransportService.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchMaintenanceMode.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchMaintenanceMode.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchMapiVirtualDirectory.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchMapiVirtualDirectory.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchOabVirtualDirectory.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchOabVirtualDirectory.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchOutlookAnywhere.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchOutlookAnywhere.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchOwaVirtualDirectory.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchOwaVirtualDirectory.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchPopSettings.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchPopSettings.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchPowershellVirtualDirectory.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchPowershellVirtualDirectory.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchReceiveConnector.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchReceiveConnector.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchSendConnector.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchSendConnector.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchTransportService.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchTransportService.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchUMCallRouterSettings.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchUMCallRouterSettings.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchUMService.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchUMService.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ExchWebServicesVirtualDirectory.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/DSC_ExchWebServicesVirtualDirectory.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/ExchangeDscCommon.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Integration/ExchangeDscCommon.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/TestHelpers/ExchangeDscTestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/TestHelpers/ExchangeDscTestHelper.psm1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchAcceptedDomain.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchAcceptedDomain.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchActiveSyncVirtualDirectory.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchActiveSyncVirtualDirectory.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchAddressList.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchAddressList.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchAntiMalwareScanning.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchAntiMalwareScanning.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchAutoMountPoint.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchAutoMountPoint.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchAutodiscoverVirtualDirectory.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchAutodiscoverVirtualDirectory.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchClientAccessServer.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchClientAccessServer.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchDatabaseAvailabilityGroup.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchDatabaseAvailabilityGroup.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchDatabaseAvailabilityGroupMember.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchDatabaseAvailabilityGroupMember.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchDatabaseAvailabilityGroupNetwork.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchDatabaseAvailabilityGroupNetwork.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchEcpVirtualDirectory.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchEcpVirtualDirectory.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchEventLogLevel.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchEventLogLevel.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchExchangeCertificate.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchExchangeCertificate.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchExchangeServer.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchExchangeServer.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchFrontendTransportService.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchFrontendTransportService.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchImapSettings.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchImapSettings.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchInstall.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchInstall.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchJetstress.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchJetstress.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchJetstressCleanup.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchJetstressCleanup.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchMailboxDatabase.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchMailboxDatabase.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchMailboxDatabaseCopy.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchMailboxDatabaseCopy.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchMailboxServer.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchMailboxServer.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchMailboxTransportService.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchMailboxTransportService.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchMaintenanceMode.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchMaintenanceMode.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchMapiVirtualDirectory.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchMapiVirtualDirectory.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchOabVirtualDirectory.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchOabVirtualDirectory.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchOutlookAnywhere.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchOutlookAnywhere.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchOwaVirtualDirectory.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchOwaVirtualDirectory.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchPopSettings.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchPopSettings.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchPowershellVirtualDirectory.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchPowershellVirtualDirectory.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchReceiveConnector.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchReceiveConnector.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchRemoteDomain.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchRemoteDomain.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchSendConnector.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchSendConnector.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchTransportService.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchTransportService.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchUMCallRouterSettings.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchUMCallRouterSettings.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchUMService.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchUMService.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchWaitForADPrep.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchWaitForADPrep.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchWaitForDAG.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchWaitForDAG.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchWaitForMailboxDatabase.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchWaitForMailboxDatabase.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ExchWebServicesVirtualDirectory.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/DSC_ExchWebServicesVirtualDirectory.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/ExchangeDscCalculatorHelper.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/ExchangeDscCalculatorHelper.tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/ExchangeDscHelper.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ExchangeDsc/HEAD/tests/Unit/ExchangeDscHelper.tests.ps1 --------------------------------------------------------------------------------