├── .gitattributes ├── Configurations ├── Implement-Windows-Server-DHCP-2016 │ ├── AD-Group.json │ ├── AD-OU.json │ ├── AD-Users.json │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── MultiRole-GUI │ ├── AD-Group.json │ ├── AD-OU.json │ ├── AD-Users.json │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── MultiRole-Server-2016 │ ├── AD-Group.json │ ├── AD-OU.json │ ├── AD-Users.json │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── MultiRole │ ├── AD-Group.json │ ├── AD-OU.json │ ├── AD-Users.json │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── PowerShellLab │ ├── AD-Group.json │ ├── AD-OU.json │ ├── AD-Users.json │ ├── Instructions.md │ ├── PostSetup │ │ ├── Download-Git.ps1 │ │ ├── Install-Sysinternals.ps1 │ │ ├── Install-VSCode.ps1 │ │ ├── README.md │ │ └── RunAll.ps1 │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── SingleServer-2022 │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── SingleServer-GUI-2016 │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── SingleServer-GUI-2019 │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── SingleServer │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── Windows10 │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── Windows11 │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 └── microsoft-powershell-implementing-jea │ ├── AD-Group.json │ ├── AD-OU.json │ ├── AD-Users.json │ ├── Instructions.md │ ├── VMConfiguration.ps1 │ ├── VMConfigurationData.psd1 │ └── VMValidate.test.ps1 ├── Detailed-Setup-Instructions.md ├── LICENSE.txt ├── ModuleCommands.md ├── PSAutoLab.psd1 ├── PSAutoLab.psm1 ├── PSAutoLabManual.pdf ├── README.md ├── ReleaseNotes.md ├── Updating.md ├── Usage-FAQ.md ├── archive ├── Authoring-FAQ.md ├── ConfigArchive │ ├── Deprecated-POC-DC-Client-Servers-CORE │ │ ├── DC-Client-Servers-Core.ps1 │ │ ├── DC-Client-Servers-Core.psd1 │ │ ├── Enable-Internet.ps1 │ │ ├── Refresh-Lab.ps1 │ │ ├── Run-Lab.ps1 │ │ ├── Setup-Lab.ps1 │ │ ├── Shutdown-Lab.ps1 │ │ ├── Snapshot-lab.ps1 │ │ └── wipe-Lab.ps1 │ ├── Deprecated-POC-DC-Client-Servers-GUI │ │ ├── DC-Client-Servers-GUI.ps1 │ │ ├── DC-Client-Servers-GUI.psd1 │ │ ├── Enable-Internet.ps1 │ │ ├── Refresh-Lab.ps1 │ │ ├── Run-Lab.ps1 │ │ ├── Setup-Lab.ps1 │ │ ├── Shutdown-Lab.ps1 │ │ ├── Snapshot-lab.ps1 │ │ └── wipe-Lab.ps1 │ ├── Deprecated-POC-DCDHCP-Client-Servers-GUI │ │ ├── DCDHCP-Client-Servers-GUI.ps1 │ │ ├── DCDHCP-Client-Servers-GUI.psd1 │ │ ├── Enable-Internet.ps1 │ │ ├── Refresh-Lab.ps1 │ │ ├── Run-Lab.ps1 │ │ ├── Setup-Lab.ps1 │ │ ├── Shutdown-Lab.ps1 │ │ ├── Snapshot-lab.ps1 │ │ └── wipe-Lab.ps1 │ ├── Deprecated-POC-DCDHCPADCS-Client-Servers-GUI │ │ ├── DCDHCPADCS-Client-Servers-GUI.ps1 │ │ ├── DCDHCPADCS-Client-Servers-GUI.psd1 │ │ ├── DCDHCPADCS-Client-Servers-GUI.tests.ps1 │ │ ├── Enable-Internet.ps1 │ │ ├── Refresh-Lab.ps1 │ │ ├── Run-Lab.ps1 │ │ ├── Setup-Lab.ps1 │ │ ├── Snapshot-lab.ps1 │ │ ├── mj.psd1 │ │ └── wipe-Lab.ps1 │ ├── Deprecated-POC-StandAlone-Server-GUI │ │ ├── Enable-Internet.ps1 │ │ ├── Refresh-Lab.ps1 │ │ ├── Run-Lab.ps1 │ │ ├── Setup-Lab.ps1 │ │ ├── Shutdown-Lab.ps1 │ │ ├── Snapshot-lab.ps1 │ │ ├── StandAlone-Server-Gui.ps1 │ │ ├── StandAlone-Server-Gui.psd1 │ │ └── wipe-Lab.ps1 │ ├── Jason-DSC-Env │ │ ├── AD-Group.json │ │ ├── AD-OU.json │ │ ├── AD-Users.json │ │ ├── Instructions.md │ │ ├── VMConfiguration.ps1 │ │ ├── VMConfigurationData.psd1 │ │ └── VMValidate.test.ps1 │ ├── POC-MultiRole │ │ ├── AD-Group.json │ │ ├── AD-OU.json │ │ ├── AD-Users.json │ │ ├── Instructions.md │ │ ├── VMConfiguration.ps1 │ │ ├── VMConfigurationData.psd1 │ │ └── VMValidate.test.ps1 │ ├── README.md │ ├── SingleServer2012R2-GUI │ │ ├── Instructions.md │ │ ├── VMConfiguration.ps1 │ │ ├── VMConfigurationData.psd1 │ │ └── VMValidate.test.ps1 │ ├── SingleServer2012R2 │ │ ├── Instructions.md │ │ ├── VMConfiguration.ps1 │ │ ├── VMConfigurationData.psd1 │ │ └── VMValidate.test.ps1 │ ├── TEST-SingleDC │ │ ├── AD-Group.json │ │ ├── AD-OU.json │ │ ├── AD-Users.json │ │ ├── Instructions.md │ │ ├── VMConfiguration.ps1 │ │ ├── VMConfigurationData.psd1 │ │ └── VMValidate.test.ps1 │ └── TEST-SingleServer │ │ ├── AD-Group.json │ │ ├── AD-OU.json │ │ ├── AD-Users.json │ │ ├── Instructions.md │ │ ├── VMConfiguration.ps1 │ │ ├── VMConfigurationData.psd1 │ │ └── VMValidate.test.ps1 ├── Prep-PSAutolab.ps1 ├── Setup-Host.ps1 ├── Tools │ ├── AutoLab-Postsetup.ps1 │ ├── ManualCopyOfModule.ps1 │ └── PSAutoLab │ │ ├── EN-US │ │ └── About_PSAutolab.help.txt │ │ ├── PSAutoLab.psd1 │ │ └── PSAutoLab.psm1 └── readme.txt ├── archived-changelog.md ├── changelog.md ├── docs ├── Enable-Internet.md ├── Get-LabSnapshot.md ├── Get-LabSummary.md ├── Get-PSAutoLabSetting.md ├── Invoke-PesterTest.md ├── Invoke-RefreshHost.md ├── Invoke-RefreshLab.md ├── Invoke-RunLab.md ├── Invoke-SetupHost.md ├── Invoke-SetupLab.md ├── Invoke-ShutdownLab.md ├── Invoke-SnapshotLab.md ├── Invoke-UnattendLab.md ├── Invoke-ValidateLab.md ├── Invoke-WipeLab.md ├── Open-PSAutoLabHelp.md ├── Test-ISOImage.md ├── Test-LabDSCResource.md ├── Update-Lab.md └── about_PSAutoLab.md ├── en-us ├── PSAutoLab-help.xml └── about_PSAutoLab.help.txt ├── formats ├── isotest.format.ps1xml ├── psautolabresource.format.ps1xml ├── psautolabsetting.format.ps1xml └── psautolabvm.format.ps1xml ├── functions ├── Enable-Internet.ps1 ├── Get-LabSnapshot.ps1 ├── Get-LabSummary.ps1 ├── Get-PSAutoLabSetting.ps1 ├── Invoke-PesterTest.ps1 ├── Invoke-RefreshHost.ps1 ├── Invoke-RefreshLab.ps1 ├── Invoke-RunLab.ps1 ├── Invoke-SetupHost.ps1 ├── Invoke-SetupLab.ps1 ├── Invoke-ShutdownLab.ps1 ├── Invoke-SnapshotLab.ps1 ├── Invoke-UnattendLab.ps1 ├── Invoke-ValidateLab.ps1 ├── Invoke-WipeLab.ps1 ├── Test-ISOImage.ps1 ├── Test-It.ps1 ├── Test-LabDSCResource.ps1 ├── Update-Lab.ps1 └── private.ps1 ├── images ├── command-console_Orange.png └── get-labsummary.png ├── intro.md └── update-v5.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/.gitattributes -------------------------------------------------------------------------------- /Configurations/Implement-Windows-Server-DHCP-2016/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Implement-Windows-Server-DHCP-2016/AD-Group.json -------------------------------------------------------------------------------- /Configurations/Implement-Windows-Server-DHCP-2016/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Implement-Windows-Server-DHCP-2016/AD-OU.json -------------------------------------------------------------------------------- /Configurations/Implement-Windows-Server-DHCP-2016/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Implement-Windows-Server-DHCP-2016/AD-Users.json -------------------------------------------------------------------------------- /Configurations/Implement-Windows-Server-DHCP-2016/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Implement-Windows-Server-DHCP-2016/Instructions.md -------------------------------------------------------------------------------- /Configurations/Implement-Windows-Server-DHCP-2016/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Implement-Windows-Server-DHCP-2016/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/Implement-Windows-Server-DHCP-2016/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Implement-Windows-Server-DHCP-2016/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/Implement-Windows-Server-DHCP-2016/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Implement-Windows-Server-DHCP-2016/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/MultiRole-GUI/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-GUI/AD-Group.json -------------------------------------------------------------------------------- /Configurations/MultiRole-GUI/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-GUI/AD-OU.json -------------------------------------------------------------------------------- /Configurations/MultiRole-GUI/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-GUI/AD-Users.json -------------------------------------------------------------------------------- /Configurations/MultiRole-GUI/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-GUI/Instructions.md -------------------------------------------------------------------------------- /Configurations/MultiRole-GUI/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-GUI/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/MultiRole-GUI/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-GUI/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/MultiRole-GUI/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-GUI/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/MultiRole-Server-2016/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-Server-2016/AD-Group.json -------------------------------------------------------------------------------- /Configurations/MultiRole-Server-2016/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-Server-2016/AD-OU.json -------------------------------------------------------------------------------- /Configurations/MultiRole-Server-2016/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-Server-2016/AD-Users.json -------------------------------------------------------------------------------- /Configurations/MultiRole-Server-2016/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-Server-2016/Instructions.md -------------------------------------------------------------------------------- /Configurations/MultiRole-Server-2016/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-Server-2016/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/MultiRole-Server-2016/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-Server-2016/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/MultiRole-Server-2016/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole-Server-2016/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/MultiRole/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole/AD-Group.json -------------------------------------------------------------------------------- /Configurations/MultiRole/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole/AD-OU.json -------------------------------------------------------------------------------- /Configurations/MultiRole/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole/AD-Users.json -------------------------------------------------------------------------------- /Configurations/MultiRole/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole/Instructions.md -------------------------------------------------------------------------------- /Configurations/MultiRole/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/MultiRole/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/MultiRole/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/MultiRole/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/PowerShellLab/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/AD-Group.json -------------------------------------------------------------------------------- /Configurations/PowerShellLab/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/AD-OU.json -------------------------------------------------------------------------------- /Configurations/PowerShellLab/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/AD-Users.json -------------------------------------------------------------------------------- /Configurations/PowerShellLab/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/Instructions.md -------------------------------------------------------------------------------- /Configurations/PowerShellLab/PostSetup/Download-Git.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/PostSetup/Download-Git.ps1 -------------------------------------------------------------------------------- /Configurations/PowerShellLab/PostSetup/Install-Sysinternals.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/PostSetup/Install-Sysinternals.ps1 -------------------------------------------------------------------------------- /Configurations/PowerShellLab/PostSetup/Install-VSCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/PostSetup/Install-VSCode.ps1 -------------------------------------------------------------------------------- /Configurations/PowerShellLab/PostSetup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/PostSetup/README.md -------------------------------------------------------------------------------- /Configurations/PowerShellLab/PostSetup/RunAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/PostSetup/RunAll.ps1 -------------------------------------------------------------------------------- /Configurations/PowerShellLab/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/PowerShellLab/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/PowerShellLab/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/PowerShellLab/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/SingleServer-2022/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-2022/Instructions.md -------------------------------------------------------------------------------- /Configurations/SingleServer-2022/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-2022/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/SingleServer-2022/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-2022/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/SingleServer-2022/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-2022/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/SingleServer-GUI-2016/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-GUI-2016/Instructions.md -------------------------------------------------------------------------------- /Configurations/SingleServer-GUI-2016/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-GUI-2016/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/SingleServer-GUI-2016/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-GUI-2016/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/SingleServer-GUI-2016/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-GUI-2016/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/SingleServer-GUI-2019/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-GUI-2019/Instructions.md -------------------------------------------------------------------------------- /Configurations/SingleServer-GUI-2019/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-GUI-2019/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/SingleServer-GUI-2019/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-GUI-2019/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/SingleServer-GUI-2019/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer-GUI-2019/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/SingleServer/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer/Instructions.md -------------------------------------------------------------------------------- /Configurations/SingleServer/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/SingleServer/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/SingleServer/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/SingleServer/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/Windows10/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Windows10/Instructions.md -------------------------------------------------------------------------------- /Configurations/Windows10/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Windows10/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/Windows10/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Windows10/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/Windows10/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Windows10/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/Windows11/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Windows11/Instructions.md -------------------------------------------------------------------------------- /Configurations/Windows11/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Windows11/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/Windows11/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Windows11/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/Windows11/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/Windows11/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Configurations/microsoft-powershell-implementing-jea/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/microsoft-powershell-implementing-jea/AD-Group.json -------------------------------------------------------------------------------- /Configurations/microsoft-powershell-implementing-jea/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/microsoft-powershell-implementing-jea/AD-OU.json -------------------------------------------------------------------------------- /Configurations/microsoft-powershell-implementing-jea/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/microsoft-powershell-implementing-jea/AD-Users.json -------------------------------------------------------------------------------- /Configurations/microsoft-powershell-implementing-jea/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/microsoft-powershell-implementing-jea/Instructions.md -------------------------------------------------------------------------------- /Configurations/microsoft-powershell-implementing-jea/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/microsoft-powershell-implementing-jea/VMConfiguration.ps1 -------------------------------------------------------------------------------- /Configurations/microsoft-powershell-implementing-jea/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/microsoft-powershell-implementing-jea/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /Configurations/microsoft-powershell-implementing-jea/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Configurations/microsoft-powershell-implementing-jea/VMValidate.test.ps1 -------------------------------------------------------------------------------- /Detailed-Setup-Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Detailed-Setup-Instructions.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /ModuleCommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/ModuleCommands.md -------------------------------------------------------------------------------- /PSAutoLab.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/PSAutoLab.psd1 -------------------------------------------------------------------------------- /PSAutoLab.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/PSAutoLab.psm1 -------------------------------------------------------------------------------- /PSAutoLabManual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/PSAutoLabManual.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /Updating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Updating.md -------------------------------------------------------------------------------- /Usage-FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/Usage-FAQ.md -------------------------------------------------------------------------------- /archive/Authoring-FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/Authoring-FAQ.md -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/DC-Client-Servers-Core.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/DC-Client-Servers-Core.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/DC-Client-Servers-Core.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/DC-Client-Servers-Core.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Enable-Internet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Enable-Internet.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Refresh-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Refresh-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Run-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Run-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Setup-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Setup-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Shutdown-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Shutdown-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Snapshot-lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/Snapshot-lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/wipe-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-CORE/wipe-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/DC-Client-Servers-GUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/DC-Client-Servers-GUI.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/DC-Client-Servers-GUI.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/DC-Client-Servers-GUI.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Enable-Internet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Enable-Internet.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Refresh-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Refresh-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Run-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Run-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Setup-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Setup-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Shutdown-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Shutdown-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Snapshot-lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/Snapshot-lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/wipe-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DC-Client-Servers-GUI/wipe-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/DCDHCP-Client-Servers-GUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/DCDHCP-Client-Servers-GUI.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/DCDHCP-Client-Servers-GUI.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/DCDHCP-Client-Servers-GUI.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Enable-Internet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Enable-Internet.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Refresh-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Refresh-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Run-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Run-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Setup-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Setup-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Shutdown-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Shutdown-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Snapshot-lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/Snapshot-lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/wipe-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCP-Client-Servers-GUI/wipe-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/DCDHCPADCS-Client-Servers-GUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/DCDHCPADCS-Client-Servers-GUI.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/DCDHCPADCS-Client-Servers-GUI.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/DCDHCPADCS-Client-Servers-GUI.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/DCDHCPADCS-Client-Servers-GUI.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/DCDHCPADCS-Client-Servers-GUI.tests.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Enable-Internet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Enable-Internet.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Refresh-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Refresh-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Run-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Run-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Setup-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Setup-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Snapshot-lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/Snapshot-lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/mj.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/mj.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/wipe-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-DCDHCPADCS-Client-Servers-GUI/wipe-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Enable-Internet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Enable-Internet.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Refresh-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Refresh-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Run-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Run-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Setup-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Setup-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Shutdown-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Shutdown-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Snapshot-lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/Snapshot-lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/StandAlone-Server-Gui.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/StandAlone-Server-Gui.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/StandAlone-Server-Gui.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/StandAlone-Server-Gui.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/wipe-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Deprecated-POC-StandAlone-Server-GUI/wipe-Lab.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Jason-DSC-Env/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Jason-DSC-Env/AD-Group.json -------------------------------------------------------------------------------- /archive/ConfigArchive/Jason-DSC-Env/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Jason-DSC-Env/AD-OU.json -------------------------------------------------------------------------------- /archive/ConfigArchive/Jason-DSC-Env/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Jason-DSC-Env/AD-Users.json -------------------------------------------------------------------------------- /archive/ConfigArchive/Jason-DSC-Env/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Jason-DSC-Env/Instructions.md -------------------------------------------------------------------------------- /archive/ConfigArchive/Jason-DSC-Env/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Jason-DSC-Env/VMConfiguration.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Jason-DSC-Env/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Jason-DSC-Env/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/Jason-DSC-Env/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/Jason-DSC-Env/VMValidate.test.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/POC-MultiRole/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/POC-MultiRole/AD-Group.json -------------------------------------------------------------------------------- /archive/ConfigArchive/POC-MultiRole/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/POC-MultiRole/AD-OU.json -------------------------------------------------------------------------------- /archive/ConfigArchive/POC-MultiRole/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/POC-MultiRole/AD-Users.json -------------------------------------------------------------------------------- /archive/ConfigArchive/POC-MultiRole/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/POC-MultiRole/Instructions.md -------------------------------------------------------------------------------- /archive/ConfigArchive/POC-MultiRole/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/POC-MultiRole/VMConfiguration.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/POC-MultiRole/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/POC-MultiRole/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/POC-MultiRole/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/POC-MultiRole/VMValidate.test.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/README.md -------------------------------------------------------------------------------- /archive/ConfigArchive/SingleServer2012R2-GUI/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/SingleServer2012R2-GUI/Instructions.md -------------------------------------------------------------------------------- /archive/ConfigArchive/SingleServer2012R2-GUI/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/SingleServer2012R2-GUI/VMConfiguration.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/SingleServer2012R2-GUI/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/SingleServer2012R2-GUI/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/SingleServer2012R2-GUI/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/SingleServer2012R2-GUI/VMValidate.test.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/SingleServer2012R2/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/SingleServer2012R2/Instructions.md -------------------------------------------------------------------------------- /archive/ConfigArchive/SingleServer2012R2/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/SingleServer2012R2/VMConfiguration.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/SingleServer2012R2/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/SingleServer2012R2/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/SingleServer2012R2/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/SingleServer2012R2/VMValidate.test.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleDC/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleDC/AD-Group.json -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleDC/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleDC/AD-OU.json -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleDC/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleDC/AD-Users.json -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleDC/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleDC/Instructions.md -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleDC/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleDC/VMConfiguration.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleDC/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleDC/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleDC/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleDC/VMValidate.test.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleServer/AD-Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleServer/AD-Group.json -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleServer/AD-OU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleServer/AD-OU.json -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleServer/AD-Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleServer/AD-Users.json -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleServer/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleServer/Instructions.md -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleServer/VMConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleServer/VMConfiguration.ps1 -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleServer/VMConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleServer/VMConfigurationData.psd1 -------------------------------------------------------------------------------- /archive/ConfigArchive/TEST-SingleServer/VMValidate.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/ConfigArchive/TEST-SingleServer/VMValidate.test.ps1 -------------------------------------------------------------------------------- /archive/Prep-PSAutolab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/Prep-PSAutolab.ps1 -------------------------------------------------------------------------------- /archive/Setup-Host.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/Setup-Host.ps1 -------------------------------------------------------------------------------- /archive/Tools/AutoLab-Postsetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/Tools/AutoLab-Postsetup.ps1 -------------------------------------------------------------------------------- /archive/Tools/ManualCopyOfModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/Tools/ManualCopyOfModule.ps1 -------------------------------------------------------------------------------- /archive/Tools/PSAutoLab/EN-US/About_PSAutolab.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/Tools/PSAutoLab/EN-US/About_PSAutolab.help.txt -------------------------------------------------------------------------------- /archive/Tools/PSAutoLab/PSAutoLab.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/Tools/PSAutoLab/PSAutoLab.psd1 -------------------------------------------------------------------------------- /archive/Tools/PSAutoLab/PSAutoLab.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/Tools/PSAutoLab/PSAutoLab.psm1 -------------------------------------------------------------------------------- /archive/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archive/readme.txt -------------------------------------------------------------------------------- /archived-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/archived-changelog.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/Enable-Internet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Enable-Internet.md -------------------------------------------------------------------------------- /docs/Get-LabSnapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Get-LabSnapshot.md -------------------------------------------------------------------------------- /docs/Get-LabSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Get-LabSummary.md -------------------------------------------------------------------------------- /docs/Get-PSAutoLabSetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Get-PSAutoLabSetting.md -------------------------------------------------------------------------------- /docs/Invoke-PesterTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-PesterTest.md -------------------------------------------------------------------------------- /docs/Invoke-RefreshHost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-RefreshHost.md -------------------------------------------------------------------------------- /docs/Invoke-RefreshLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-RefreshLab.md -------------------------------------------------------------------------------- /docs/Invoke-RunLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-RunLab.md -------------------------------------------------------------------------------- /docs/Invoke-SetupHost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-SetupHost.md -------------------------------------------------------------------------------- /docs/Invoke-SetupLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-SetupLab.md -------------------------------------------------------------------------------- /docs/Invoke-ShutdownLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-ShutdownLab.md -------------------------------------------------------------------------------- /docs/Invoke-SnapshotLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-SnapshotLab.md -------------------------------------------------------------------------------- /docs/Invoke-UnattendLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-UnattendLab.md -------------------------------------------------------------------------------- /docs/Invoke-ValidateLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-ValidateLab.md -------------------------------------------------------------------------------- /docs/Invoke-WipeLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Invoke-WipeLab.md -------------------------------------------------------------------------------- /docs/Open-PSAutoLabHelp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Open-PSAutoLabHelp.md -------------------------------------------------------------------------------- /docs/Test-ISOImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Test-ISOImage.md -------------------------------------------------------------------------------- /docs/Test-LabDSCResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Test-LabDSCResource.md -------------------------------------------------------------------------------- /docs/Update-Lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/Update-Lab.md -------------------------------------------------------------------------------- /docs/about_PSAutoLab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/docs/about_PSAutoLab.md -------------------------------------------------------------------------------- /en-us/PSAutoLab-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/en-us/PSAutoLab-help.xml -------------------------------------------------------------------------------- /en-us/about_PSAutoLab.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/en-us/about_PSAutoLab.help.txt -------------------------------------------------------------------------------- /formats/isotest.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/formats/isotest.format.ps1xml -------------------------------------------------------------------------------- /formats/psautolabresource.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/formats/psautolabresource.format.ps1xml -------------------------------------------------------------------------------- /formats/psautolabsetting.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/formats/psautolabsetting.format.ps1xml -------------------------------------------------------------------------------- /formats/psautolabvm.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/formats/psautolabvm.format.ps1xml -------------------------------------------------------------------------------- /functions/Enable-Internet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Enable-Internet.ps1 -------------------------------------------------------------------------------- /functions/Get-LabSnapshot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Get-LabSnapshot.ps1 -------------------------------------------------------------------------------- /functions/Get-LabSummary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Get-LabSummary.ps1 -------------------------------------------------------------------------------- /functions/Get-PSAutoLabSetting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Get-PSAutoLabSetting.ps1 -------------------------------------------------------------------------------- /functions/Invoke-PesterTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-PesterTest.ps1 -------------------------------------------------------------------------------- /functions/Invoke-RefreshHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-RefreshHost.ps1 -------------------------------------------------------------------------------- /functions/Invoke-RefreshLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-RefreshLab.ps1 -------------------------------------------------------------------------------- /functions/Invoke-RunLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-RunLab.ps1 -------------------------------------------------------------------------------- /functions/Invoke-SetupHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-SetupHost.ps1 -------------------------------------------------------------------------------- /functions/Invoke-SetupLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-SetupLab.ps1 -------------------------------------------------------------------------------- /functions/Invoke-ShutdownLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-ShutdownLab.ps1 -------------------------------------------------------------------------------- /functions/Invoke-SnapshotLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-SnapshotLab.ps1 -------------------------------------------------------------------------------- /functions/Invoke-UnattendLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-UnattendLab.ps1 -------------------------------------------------------------------------------- /functions/Invoke-ValidateLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-ValidateLab.ps1 -------------------------------------------------------------------------------- /functions/Invoke-WipeLab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Invoke-WipeLab.ps1 -------------------------------------------------------------------------------- /functions/Test-ISOImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Test-ISOImage.ps1 -------------------------------------------------------------------------------- /functions/Test-It.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Test-It.ps1 -------------------------------------------------------------------------------- /functions/Test-LabDSCResource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Test-LabDSCResource.ps1 -------------------------------------------------------------------------------- /functions/Update-Lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/Update-Lab.ps1 -------------------------------------------------------------------------------- /functions/private.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/functions/private.ps1 -------------------------------------------------------------------------------- /images/command-console_Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/images/command-console_Orange.png -------------------------------------------------------------------------------- /images/get-labsummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/images/get-labsummary.png -------------------------------------------------------------------------------- /intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/intro.md -------------------------------------------------------------------------------- /update-v5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluralsight/PS-AutoLab-Env/HEAD/update-v5.md --------------------------------------------------------------------------------