├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── General.md │ ├── Problem_with_resource.yml │ ├── Resource_proposal.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── analyzersettings.psd1 └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GitVersion.yml ├── HighQualityResourceModulePlan.md ├── LICENSE ├── README.md ├── RequiredModules.psd1 ├── Resolve-Dependency.ps1 ├── Resolve-Dependency.psd1 ├── SECURITY.md ├── azure-pipelines.yml ├── codecov.yml ├── source ├── Build.psd1 ├── DSCResources │ ├── DSC_xArchive │ │ ├── DSC_xArchive.psm1 │ │ ├── DSC_xArchive.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xArchive.schema.mfl │ │ │ └── DSC_xArchive.strings.psd1 │ ├── DSC_xDSCWebService │ │ ├── DSC_xDSCWebService.psm1 │ │ ├── DSC_xDSCWebService.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_xDSCWebService.strings.psd1 │ ├── DSC_xEnvironmentResource │ │ ├── DSC_xEnvironmentResource.psm1 │ │ ├── DSC_xEnvironmentResource.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xEnvironmentResource.schema.mfl │ │ │ └── DSC_xEnvironmentResource.strings.psd1 │ ├── DSC_xGroupResource │ │ ├── DSC_xGroupResource.psm1 │ │ ├── DSC_xGroupResource.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xGroupResource.schema.mfl │ │ │ └── DSC_xGroupResource.strings.psd1 │ ├── DSC_xMsiPackage │ │ ├── DSC_xMsiPackage.psm1 │ │ ├── DSC_xMsiPackage.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xMsiPackage.schema.mfl │ │ │ └── DSC_xMsiPackage.strings.psd1 │ ├── DSC_xPSSessionConfiguration │ │ ├── DSC_xPSSessionConfiguration.psm1 │ │ ├── DSC_xPSSessionConfiguration.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_xPSSessionConfiguration.strings.psd1 │ ├── DSC_xPackageResource │ │ ├── DSC_xPackageResource.psm1 │ │ ├── DSC_xPackageResource.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xPackageResource.schema.mfl │ │ │ └── DSC_xPackageResource.strings.psd1 │ ├── DSC_xRegistryResource │ │ ├── DSC_xRegistryResource.psm1 │ │ ├── DSC_xRegistryResource.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xRegistryResource.schema.mfl │ │ │ └── DSC_xRegistryResource.strings.psd1 │ ├── DSC_xRemoteFile │ │ ├── DSC_xRemoteFile.psm1 │ │ ├── DSC_xRemoteFile.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_xRemoteFile.strings.psd1 │ ├── DSC_xScriptResource │ │ ├── DSC_xScriptResource.psm1 │ │ ├── DSC_xScriptResource.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xScriptResource.schema.mfl │ │ │ └── DSC_xScriptResource.strings.psd1 │ ├── DSC_xServiceResource │ │ ├── DSC_xServiceResource.psm1 │ │ ├── DSC_xServiceResource.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xServiceResource.schema.mfl │ │ │ └── DSC_xServiceResource.strings.psd1 │ ├── DSC_xUserResource │ │ ├── DSC_xUserResource.psm1 │ │ ├── DSC_xUserResource.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xUserResource.schema.mfl │ │ │ └── DSC_xUserResource.strings.psd1 │ ├── DSC_xWindowsFeature │ │ ├── DSC_xWindowsFeature.psm1 │ │ ├── DSC_xWindowsFeature.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xWindowsFeature.schema.mfl │ │ │ └── DSC_xWindowsFeature.strings.psd1 │ ├── DSC_xWindowsOptionalFeature │ │ ├── DSC_xWindowsOptionalFeature.psm1 │ │ ├── DSC_xWindowsOptionalFeature.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xWindowsOptionalFeature.schema.mfl │ │ │ └── DSC_xWindowsOptionalFeature.strings.psd1 │ ├── DSC_xWindowsPackageCab │ │ ├── DSC_xWindowsPackageCab.psm1 │ │ ├── DSC_xWindowsPackageCab.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xWindowsPackageCab.schema.mfl │ │ │ └── DSC_xWindowsPackageCab.strings.psd1 │ ├── DSC_xWindowsProcess │ │ ├── DSC_xWindowsProcess.psm1 │ │ ├── DSC_xWindowsProcess.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_xWindowsProcess.schema.mfl │ │ │ └── DSC_xWindowsProcess.strings.psd1 │ ├── xFileUpload │ │ ├── README.md │ │ ├── xFileUpload.psd1 │ │ └── xFileUpload.schema.psm1 │ ├── xGroupSet │ │ ├── README.md │ │ ├── xGroupSet.psd1 │ │ └── xGroupSet.schema.psm1 │ ├── xProcessSet │ │ ├── README.md │ │ ├── xProcessSet.psd1 │ │ └── xProcessSet.schema.psm1 │ ├── xServiceSet │ │ ├── README.md │ │ ├── xServiceSet.psd1 │ │ └── xServiceSet.schema.psm1 │ ├── xWindowsFeatureSet │ │ ├── README.md │ │ ├── xWindowsFeatureSet.psd1 │ │ └── xWindowsFeatureSet.schema.psm1 │ └── xWindowsOptionalFeatureSet │ │ ├── README.md │ │ ├── xWindowsOptionalFeatureSet.psd1 │ │ └── xWindowsOptionalFeatureSet.schema.psm1 ├── Examples │ ├── LCM │ │ └── 1-LCM_RegisterNode_Config.ps1 │ └── Resources │ │ ├── xArchive │ │ ├── 1-xArchive_ExpandArchiveChecksumAndForce_Config.ps1 │ │ ├── 2-xArchive_ExpandArchiveDefaultValidationAndForce_Config.ps1 │ │ ├── 3-xArchive_ExpandArchiveNoValidation_Config.ps1 │ │ ├── 4-xArchive_ExpandArchiveNoValidationCredential_Config.ps1 │ │ ├── 5-xArchive_RemoveArchiveChecksum_Config.ps1 │ │ └── 6-xArchive_RemoveArchiveNoValidation_Config.ps1 │ │ ├── xDscWebService │ │ ├── 1-xDscWebService_Preferred_Config.ps1 │ │ ├── 2-xDscWebService_RegistrationUseSQLProvider_Config.ps1 │ │ ├── 3-xDscWebService_RegistrationWin2k12and2k12R2_Config.ps1 │ │ ├── 4-xDscWebService_Registration_Config.ps1 │ │ ├── 5-xDscWebService_RegistrationWithSecurityBestPractices_Config.ps1 │ │ └── 6-xDscWebService_Removal_Config.ps1 │ │ ├── xEnvironment │ │ ├── 1-xEnvironment_AddMultiplePaths_Config.ps1 │ │ ├── 2-xEnvironment_CreateNonPathVariable_Config.ps1 │ │ ├── 3-xEnvironment_RemoveMultiplePaths_Config.ps1 │ │ └── 4-xEnvironment_RemoveVariable_Config.ps1 │ │ ├── xFileUpload │ │ └── xFileUpload_UploadToSMBShareConfig.ps1 │ │ ├── xGroup │ │ ├── xGroup_RemoveMembersConfig.ps1 │ │ └── xGroup_SetMembersConfig.ps1 │ │ ├── xGroupSet │ │ └── xGroupSet_AddMembersConfig.ps1 │ │ ├── xMsiPackage │ │ ├── 1-xMsiPackage_InstallPackage_Config.ps1 │ │ ├── 2-xMsiPackage_UninstallPackageFromFile_Config.ps1 │ │ └── 3-xMsiPackage_UninstallPackageFromHttps_Config.ps1 │ │ ├── xPSEndpoint │ │ ├── 1-xPSEndpoint_New_Config.ps1 │ │ ├── 2-xPSEndpoint_NewCustom_Config.ps1 │ │ ├── 3-xPSEndpoint_NewWithDefaults_Config.ps1 │ │ └── 4-xPSEndpoint_Remove_Config.ps1 │ │ ├── xPackage │ │ ├── 1-xPackage_InstallExeUsingCredentialsAndRegistry_Config.ps1 │ │ ├── 2-xPackage_InstallExeUsingCredentials_Config.ps1 │ │ ├── 3-xPackage_InstallMsi_Config.ps1 │ │ └── 4-xPackage_InstallMsiUsingProductId_Config.ps1 │ │ ├── xProcessSet │ │ ├── 1-xProcessSet_StartProcess_Config.ps1 │ │ └── 2-xProcessSet_StopProcess_Config.ps1 │ │ ├── xRegistry │ │ ├── 1-xRegistry_AddKey_Config.ps1 │ │ ├── 2-xRegistry_AddOrModifyValue_Config.ps1 │ │ ├── 3-xRegistry_RemoveKey_Config.ps1 │ │ └── 4-xRegistry_RemoveValue_Config.ps1 │ │ ├── xRemoteFile │ │ ├── 1-xRemoteFile_DownloadFile_Config.ps1 │ │ ├── 2-xRemoteFile_DownloadFileUsingProxy_Config.ps1 │ │ └── 3-xRemoteFile_DownloadFileWithChecksum_Config.ps1 │ │ ├── xScript │ │ └── 1-xScript_WatchFileContent_Config.ps1 │ │ ├── xService │ │ ├── 1-xService_ChangeServiceState_Config.ps1 │ │ ├── 2-xService_CreateService_Config.ps1 │ │ ├── 3-xService_CreateServiceConfigGroupManagedServiceAccount_Config.ps1 │ │ ├── 4-xService_RemoveService_Config.ps1 │ │ └── 5-xService_UpdateStartupTypeIgnoreState_Config.ps1 │ │ ├── xServiceSet │ │ ├── 1-xServiceSet_EnsureBuiltInAccount_Config.ps1 │ │ └── 2-xServiceSet_StartServices_Config.ps1 │ │ ├── xUser │ │ ├── 1-xUser_CreateUser_Config.ps1 │ │ ├── 2-xUser_CreateUserDetailed_Config.ps1 │ │ └── 3-xUser_RemoveUser_Config.ps1 │ │ ├── xWindowsFeature │ │ ├── 1-xWindowsFeature_AddFeature_Config.ps1 │ │ ├── 2-xWindowsFeature_AddFeatureUsingCredential_Config.ps1 │ │ ├── 3-xWindowsFeature_AddFeatureWithLogPath_Config.ps1 │ │ └── 4-xWindowsFeature_RemoveFeature_Config.ps1 │ │ ├── xWindowsFeatureSet │ │ ├── 1-xWindowsFeatureSet_AddFeatures_Config.ps1 │ │ └── 2-xWindowsFeatureSet_RemoveFeatures_Config.ps1 │ │ ├── xWindowsOptionalFeature │ │ ├── 1-xWindowsOptionalFeature_Enable_Config.ps1 │ │ └── 2-xWindowsOptionalFeature_Disable_Config.ps1 │ │ ├── xWindowsOptionalFeatureSet │ │ ├── 1-xWindowsOptionalFeatureSet_Enable_Config.ps1 │ │ └── 2-xWindowsOptionalFeatureSet_Disable_Config.ps1 │ │ ├── xWindowsPackageCab │ │ └── 1-xWindowsPackageCab_InstallPackage_Config.ps1 │ │ └── xWindowsProcess │ │ ├── 1-xWindowsProcess_StartProcess_Config.ps1 │ │ ├── 2-xWindowsProcess_StartProcessUnderUser_Config.ps1 │ │ ├── 3-xWindowsProcess_StopProcess_Config.ps1 │ │ └── 4-xWindowsProcess_StopProcessUnderUser_Config.ps1 ├── Modules │ ├── DscPullServerSetup │ │ ├── DscPullServerSetup.psm1 │ │ ├── DscPullServerSetupTest │ │ │ └── DscPullServerSetupTest.ps1 │ │ ├── README.md │ │ └── en-US │ │ │ └── DscPullServerSetup.strings.psd1 │ ├── xPSDesiredStateConfiguration.Common │ │ ├── en-US │ │ │ └── xPSDesiredStateConfiguration.Common.strings.psd1 │ │ ├── xPSDesiredStateConfiguration.Common.psd1 │ │ └── xPSDesiredStateConfiguration.Common.psm1 │ ├── xPSDesiredStateConfiguration.Firewall │ │ ├── en-US │ │ │ └── xPSDesiredStateConfiguration.Firewall.strings.psd1 │ │ ├── xPSDesiredStateConfiguration.Firewall.psd1 │ │ └── xPSDesiredStateConfiguration.Firewall.psm1 │ ├── xPSDesiredStateConfiguration.PSWSIIS │ │ ├── en-US │ │ │ └── xPSDesiredStateConfiguration.PSWSIIS.strings.psd1 │ │ ├── xPSDesiredStateConfiguration.PSWSIIS.psd1 │ │ └── xPSDesiredStateConfiguration.PSWSIIS.psm1 │ └── xPSDesiredStateConfiguration.Security │ │ ├── en-US │ │ └── xPSDesiredStateConfiguration.Security.strings.psd1 │ │ ├── xPSDesiredStateConfiguration.Security.psd1 │ │ └── xPSDesiredStateConfiguration.Security.psm1 ├── ResourceDesignerScripts │ ├── GenerateXRemoteFileSchema.ps1 │ └── New-PSSessionConfigurationResource.ps1 ├── WikiSource │ └── Home.md ├── en-US │ └── about_xPSDesiredStateConfiguration.help.txt └── xPSDesiredStateConfiguration.psd1 └── tests ├── Integration ├── DSCTestService.cs ├── DSCTestServiceNew.cs ├── DSC_xArchive.EndToEnd.Tests.ps1 ├── DSC_xArchive.Integration.Tests.ps1 ├── DSC_xArchive_CredentialOnly.config.ps1 ├── DSC_xArchive_ValidateAndChecksum.config.ps1 ├── DSC_xArchive_ValidateOnly.config.ps1 ├── DSC_xDSCWebService.Integration.tests.ps1 ├── DSC_xDSCWebService.config.ps1 ├── DSC_xEnvironmentResource.EndToEnd.Tests.ps1 ├── DSC_xEnvironmentResource.Integration.Tests.ps1 ├── DSC_xEnvironmentResource.config.ps1 ├── DSC_xGroupResource.Integration.Tests.ps1 ├── DSC_xGroupResource_Members.config.ps1 ├── DSC_xGroupResource_MembersToIncludeExclude.config.ps1 ├── DSC_xGroupResource_NoMembers.config.ps1 ├── DSC_xMsiPackage.EndToEnd.Tests.ps1 ├── DSC_xMsiPackage.Integration.Tests.ps1 ├── DSC_xMsiPackage_LogPath.ps1 ├── DSC_xMsiPackage_NoOptionalParameters.ps1 ├── DSC_xPackageResource.Integration.Tests.ps1 ├── DSC_xRegistryResource.EndToEnd.Tests.ps1 ├── DSC_xRegistryResource.Integration.Tests.ps1 ├── DSC_xRegistryResource_KeyAndNameOnly.config.ps1 ├── DSC_xRegistryResource_WithDataAndType.config.ps1 ├── DSC_xRemoteFile.EndToEnd.Tests.ps1 ├── DSC_xRemoteFile_DownloadFile.config.ps1 ├── DSC_xRemoteFile_DownloadFileWithChecksum.config.ps1 ├── DSC_xScriptResource.Integration.Tests.ps1 ├── DSC_xScriptResource_NoCredential.config.ps1 ├── DSC_xScriptResource_WithCredential.config.ps1 ├── DSC_xServiceResource.EndToEnd.Tests.ps1 ├── DSC_xServiceResource_AllExceptCredential.config.ps1 ├── DSC_xServiceResource_CredentialOnly.config.ps1 ├── DSC_xUserResource.Integration.Tests.ps1 ├── DSC_xUserResource.config.ps1 ├── DSC_xWindowsFeature.Integration.Tests.ps1 ├── DSC_xWindowsFeature.config.ps1 ├── DSC_xWindowsOptionalFeature.Integration.Tests.ps1 ├── DSC_xWindowsOptionalFeature.config.ps1 ├── DSC_xWindowsPackageCab.Integration.Tests.ps1 ├── DSC_xWindowsPackageCab.config.ps1 ├── DSC_xWindowsProcess.Integration.Tests.ps1 ├── DSC_xWindowsProcess.config.ps1 ├── DSC_xWindowsProcessWithCredential.config.ps1 ├── xFileUpload.Integration.Tests.ps1 ├── xFileUpload.config.ps1 ├── xGroupSet.Integration.Tests.ps1 ├── xGroupSet.config.ps1 ├── xProcessSet.Integration.Tests.ps1 ├── xProcessSet.config.ps1 ├── xServiceSet.Integration.Tests.ps1 ├── xServiceSet_AllExceptBuiltInAccount.config.ps1 ├── xServiceSet_BuiltInAccountOnly.config.ps1 ├── xWindowsFeatureSet.Integration.Tests.ps1 ├── xWindowsFeatureSet.config.ps1 ├── xWindowsOptionalFeatureSet.Integration.Tests.ps1 └── xWindowsOptionalFeatureSet.config.ps1 ├── TestHelpers ├── CommonTestHelper.psm1 ├── DSC_xArchive.TestHelper.psm1 ├── DSC_xGroupResource.TestHelper.psm1 ├── DSC_xPackageResource.TestHelper.psm1 ├── DSC_xRegistryResource.TestHelper.psm1 ├── DSC_xServiceResource.TestHelper.psm1 ├── DSC_xUserResource.TestHelper.psm1 └── DSC_xWindowsProcess.TestHelper.psm1 └── Unit ├── DSC_xArchive.Tests.ps1 ├── DSC_xDSCWebService.Tests.ps1 ├── DSC_xEnvironmentResource.Tests.ps1 ├── DSC_xGroupResource.Tests.ps1 ├── DSC_xMsiPackage.Tests.ps1 ├── DSC_xPackageResource.Tests.ps1 ├── DSC_xRegistryResource.Tests.ps1 ├── DSC_xRemoteFile.Tests.ps1 ├── DSC_xScriptResource.Tests.ps1 ├── DSC_xServiceResource.Tests.ps1 ├── DSC_xUserResource.Tests.ps1 ├── DSC_xWindowsFeature.Tests.ps1 ├── DSC_xWindowsOptionalFeature.Tests.ps1 ├── DSC_xWindowsPackageCab.Tests.ps1 ├── DSC_xWindowsProcess.Tests.ps1 └── xPSDesiredStateConfiguration.Common.Tests.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.github/ISSUE_TEMPLATE/General.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Problem_with_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.github/ISSUE_TEMPLATE/Problem_with_resource.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Resource_proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.github/ISSUE_TEMPLATE/Resource_proposal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/analyzersettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.vscode/analyzersettings.psd1 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /HighQualityResourceModulePlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/HighQualityResourceModulePlan.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/README.md -------------------------------------------------------------------------------- /RequiredModules.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/RequiredModules.psd1 -------------------------------------------------------------------------------- /Resolve-Dependency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/Resolve-Dependency.ps1 -------------------------------------------------------------------------------- /Resolve-Dependency.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/Resolve-Dependency.psd1 -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/codecov.yml -------------------------------------------------------------------------------- /source/Build.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Build.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xArchive/DSC_xArchive.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xArchive/DSC_xArchive.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xArchive/DSC_xArchive.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xArchive/DSC_xArchive.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xArchive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xArchive/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xArchive/en-US/DSC_xArchive.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xArchive/en-US/DSC_xArchive.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xArchive/en-US/DSC_xArchive.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xArchive/en-US/DSC_xArchive.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xDSCWebService/DSC_xDSCWebService.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xDSCWebService/DSC_xDSCWebService.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xDSCWebService/DSC_xDSCWebService.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xDSCWebService/DSC_xDSCWebService.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xDSCWebService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xDSCWebService/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xDSCWebService/en-US/DSC_xDSCWebService.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xDSCWebService/en-US/DSC_xDSCWebService.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xEnvironmentResource/DSC_xEnvironmentResource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xEnvironmentResource/DSC_xEnvironmentResource.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xEnvironmentResource/DSC_xEnvironmentResource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xEnvironmentResource/DSC_xEnvironmentResource.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xEnvironmentResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xEnvironmentResource/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xEnvironmentResource/en-US/DSC_xEnvironmentResource.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xEnvironmentResource/en-US/DSC_xEnvironmentResource.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xEnvironmentResource/en-US/DSC_xEnvironmentResource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xEnvironmentResource/en-US/DSC_xEnvironmentResource.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xGroupResource/DSC_xGroupResource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xGroupResource/DSC_xGroupResource.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xGroupResource/DSC_xGroupResource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xGroupResource/DSC_xGroupResource.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xGroupResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xGroupResource/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xGroupResource/en-US/DSC_xGroupResource.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xGroupResource/en-US/DSC_xGroupResource.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xGroupResource/en-US/DSC_xGroupResource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xGroupResource/en-US/DSC_xGroupResource.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xMsiPackage/DSC_xMsiPackage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xMsiPackage/DSC_xMsiPackage.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xMsiPackage/DSC_xMsiPackage.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xMsiPackage/DSC_xMsiPackage.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xMsiPackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xMsiPackage/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xMsiPackage/en-US/DSC_xMsiPackage.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xMsiPackage/en-US/DSC_xMsiPackage.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xMsiPackage/en-US/DSC_xMsiPackage.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xMsiPackage/en-US/DSC_xMsiPackage.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xPSSessionConfiguration/DSC_xPSSessionConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xPSSessionConfiguration/DSC_xPSSessionConfiguration.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xPSSessionConfiguration/DSC_xPSSessionConfiguration.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xPSSessionConfiguration/DSC_xPSSessionConfiguration.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xPSSessionConfiguration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xPSSessionConfiguration/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xPSSessionConfiguration/en-US/DSC_xPSSessionConfiguration.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xPSSessionConfiguration/en-US/DSC_xPSSessionConfiguration.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xPackageResource/DSC_xPackageResource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xPackageResource/DSC_xPackageResource.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xPackageResource/DSC_xPackageResource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xPackageResource/DSC_xPackageResource.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xPackageResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xPackageResource/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xPackageResource/en-US/DSC_xPackageResource.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xPackageResource/en-US/DSC_xPackageResource.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xPackageResource/en-US/DSC_xPackageResource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xPackageResource/en-US/DSC_xPackageResource.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xRegistryResource/DSC_xRegistryResource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xRegistryResource/DSC_xRegistryResource.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xRegistryResource/DSC_xRegistryResource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xRegistryResource/DSC_xRegistryResource.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xRegistryResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xRegistryResource/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xRegistryResource/en-US/DSC_xRegistryResource.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xRegistryResource/en-US/DSC_xRegistryResource.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xRegistryResource/en-US/DSC_xRegistryResource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xRegistryResource/en-US/DSC_xRegistryResource.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xRemoteFile/DSC_xRemoteFile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xRemoteFile/DSC_xRemoteFile.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xRemoteFile/DSC_xRemoteFile.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xRemoteFile/DSC_xRemoteFile.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xRemoteFile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xRemoteFile/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xRemoteFile/en-US/DSC_xRemoteFile.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xRemoteFile/en-US/DSC_xRemoteFile.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xScriptResource/DSC_xScriptResource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xScriptResource/DSC_xScriptResource.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xScriptResource/DSC_xScriptResource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xScriptResource/DSC_xScriptResource.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xScriptResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xScriptResource/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xScriptResource/en-US/DSC_xScriptResource.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xScriptResource/en-US/DSC_xScriptResource.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xScriptResource/en-US/DSC_xScriptResource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xScriptResource/en-US/DSC_xScriptResource.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xServiceResource/DSC_xServiceResource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xServiceResource/DSC_xServiceResource.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xServiceResource/DSC_xServiceResource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xServiceResource/DSC_xServiceResource.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xServiceResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xServiceResource/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xServiceResource/en-US/DSC_xServiceResource.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xServiceResource/en-US/DSC_xServiceResource.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xServiceResource/en-US/DSC_xServiceResource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xServiceResource/en-US/DSC_xServiceResource.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xUserResource/DSC_xUserResource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xUserResource/DSC_xUserResource.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xUserResource/DSC_xUserResource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xUserResource/DSC_xUserResource.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xUserResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xUserResource/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xUserResource/en-US/DSC_xUserResource.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xUserResource/en-US/DSC_xUserResource.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xUserResource/en-US/DSC_xUserResource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xUserResource/en-US/DSC_xUserResource.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsFeature/DSC_xWindowsFeature.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsFeature/DSC_xWindowsFeature.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsFeature/DSC_xWindowsFeature.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsFeature/DSC_xWindowsFeature.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsFeature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsFeature/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsFeature/en-US/DSC_xWindowsFeature.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsFeature/en-US/DSC_xWindowsFeature.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsFeature/en-US/DSC_xWindowsFeature.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsFeature/en-US/DSC_xWindowsFeature.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsOptionalFeature/DSC_xWindowsOptionalFeature.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsOptionalFeature/DSC_xWindowsOptionalFeature.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsOptionalFeature/DSC_xWindowsOptionalFeature.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsOptionalFeature/DSC_xWindowsOptionalFeature.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsOptionalFeature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsOptionalFeature/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsOptionalFeature/en-US/DSC_xWindowsOptionalFeature.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsOptionalFeature/en-US/DSC_xWindowsOptionalFeature.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsOptionalFeature/en-US/DSC_xWindowsOptionalFeature.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsOptionalFeature/en-US/DSC_xWindowsOptionalFeature.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsPackageCab/DSC_xWindowsPackageCab.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsPackageCab/DSC_xWindowsPackageCab.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsPackageCab/DSC_xWindowsPackageCab.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsPackageCab/DSC_xWindowsPackageCab.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsPackageCab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsPackageCab/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsPackageCab/en-US/DSC_xWindowsPackageCab.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsPackageCab/en-US/DSC_xWindowsPackageCab.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsPackageCab/en-US/DSC_xWindowsPackageCab.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsPackageCab/en-US/DSC_xWindowsPackageCab.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsProcess/DSC_xWindowsProcess.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsProcess/DSC_xWindowsProcess.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsProcess/DSC_xWindowsProcess.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsProcess/DSC_xWindowsProcess.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsProcess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsProcess/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsProcess/en-US/DSC_xWindowsProcess.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsProcess/en-US/DSC_xWindowsProcess.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_xWindowsProcess/en-US/DSC_xWindowsProcess.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/DSC_xWindowsProcess/en-US/DSC_xWindowsProcess.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/xFileUpload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xFileUpload/README.md -------------------------------------------------------------------------------- /source/DSCResources/xFileUpload/xFileUpload.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xFileUpload/xFileUpload.psd1 -------------------------------------------------------------------------------- /source/DSCResources/xFileUpload/xFileUpload.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xFileUpload/xFileUpload.schema.psm1 -------------------------------------------------------------------------------- /source/DSCResources/xGroupSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xGroupSet/README.md -------------------------------------------------------------------------------- /source/DSCResources/xGroupSet/xGroupSet.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xGroupSet/xGroupSet.psd1 -------------------------------------------------------------------------------- /source/DSCResources/xGroupSet/xGroupSet.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xGroupSet/xGroupSet.schema.psm1 -------------------------------------------------------------------------------- /source/DSCResources/xProcessSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xProcessSet/README.md -------------------------------------------------------------------------------- /source/DSCResources/xProcessSet/xProcessSet.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xProcessSet/xProcessSet.psd1 -------------------------------------------------------------------------------- /source/DSCResources/xProcessSet/xProcessSet.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xProcessSet/xProcessSet.schema.psm1 -------------------------------------------------------------------------------- /source/DSCResources/xServiceSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xServiceSet/README.md -------------------------------------------------------------------------------- /source/DSCResources/xServiceSet/xServiceSet.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xServiceSet/xServiceSet.psd1 -------------------------------------------------------------------------------- /source/DSCResources/xServiceSet/xServiceSet.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xServiceSet/xServiceSet.schema.psm1 -------------------------------------------------------------------------------- /source/DSCResources/xWindowsFeatureSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xWindowsFeatureSet/README.md -------------------------------------------------------------------------------- /source/DSCResources/xWindowsFeatureSet/xWindowsFeatureSet.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xWindowsFeatureSet/xWindowsFeatureSet.psd1 -------------------------------------------------------------------------------- /source/DSCResources/xWindowsFeatureSet/xWindowsFeatureSet.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xWindowsFeatureSet/xWindowsFeatureSet.schema.psm1 -------------------------------------------------------------------------------- /source/DSCResources/xWindowsOptionalFeatureSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xWindowsOptionalFeatureSet/README.md -------------------------------------------------------------------------------- /source/DSCResources/xWindowsOptionalFeatureSet/xWindowsOptionalFeatureSet.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xWindowsOptionalFeatureSet/xWindowsOptionalFeatureSet.psd1 -------------------------------------------------------------------------------- /source/DSCResources/xWindowsOptionalFeatureSet/xWindowsOptionalFeatureSet.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/DSCResources/xWindowsOptionalFeatureSet/xWindowsOptionalFeatureSet.schema.psm1 -------------------------------------------------------------------------------- /source/Examples/LCM/1-LCM_RegisterNode_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/LCM/1-LCM_RegisterNode_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xArchive/1-xArchive_ExpandArchiveChecksumAndForce_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xArchive/1-xArchive_ExpandArchiveChecksumAndForce_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xArchive/2-xArchive_ExpandArchiveDefaultValidationAndForce_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xArchive/2-xArchive_ExpandArchiveDefaultValidationAndForce_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xArchive/3-xArchive_ExpandArchiveNoValidation_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xArchive/3-xArchive_ExpandArchiveNoValidation_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xArchive/4-xArchive_ExpandArchiveNoValidationCredential_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xArchive/4-xArchive_ExpandArchiveNoValidationCredential_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xArchive/5-xArchive_RemoveArchiveChecksum_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xArchive/5-xArchive_RemoveArchiveChecksum_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xArchive/6-xArchive_RemoveArchiveNoValidation_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xArchive/6-xArchive_RemoveArchiveNoValidation_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xDscWebService/1-xDscWebService_Preferred_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xDscWebService/1-xDscWebService_Preferred_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xDscWebService/2-xDscWebService_RegistrationUseSQLProvider_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xDscWebService/2-xDscWebService_RegistrationUseSQLProvider_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xDscWebService/3-xDscWebService_RegistrationWin2k12and2k12R2_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xDscWebService/3-xDscWebService_RegistrationWin2k12and2k12R2_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xDscWebService/4-xDscWebService_Registration_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xDscWebService/4-xDscWebService_Registration_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xDscWebService/5-xDscWebService_RegistrationWithSecurityBestPractices_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xDscWebService/5-xDscWebService_RegistrationWithSecurityBestPractices_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xDscWebService/6-xDscWebService_Removal_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xDscWebService/6-xDscWebService_Removal_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xEnvironment/1-xEnvironment_AddMultiplePaths_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xEnvironment/1-xEnvironment_AddMultiplePaths_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xEnvironment/2-xEnvironment_CreateNonPathVariable_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xEnvironment/2-xEnvironment_CreateNonPathVariable_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xEnvironment/3-xEnvironment_RemoveMultiplePaths_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xEnvironment/3-xEnvironment_RemoveMultiplePaths_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xEnvironment/4-xEnvironment_RemoveVariable_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xEnvironment/4-xEnvironment_RemoveVariable_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xFileUpload/xFileUpload_UploadToSMBShareConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xFileUpload/xFileUpload_UploadToSMBShareConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xGroup/xGroup_RemoveMembersConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xGroup/xGroup_RemoveMembersConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xGroup/xGroup_SetMembersConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xGroup/xGroup_SetMembersConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xGroupSet/xGroupSet_AddMembersConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xGroupSet/xGroupSet_AddMembersConfig.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xMsiPackage/1-xMsiPackage_InstallPackage_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xMsiPackage/1-xMsiPackage_InstallPackage_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xMsiPackage/2-xMsiPackage_UninstallPackageFromFile_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xMsiPackage/2-xMsiPackage_UninstallPackageFromFile_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xMsiPackage/3-xMsiPackage_UninstallPackageFromHttps_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xMsiPackage/3-xMsiPackage_UninstallPackageFromHttps_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xPSEndpoint/1-xPSEndpoint_New_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xPSEndpoint/1-xPSEndpoint_New_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xPSEndpoint/2-xPSEndpoint_NewCustom_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xPSEndpoint/2-xPSEndpoint_NewCustom_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xPSEndpoint/3-xPSEndpoint_NewWithDefaults_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xPSEndpoint/3-xPSEndpoint_NewWithDefaults_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xPSEndpoint/4-xPSEndpoint_Remove_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xPSEndpoint/4-xPSEndpoint_Remove_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xPackage/1-xPackage_InstallExeUsingCredentialsAndRegistry_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xPackage/1-xPackage_InstallExeUsingCredentialsAndRegistry_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xPackage/2-xPackage_InstallExeUsingCredentials_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xPackage/2-xPackage_InstallExeUsingCredentials_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xPackage/3-xPackage_InstallMsi_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xPackage/3-xPackage_InstallMsi_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xPackage/4-xPackage_InstallMsiUsingProductId_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xPackage/4-xPackage_InstallMsiUsingProductId_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xProcessSet/1-xProcessSet_StartProcess_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xProcessSet/1-xProcessSet_StartProcess_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xProcessSet/2-xProcessSet_StopProcess_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xProcessSet/2-xProcessSet_StopProcess_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xRegistry/1-xRegistry_AddKey_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xRegistry/1-xRegistry_AddKey_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xRegistry/2-xRegistry_AddOrModifyValue_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xRegistry/2-xRegistry_AddOrModifyValue_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xRegistry/3-xRegistry_RemoveKey_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xRegistry/3-xRegistry_RemoveKey_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xRegistry/4-xRegistry_RemoveValue_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xRegistry/4-xRegistry_RemoveValue_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xRemoteFile/1-xRemoteFile_DownloadFile_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xRemoteFile/1-xRemoteFile_DownloadFile_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xRemoteFile/2-xRemoteFile_DownloadFileUsingProxy_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xRemoteFile/2-xRemoteFile_DownloadFileUsingProxy_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xRemoteFile/3-xRemoteFile_DownloadFileWithChecksum_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xRemoteFile/3-xRemoteFile_DownloadFileWithChecksum_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xScript/1-xScript_WatchFileContent_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xScript/1-xScript_WatchFileContent_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xService/1-xService_ChangeServiceState_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xService/1-xService_ChangeServiceState_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xService/2-xService_CreateService_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xService/2-xService_CreateService_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xService/3-xService_CreateServiceConfigGroupManagedServiceAccount_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xService/3-xService_CreateServiceConfigGroupManagedServiceAccount_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xService/4-xService_RemoveService_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xService/4-xService_RemoveService_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xService/5-xService_UpdateStartupTypeIgnoreState_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xService/5-xService_UpdateStartupTypeIgnoreState_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xServiceSet/1-xServiceSet_EnsureBuiltInAccount_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xServiceSet/1-xServiceSet_EnsureBuiltInAccount_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xServiceSet/2-xServiceSet_StartServices_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xServiceSet/2-xServiceSet_StartServices_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xUser/1-xUser_CreateUser_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xUser/1-xUser_CreateUser_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xUser/2-xUser_CreateUserDetailed_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xUser/2-xUser_CreateUserDetailed_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xUser/3-xUser_RemoveUser_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xUser/3-xUser_RemoveUser_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsFeature/1-xWindowsFeature_AddFeature_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsFeature/1-xWindowsFeature_AddFeature_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsFeature/2-xWindowsFeature_AddFeatureUsingCredential_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsFeature/2-xWindowsFeature_AddFeatureUsingCredential_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsFeature/3-xWindowsFeature_AddFeatureWithLogPath_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsFeature/3-xWindowsFeature_AddFeatureWithLogPath_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsFeature/4-xWindowsFeature_RemoveFeature_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsFeature/4-xWindowsFeature_RemoveFeature_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsFeatureSet/1-xWindowsFeatureSet_AddFeatures_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsFeatureSet/1-xWindowsFeatureSet_AddFeatures_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsFeatureSet/2-xWindowsFeatureSet_RemoveFeatures_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsFeatureSet/2-xWindowsFeatureSet_RemoveFeatures_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsOptionalFeature/1-xWindowsOptionalFeature_Enable_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsOptionalFeature/1-xWindowsOptionalFeature_Enable_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsOptionalFeature/2-xWindowsOptionalFeature_Disable_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsOptionalFeature/2-xWindowsOptionalFeature_Disable_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsOptionalFeatureSet/1-xWindowsOptionalFeatureSet_Enable_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsOptionalFeatureSet/1-xWindowsOptionalFeatureSet_Enable_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsOptionalFeatureSet/2-xWindowsOptionalFeatureSet_Disable_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsOptionalFeatureSet/2-xWindowsOptionalFeatureSet_Disable_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsPackageCab/1-xWindowsPackageCab_InstallPackage_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsPackageCab/1-xWindowsPackageCab_InstallPackage_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsProcess/1-xWindowsProcess_StartProcess_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsProcess/1-xWindowsProcess_StartProcess_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsProcess/2-xWindowsProcess_StartProcessUnderUser_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsProcess/2-xWindowsProcess_StartProcessUnderUser_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsProcess/3-xWindowsProcess_StopProcess_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsProcess/3-xWindowsProcess_StopProcess_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsProcess/4-xWindowsProcess_StopProcessUnderUser_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Examples/Resources/xWindowsProcess/4-xWindowsProcess_StopProcessUnderUser_Config.ps1 -------------------------------------------------------------------------------- /source/Modules/DscPullServerSetup/DscPullServerSetup.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/DscPullServerSetup/DscPullServerSetup.psm1 -------------------------------------------------------------------------------- /source/Modules/DscPullServerSetup/DscPullServerSetupTest/DscPullServerSetupTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/DscPullServerSetup/DscPullServerSetupTest/DscPullServerSetupTest.ps1 -------------------------------------------------------------------------------- /source/Modules/DscPullServerSetup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/DscPullServerSetup/README.md -------------------------------------------------------------------------------- /source/Modules/DscPullServerSetup/en-US/DscPullServerSetup.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/DscPullServerSetup/en-US/DscPullServerSetup.strings.psd1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.Common/en-US/xPSDesiredStateConfiguration.Common.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.Common/en-US/xPSDesiredStateConfiguration.Common.strings.psd1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.Common/xPSDesiredStateConfiguration.Common.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.Common/xPSDesiredStateConfiguration.Common.psd1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.Common/xPSDesiredStateConfiguration.Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.Common/xPSDesiredStateConfiguration.Common.psm1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.Firewall/en-US/xPSDesiredStateConfiguration.Firewall.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.Firewall/en-US/xPSDesiredStateConfiguration.Firewall.strings.psd1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.Firewall/xPSDesiredStateConfiguration.Firewall.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.Firewall/xPSDesiredStateConfiguration.Firewall.psd1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.Firewall/xPSDesiredStateConfiguration.Firewall.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.Firewall/xPSDesiredStateConfiguration.Firewall.psm1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.PSWSIIS/en-US/xPSDesiredStateConfiguration.PSWSIIS.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.PSWSIIS/en-US/xPSDesiredStateConfiguration.PSWSIIS.strings.psd1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.PSWSIIS/xPSDesiredStateConfiguration.PSWSIIS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.PSWSIIS/xPSDesiredStateConfiguration.PSWSIIS.psd1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.PSWSIIS/xPSDesiredStateConfiguration.PSWSIIS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.PSWSIIS/xPSDesiredStateConfiguration.PSWSIIS.psm1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.Security/en-US/xPSDesiredStateConfiguration.Security.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.Security/en-US/xPSDesiredStateConfiguration.Security.strings.psd1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.Security/xPSDesiredStateConfiguration.Security.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.Security/xPSDesiredStateConfiguration.Security.psd1 -------------------------------------------------------------------------------- /source/Modules/xPSDesiredStateConfiguration.Security/xPSDesiredStateConfiguration.Security.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/Modules/xPSDesiredStateConfiguration.Security/xPSDesiredStateConfiguration.Security.psm1 -------------------------------------------------------------------------------- /source/ResourceDesignerScripts/GenerateXRemoteFileSchema.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/ResourceDesignerScripts/GenerateXRemoteFileSchema.ps1 -------------------------------------------------------------------------------- /source/ResourceDesignerScripts/New-PSSessionConfigurationResource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/ResourceDesignerScripts/New-PSSessionConfigurationResource.ps1 -------------------------------------------------------------------------------- /source/WikiSource/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/WikiSource/Home.md -------------------------------------------------------------------------------- /source/en-US/about_xPSDesiredStateConfiguration.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/en-US/about_xPSDesiredStateConfiguration.help.txt -------------------------------------------------------------------------------- /source/xPSDesiredStateConfiguration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/source/xPSDesiredStateConfiguration.psd1 -------------------------------------------------------------------------------- /tests/Integration/DSCTestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSCTestService.cs -------------------------------------------------------------------------------- /tests/Integration/DSCTestServiceNew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSCTestServiceNew.cs -------------------------------------------------------------------------------- /tests/Integration/DSC_xArchive.EndToEnd.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xArchive.EndToEnd.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xArchive.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xArchive.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xArchive_CredentialOnly.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xArchive_CredentialOnly.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xArchive_ValidateAndChecksum.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xArchive_ValidateAndChecksum.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xArchive_ValidateOnly.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xArchive_ValidateOnly.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xDSCWebService.Integration.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xDSCWebService.Integration.tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xDSCWebService.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xDSCWebService.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xEnvironmentResource.EndToEnd.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xEnvironmentResource.EndToEnd.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xEnvironmentResource.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xEnvironmentResource.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xEnvironmentResource.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xEnvironmentResource.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xGroupResource.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xGroupResource.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xGroupResource_Members.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xGroupResource_Members.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xGroupResource_MembersToIncludeExclude.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xGroupResource_MembersToIncludeExclude.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xGroupResource_NoMembers.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xGroupResource_NoMembers.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xMsiPackage.EndToEnd.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xMsiPackage.EndToEnd.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xMsiPackage.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xMsiPackage.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xMsiPackage_LogPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xMsiPackage_LogPath.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xMsiPackage_NoOptionalParameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xMsiPackage_NoOptionalParameters.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xPackageResource.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xPackageResource.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xRegistryResource.EndToEnd.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xRegistryResource.EndToEnd.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xRegistryResource.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xRegistryResource.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xRegistryResource_KeyAndNameOnly.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xRegistryResource_KeyAndNameOnly.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xRegistryResource_WithDataAndType.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xRegistryResource_WithDataAndType.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xRemoteFile.EndToEnd.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xRemoteFile.EndToEnd.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xRemoteFile_DownloadFile.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xRemoteFile_DownloadFile.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xRemoteFile_DownloadFileWithChecksum.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xRemoteFile_DownloadFileWithChecksum.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xScriptResource.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xScriptResource.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xScriptResource_NoCredential.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xScriptResource_NoCredential.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xScriptResource_WithCredential.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xScriptResource_WithCredential.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xServiceResource.EndToEnd.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xServiceResource.EndToEnd.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xServiceResource_AllExceptCredential.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xServiceResource_AllExceptCredential.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xServiceResource_CredentialOnly.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xServiceResource_CredentialOnly.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xUserResource.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xUserResource.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xUserResource.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xUserResource.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xWindowsFeature.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xWindowsFeature.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xWindowsFeature.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xWindowsFeature.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xWindowsOptionalFeature.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xWindowsOptionalFeature.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xWindowsOptionalFeature.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xWindowsOptionalFeature.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xWindowsPackageCab.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xWindowsPackageCab.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xWindowsPackageCab.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xWindowsPackageCab.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xWindowsProcess.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xWindowsProcess.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xWindowsProcess.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xWindowsProcess.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_xWindowsProcessWithCredential.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/DSC_xWindowsProcessWithCredential.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/xFileUpload.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xFileUpload.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/xFileUpload.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xFileUpload.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/xGroupSet.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xGroupSet.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/xGroupSet.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xGroupSet.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/xProcessSet.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xProcessSet.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/xProcessSet.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xProcessSet.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/xServiceSet.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xServiceSet.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/xServiceSet_AllExceptBuiltInAccount.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xServiceSet_AllExceptBuiltInAccount.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/xServiceSet_BuiltInAccountOnly.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xServiceSet_BuiltInAccountOnly.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/xWindowsFeatureSet.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xWindowsFeatureSet.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/xWindowsFeatureSet.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xWindowsFeatureSet.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/xWindowsOptionalFeatureSet.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xWindowsOptionalFeatureSet.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/xWindowsOptionalFeatureSet.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Integration/xWindowsOptionalFeatureSet.config.ps1 -------------------------------------------------------------------------------- /tests/TestHelpers/CommonTestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/TestHelpers/CommonTestHelper.psm1 -------------------------------------------------------------------------------- /tests/TestHelpers/DSC_xArchive.TestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/TestHelpers/DSC_xArchive.TestHelper.psm1 -------------------------------------------------------------------------------- /tests/TestHelpers/DSC_xGroupResource.TestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/TestHelpers/DSC_xGroupResource.TestHelper.psm1 -------------------------------------------------------------------------------- /tests/TestHelpers/DSC_xPackageResource.TestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/TestHelpers/DSC_xPackageResource.TestHelper.psm1 -------------------------------------------------------------------------------- /tests/TestHelpers/DSC_xRegistryResource.TestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/TestHelpers/DSC_xRegistryResource.TestHelper.psm1 -------------------------------------------------------------------------------- /tests/TestHelpers/DSC_xServiceResource.TestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/TestHelpers/DSC_xServiceResource.TestHelper.psm1 -------------------------------------------------------------------------------- /tests/TestHelpers/DSC_xUserResource.TestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/TestHelpers/DSC_xUserResource.TestHelper.psm1 -------------------------------------------------------------------------------- /tests/TestHelpers/DSC_xWindowsProcess.TestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/TestHelpers/DSC_xWindowsProcess.TestHelper.psm1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xArchive.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xArchive.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xDSCWebService.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xDSCWebService.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xEnvironmentResource.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xEnvironmentResource.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xGroupResource.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xGroupResource.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xMsiPackage.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xMsiPackage.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xPackageResource.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xPackageResource.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xRegistryResource.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xRegistryResource.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xRemoteFile.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xRemoteFile.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xScriptResource.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xScriptResource.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xServiceResource.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xServiceResource.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xUserResource.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xUserResource.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xWindowsFeature.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xWindowsFeature.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xWindowsOptionalFeature.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xWindowsOptionalFeature.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xWindowsPackageCab.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xWindowsPackageCab.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_xWindowsProcess.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/DSC_xWindowsProcess.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/xPSDesiredStateConfiguration.Common.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPSDesiredStateConfiguration/HEAD/tests/Unit/xPSDesiredStateConfiguration.Common.Tests.ps1 --------------------------------------------------------------------------------