├── .gitignore ├── AutoUnattend ├── Windows Server 2012 R2.xml └── Windows Server 2016.xml ├── Convert-WindowsImage.ps1 ├── Install-PowerLab.ps1 ├── PowerLab.Tests.ps1 ├── PowerLab.psd1 ├── PowerLab.psm1 ├── PowerLabConfiguration.psd1 └── SQLServer.ini /.gitignore: -------------------------------------------------------------------------------- 1 | .dropbox 2 | MyLabConfiguration.psd1 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /AutoUnattend/Windows Server 2012 R2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerLab/HEAD/AutoUnattend/Windows Server 2012 R2.xml -------------------------------------------------------------------------------- /AutoUnattend/Windows Server 2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerLab/HEAD/AutoUnattend/Windows Server 2016.xml -------------------------------------------------------------------------------- /Convert-WindowsImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerLab/HEAD/Convert-WindowsImage.ps1 -------------------------------------------------------------------------------- /Install-PowerLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerLab/HEAD/Install-PowerLab.ps1 -------------------------------------------------------------------------------- /PowerLab.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerLab/HEAD/PowerLab.Tests.ps1 -------------------------------------------------------------------------------- /PowerLab.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerLab/HEAD/PowerLab.psd1 -------------------------------------------------------------------------------- /PowerLab.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerLab/HEAD/PowerLab.psm1 -------------------------------------------------------------------------------- /PowerLabConfiguration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerLab/HEAD/PowerLabConfiguration.psd1 -------------------------------------------------------------------------------- /SQLServer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerLab/HEAD/SQLServer.ini --------------------------------------------------------------------------------