├── .gitattributes ├── DSC Resource ├── DemoConfig.ps1 └── JustEnoughAdministration │ ├── JustEnoughAdministration.psd1 │ └── JustEnoughAdministration.psm1 ├── LICENSE.txt ├── README.md └── Samples ├── DnsAdministration ├── DnsAdministration.psd1 └── RoleCapabilities │ ├── DnsAdmin.psrc │ └── DnsViewer.psrc └── GeneralServerMaintenance ├── CreateRegisterPSSC.ps1 ├── GeneralServerMaintenance.psd1 ├── GeneralServerMaintenance.psm1 └── RoleCapabilities ├── General-Lev1.psrc ├── General-Lev2.psrc ├── IIS-Lev1.psrc └── IIS-Lev2.psrc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/.gitattributes -------------------------------------------------------------------------------- /DSC Resource/DemoConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/DSC Resource/DemoConfig.ps1 -------------------------------------------------------------------------------- /DSC Resource/JustEnoughAdministration/JustEnoughAdministration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/DSC Resource/JustEnoughAdministration/JustEnoughAdministration.psd1 -------------------------------------------------------------------------------- /DSC Resource/JustEnoughAdministration/JustEnoughAdministration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/DSC Resource/JustEnoughAdministration/JustEnoughAdministration.psm1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/README.md -------------------------------------------------------------------------------- /Samples/DnsAdministration/DnsAdministration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/DnsAdministration/DnsAdministration.psd1 -------------------------------------------------------------------------------- /Samples/DnsAdministration/RoleCapabilities/DnsAdmin.psrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/DnsAdministration/RoleCapabilities/DnsAdmin.psrc -------------------------------------------------------------------------------- /Samples/DnsAdministration/RoleCapabilities/DnsViewer.psrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/DnsAdministration/RoleCapabilities/DnsViewer.psrc -------------------------------------------------------------------------------- /Samples/GeneralServerMaintenance/CreateRegisterPSSC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/GeneralServerMaintenance/CreateRegisterPSSC.ps1 -------------------------------------------------------------------------------- /Samples/GeneralServerMaintenance/GeneralServerMaintenance.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/GeneralServerMaintenance/GeneralServerMaintenance.psd1 -------------------------------------------------------------------------------- /Samples/GeneralServerMaintenance/GeneralServerMaintenance.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/GeneralServerMaintenance/GeneralServerMaintenance.psm1 -------------------------------------------------------------------------------- /Samples/GeneralServerMaintenance/RoleCapabilities/General-Lev1.psrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/GeneralServerMaintenance/RoleCapabilities/General-Lev1.psrc -------------------------------------------------------------------------------- /Samples/GeneralServerMaintenance/RoleCapabilities/General-Lev2.psrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/GeneralServerMaintenance/RoleCapabilities/General-Lev2.psrc -------------------------------------------------------------------------------- /Samples/GeneralServerMaintenance/RoleCapabilities/IIS-Lev1.psrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/GeneralServerMaintenance/RoleCapabilities/IIS-Lev1.psrc -------------------------------------------------------------------------------- /Samples/GeneralServerMaintenance/RoleCapabilities/IIS-Lev2.psrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/JEA/HEAD/Samples/GeneralServerMaintenance/RoleCapabilities/IIS-Lev2.psrc --------------------------------------------------------------------------------