├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── General.md │ ├── Problem_with_resource.md │ └── Resource_proposal.md ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .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 ├── azure-pipelines.yml ├── codecov.yml ├── source ├── DSCResources │ ├── MSFT_xWindowsUpdate │ │ ├── MSFT_xWindowsUpdate.psm1 │ │ ├── MSFT_xWindowsUpdate.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── MSFT_xWindowsUpdate.strings.psd1 │ └── MSFT_xWindowsUpdateAgent │ │ ├── MSFT_xWindowsUpdateAgent.psm1 │ │ ├── MSFT_xWindowsUpdateAgent.schema.mof │ │ ├── README.md │ │ └── en-US │ │ └── MSFT_xWindowsUpdateAgent.strings.psd1 ├── Examples │ └── Resources │ │ ├── xHotfix │ │ ├── 1-xHotfix_xWindowsUpdateFromPath_Config.ps1 │ │ └── 2-xHotfix_xWindowsUpdateFromURI_Config.ps1 │ │ └── xWindowsUpdateAgent │ │ ├── 1-xWindowsUpdateAgent_SetWuaScheduledFromWu_Config.ps1 │ │ └── 2-xWindowsUpdateAgent_InstallUpdatesOnEachConsistencyCheck_Config.ps1 ├── build.psd1 ├── en-US │ └── about_xWindowsUpdate.help.txt └── xWindowsUpdate.psd1 └── tests └── Unit ├── MSFT_xWindowsUpdate.Tests.ps1 └── MSFT_xWindowsUpdateAgent.Tests.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.github/ISSUE_TEMPLATE/General.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Problem_with_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.github/ISSUE_TEMPLATE/Problem_with_resource.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Resource_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.github/ISSUE_TEMPLATE/Resource_proposal.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/analyzersettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.vscode/analyzersettings.psd1 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/README.md -------------------------------------------------------------------------------- /RequiredModules.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/RequiredModules.psd1 -------------------------------------------------------------------------------- /Resolve-Dependency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/Resolve-Dependency.ps1 -------------------------------------------------------------------------------- /Resolve-Dependency.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/Resolve-Dependency.psd1 -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/codecov.yml -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xWindowsUpdate/MSFT_xWindowsUpdate.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/DSCResources/MSFT_xWindowsUpdate/MSFT_xWindowsUpdate.psm1 -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xWindowsUpdate/MSFT_xWindowsUpdate.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/DSCResources/MSFT_xWindowsUpdate/MSFT_xWindowsUpdate.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xWindowsUpdate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/DSCResources/MSFT_xWindowsUpdate/README.md -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xWindowsUpdate/en-US/MSFT_xWindowsUpdate.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/DSCResources/MSFT_xWindowsUpdate/en-US/MSFT_xWindowsUpdate.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xWindowsUpdateAgent/MSFT_xWindowsUpdateAgent.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/DSCResources/MSFT_xWindowsUpdateAgent/MSFT_xWindowsUpdateAgent.psm1 -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xWindowsUpdateAgent/MSFT_xWindowsUpdateAgent.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/DSCResources/MSFT_xWindowsUpdateAgent/MSFT_xWindowsUpdateAgent.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xWindowsUpdateAgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/DSCResources/MSFT_xWindowsUpdateAgent/README.md -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xWindowsUpdateAgent/en-US/MSFT_xWindowsUpdateAgent.strings.psd1: -------------------------------------------------------------------------------- 1 | ConvertFrom-StringData @' 2 | '@ 3 | -------------------------------------------------------------------------------- /source/Examples/Resources/xHotfix/1-xHotfix_xWindowsUpdateFromPath_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/Examples/Resources/xHotfix/1-xHotfix_xWindowsUpdateFromPath_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xHotfix/2-xHotfix_xWindowsUpdateFromURI_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/Examples/Resources/xHotfix/2-xHotfix_xWindowsUpdateFromURI_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsUpdateAgent/1-xWindowsUpdateAgent_SetWuaScheduledFromWu_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/Examples/Resources/xWindowsUpdateAgent/1-xWindowsUpdateAgent_SetWuaScheduledFromWu_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/xWindowsUpdateAgent/2-xWindowsUpdateAgent_InstallUpdatesOnEachConsistencyCheck_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/Examples/Resources/xWindowsUpdateAgent/2-xWindowsUpdateAgent_InstallUpdatesOnEachConsistencyCheck_Config.ps1 -------------------------------------------------------------------------------- /source/build.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/build.psd1 -------------------------------------------------------------------------------- /source/en-US/about_xWindowsUpdate.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/en-US/about_xWindowsUpdate.help.txt -------------------------------------------------------------------------------- /source/xWindowsUpdate.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/source/xWindowsUpdate.psd1 -------------------------------------------------------------------------------- /tests/Unit/MSFT_xWindowsUpdate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/tests/Unit/MSFT_xWindowsUpdate.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/MSFT_xWindowsUpdateAgent.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xWindowsUpdate/HEAD/tests/Unit/MSFT_xWindowsUpdateAgent.Tests.ps1 --------------------------------------------------------------------------------