├── .codecov.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── General.md │ ├── Problem_with_resource.md │ └── Resource_proposal.md ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .gitignore ├── .vscode ├── analyzersettings.psd1 └── settings.json ├── DSCResources └── MSFT_xPendingReboot │ ├── MSFT_xPendingReboot.psm1 │ └── MSFT_xPendingReboot.schema.mof ├── LICENSE ├── README.md ├── Tests └── xPendingReboot.tests.ps1 ├── appveyor.yml └── xPendingReboot.psd1 /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/.github/ISSUE_TEMPLATE/General.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Problem_with_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/.github/ISSUE_TEMPLATE/Problem_with_resource.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Resource_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/.github/ISSUE_TEMPLATE/Resource_proposal.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | DSCResource.Tests 2 | -------------------------------------------------------------------------------- /.vscode/analyzersettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/.vscode/analyzersettings.psd1 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DSCResources/MSFT_xPendingReboot/MSFT_xPendingReboot.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/DSCResources/MSFT_xPendingReboot/MSFT_xPendingReboot.psm1 -------------------------------------------------------------------------------- /DSCResources/MSFT_xPendingReboot/MSFT_xPendingReboot.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/DSCResources/MSFT_xPendingReboot/MSFT_xPendingReboot.schema.mof -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/README.md -------------------------------------------------------------------------------- /Tests/xPendingReboot.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/Tests/xPendingReboot.tests.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/appveyor.yml -------------------------------------------------------------------------------- /xPendingReboot.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xPendingReboot/HEAD/xPendingReboot.psd1 --------------------------------------------------------------------------------