├── .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 ├── launch.json ├── 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 ├── source ├── DSCResources │ ├── MSFT_xFileSystemAccessRule │ │ ├── MSFT_xFileSystemAccessRule.psm1 │ │ └── MSFT_xFileSystemAccessRule.schema.mof │ ├── xIEEsc │ │ ├── xIEEsc.psd1 │ │ └── xIEEsc.schema.psm1 │ └── xUAC │ │ ├── xUAC.psd1 │ │ └── xUAC.schema.psm1 ├── build.psd1 ├── en-US │ └── about_xSystemSecurity.help.txt └── xSystemSecurity.psd1 └── tests ├── Integration ├── MSFT_xFileSystemAccessRule.Integration.Tests.ps1 └── MSFT_xFileSystemAccessRule.config.ps1 └── Unit └── MSFT_xFileSystemAccessRule.Tests.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.github/ISSUE_TEMPLATE/General.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Problem_with_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.github/ISSUE_TEMPLATE/Problem_with_resource.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Resource_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.github/ISSUE_TEMPLATE/Resource_proposal.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/analyzersettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.vscode/analyzersettings.psd1 -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/README.md -------------------------------------------------------------------------------- /RequiredModules.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/RequiredModules.psd1 -------------------------------------------------------------------------------- /Resolve-Dependency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/Resolve-Dependency.ps1 -------------------------------------------------------------------------------- /Resolve-Dependency.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/Resolve-Dependency.psd1 -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xFileSystemAccessRule/MSFT_xFileSystemAccessRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/source/DSCResources/MSFT_xFileSystemAccessRule/MSFT_xFileSystemAccessRule.psm1 -------------------------------------------------------------------------------- /source/DSCResources/MSFT_xFileSystemAccessRule/MSFT_xFileSystemAccessRule.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/source/DSCResources/MSFT_xFileSystemAccessRule/MSFT_xFileSystemAccessRule.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/xIEEsc/xIEEsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/source/DSCResources/xIEEsc/xIEEsc.psd1 -------------------------------------------------------------------------------- /source/DSCResources/xIEEsc/xIEEsc.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/source/DSCResources/xIEEsc/xIEEsc.schema.psm1 -------------------------------------------------------------------------------- /source/DSCResources/xUAC/xUAC.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/source/DSCResources/xUAC/xUAC.psd1 -------------------------------------------------------------------------------- /source/DSCResources/xUAC/xUAC.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/source/DSCResources/xUAC/xUAC.schema.psm1 -------------------------------------------------------------------------------- /source/build.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/source/build.psd1 -------------------------------------------------------------------------------- /source/en-US/about_xSystemSecurity.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/source/en-US/about_xSystemSecurity.help.txt -------------------------------------------------------------------------------- /source/xSystemSecurity.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/source/xSystemSecurity.psd1 -------------------------------------------------------------------------------- /tests/Integration/MSFT_xFileSystemAccessRule.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/tests/Integration/MSFT_xFileSystemAccessRule.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/MSFT_xFileSystemAccessRule.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/tests/Integration/MSFT_xFileSystemAccessRule.config.ps1 -------------------------------------------------------------------------------- /tests/Unit/MSFT_xFileSystemAccessRule.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xSystemSecurity/HEAD/tests/Unit/MSFT_xFileSystemAccessRule.Tests.ps1 --------------------------------------------------------------------------------