├── .codecov.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── General.md │ ├── Problem_with_resource.md │ └── Resource_proposal.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .markdownlint.json ├── .vscode ├── analyzersettings.psd1 ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GitVersion.yml ├── LICENSE ├── README.md ├── RequiredModules.psd1 ├── Resolve-Dependency.ps1 ├── Resolve-Dependency.psd1 ├── SECURITY.md ├── azure-pipelines.yml ├── examples └── dsc_configuration.ps1 ├── source ├── DSCResources │ ├── DSC_UpdateServicesApprovalRule │ │ ├── DSC_UpdateServicesApprovalRule.psm1 │ │ ├── DSC_UpdateServicesApprovalRule.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_UpdateServicesApprovalRule.strings.psd1 │ ├── DSC_UpdateServicesCleanup │ │ ├── DSC_UpdateServicesCleanup.psm1 │ │ ├── DSC_UpdateServicesCleanup.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_UpdateServicesCleanup.strings.psd1 │ ├── DSC_UpdateServicesComputerTargetGroup │ │ ├── DSC_UpdateServicesComputerTargetGroup.psm1 │ │ ├── DSC_UpdateServicesComputerTargetGroup.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_UpdateServicesComputerTargetGroup.strings.psd1 │ └── DSC_UpdateServicesServer │ │ ├── DSC_UpdateServicesServer.psm1 │ │ ├── DSC_UpdateServicesServer.schema.mof │ │ ├── README.md │ │ ├── WSUS.cab │ │ └── en-US │ │ └── DSC_UpdateServicesServer.strings.psd1 ├── Examples │ └── Resources │ │ └── UpdateServicesComputerTargetGroup │ │ ├── 1-UpdateServicesComputerTargetGroup_AddComputerTargetGroup_Config.ps1 │ │ └── 2-UpdateServicesComputerTargetGroup_DeleteComputerTargetGroup_Config.ps1 ├── Modules │ └── PDT │ │ ├── PDT.psm1 │ │ ├── en-US │ │ └── PDT.strings.psd1 │ │ └── en-us │ │ └── PDT.strings.psd1 ├── UpdateServicesDsc.psd1 ├── UpdateServicesDsc.psm1 ├── WikiSource │ └── Home.md └── en-US │ ├── UpdateServicesDsc.strings.psd1 │ └── about_UpdateServicesDsc.help.txt └── tests ├── Integration ├── UpdateServicesConfig.ps1 ├── WildcardInProduct │ └── updateservicesDsc_WilcardInProduct.Tests.ps1 ├── allProducts │ └── updateservicesDsc_AllProducts.Tests.ps1 ├── defaultProducts │ └── updateservicesDsc_defaultProducts.Tests.ps1 └── onlyOneProduct │ └── updateservicesDsc_basicInstall.Tests.ps1 └── Unit ├── DSC_UpdateServicesApprovalRule.Tests.ps1 ├── DSC_UpdateServicesCleanup.Tests.ps1 ├── DSC_UpdateServicesComputerTargetGroup.Tests.ps1 ├── DSC_UpdateServicesServer.Tests.ps1 ├── Stubs ├── README.md └── UpdateServices.stubs.psm1 └── TestHelpers └── CommonTestHelper.psm1 /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.github/ISSUE_TEMPLATE/General.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Problem_with_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.github/ISSUE_TEMPLATE/Problem_with_resource.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Resource_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.github/ISSUE_TEMPLATE/Resource_proposal.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/analyzersettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.vscode/analyzersettings.psd1 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/README.md -------------------------------------------------------------------------------- /RequiredModules.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/RequiredModules.psd1 -------------------------------------------------------------------------------- /Resolve-Dependency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/Resolve-Dependency.ps1 -------------------------------------------------------------------------------- /Resolve-Dependency.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/Resolve-Dependency.psd1 -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /examples/dsc_configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/examples/dsc_configuration.ps1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesApprovalRule/DSC_UpdateServicesApprovalRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesApprovalRule/DSC_UpdateServicesApprovalRule.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesApprovalRule/DSC_UpdateServicesApprovalRule.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesApprovalRule/DSC_UpdateServicesApprovalRule.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesApprovalRule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesApprovalRule/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesApprovalRule/en-US/DSC_UpdateServicesApprovalRule.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesApprovalRule/en-US/DSC_UpdateServicesApprovalRule.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesCleanup/DSC_UpdateServicesCleanup.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesCleanup/DSC_UpdateServicesCleanup.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesCleanup/DSC_UpdateServicesCleanup.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesCleanup/DSC_UpdateServicesCleanup.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesCleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesCleanup/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesCleanup/en-US/DSC_UpdateServicesCleanup.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesCleanup/en-US/DSC_UpdateServicesCleanup.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesComputerTargetGroup/DSC_UpdateServicesComputerTargetGroup.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesComputerTargetGroup/DSC_UpdateServicesComputerTargetGroup.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesComputerTargetGroup/DSC_UpdateServicesComputerTargetGroup.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesComputerTargetGroup/DSC_UpdateServicesComputerTargetGroup.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesComputerTargetGroup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesComputerTargetGroup/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesComputerTargetGroup/en-US/DSC_UpdateServicesComputerTargetGroup.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesComputerTargetGroup/en-US/DSC_UpdateServicesComputerTargetGroup.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesServer/DSC_UpdateServicesServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesServer/DSC_UpdateServicesServer.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesServer/DSC_UpdateServicesServer.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesServer/DSC_UpdateServicesServer.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesServer/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesServer/WSUS.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesServer/WSUS.cab -------------------------------------------------------------------------------- /source/DSCResources/DSC_UpdateServicesServer/en-US/DSC_UpdateServicesServer.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/DSCResources/DSC_UpdateServicesServer/en-US/DSC_UpdateServicesServer.strings.psd1 -------------------------------------------------------------------------------- /source/Examples/Resources/UpdateServicesComputerTargetGroup/1-UpdateServicesComputerTargetGroup_AddComputerTargetGroup_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/Examples/Resources/UpdateServicesComputerTargetGroup/1-UpdateServicesComputerTargetGroup_AddComputerTargetGroup_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/UpdateServicesComputerTargetGroup/2-UpdateServicesComputerTargetGroup_DeleteComputerTargetGroup_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/Examples/Resources/UpdateServicesComputerTargetGroup/2-UpdateServicesComputerTargetGroup_DeleteComputerTargetGroup_Config.ps1 -------------------------------------------------------------------------------- /source/Modules/PDT/PDT.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/Modules/PDT/PDT.psm1 -------------------------------------------------------------------------------- /source/Modules/PDT/en-US/PDT.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/Modules/PDT/en-US/PDT.strings.psd1 -------------------------------------------------------------------------------- /source/Modules/PDT/en-us/PDT.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/Modules/PDT/en-us/PDT.strings.psd1 -------------------------------------------------------------------------------- /source/UpdateServicesDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/UpdateServicesDsc.psd1 -------------------------------------------------------------------------------- /source/UpdateServicesDsc.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/UpdateServicesDsc.psm1 -------------------------------------------------------------------------------- /source/WikiSource/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/WikiSource/Home.md -------------------------------------------------------------------------------- /source/en-US/UpdateServicesDsc.strings.psd1: -------------------------------------------------------------------------------- 1 | ConvertFrom-StringData @' 2 | '@ 3 | 4 | -------------------------------------------------------------------------------- /source/en-US/about_UpdateServicesDsc.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/source/en-US/about_UpdateServicesDsc.help.txt -------------------------------------------------------------------------------- /tests/Integration/UpdateServicesConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Integration/UpdateServicesConfig.ps1 -------------------------------------------------------------------------------- /tests/Integration/WildcardInProduct/updateservicesDsc_WilcardInProduct.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Integration/WildcardInProduct/updateservicesDsc_WilcardInProduct.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/allProducts/updateservicesDsc_AllProducts.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Integration/allProducts/updateservicesDsc_AllProducts.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/defaultProducts/updateservicesDsc_defaultProducts.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Integration/defaultProducts/updateservicesDsc_defaultProducts.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/onlyOneProduct/updateservicesDsc_basicInstall.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Integration/onlyOneProduct/updateservicesDsc_basicInstall.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_UpdateServicesApprovalRule.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Unit/DSC_UpdateServicesApprovalRule.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_UpdateServicesCleanup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Unit/DSC_UpdateServicesCleanup.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_UpdateServicesComputerTargetGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Unit/DSC_UpdateServicesComputerTargetGroup.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_UpdateServicesServer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Unit/DSC_UpdateServicesServer.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/Stubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Unit/Stubs/README.md -------------------------------------------------------------------------------- /tests/Unit/Stubs/UpdateServices.stubs.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Unit/Stubs/UpdateServices.stubs.psm1 -------------------------------------------------------------------------------- /tests/Unit/TestHelpers/CommonTestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/UpdateServicesDsc/HEAD/tests/Unit/TestHelpers/CommonTestHelper.psm1 --------------------------------------------------------------------------------