├── .gitignore ├── ADCSTemplate.psd1 ├── ADCSTemplate.psm1 ├── DSCResources └── COMMUNITY_ADCSTemplate │ ├── COMMUNITY_ADCSTemplate.psm1 │ └── COMMUNITY_ADCSTemplate.schema.mof ├── Examples ├── Build-ADCS.ps1 ├── Demo.ps1 ├── PowerShellCMS.json └── Tanium.json ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /ADCSTemplate.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/ADCSTemplate.psd1 -------------------------------------------------------------------------------- /ADCSTemplate.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/ADCSTemplate.psm1 -------------------------------------------------------------------------------- /DSCResources/COMMUNITY_ADCSTemplate/COMMUNITY_ADCSTemplate.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/DSCResources/COMMUNITY_ADCSTemplate/COMMUNITY_ADCSTemplate.psm1 -------------------------------------------------------------------------------- /DSCResources/COMMUNITY_ADCSTemplate/COMMUNITY_ADCSTemplate.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/DSCResources/COMMUNITY_ADCSTemplate/COMMUNITY_ADCSTemplate.schema.mof -------------------------------------------------------------------------------- /Examples/Build-ADCS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/Examples/Build-ADCS.ps1 -------------------------------------------------------------------------------- /Examples/Demo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/Examples/Demo.ps1 -------------------------------------------------------------------------------- /Examples/PowerShellCMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/Examples/PowerShellCMS.json -------------------------------------------------------------------------------- /Examples/Tanium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/Examples/Tanium.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoateePFE/ADCSTemplate/HEAD/README.md --------------------------------------------------------------------------------