Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/constantinhager/psconfeu2024-al
Everything for my Presentation on Automated Lab and SQL Server
https://github.com/constantinhager/psconfeu2024-al
Last synced: 27 days ago
JSON representation
Everything for my Presentation on Automated Lab and SQL Server
- Host: GitHub
- URL: https://github.com/constantinhager/psconfeu2024-al
- Owner: constantinhager
- License: mit
- Created: 2024-01-27T15:08:40.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-17T22:49:59.000Z (7 months ago)
- Last Synced: 2024-06-26T15:12:46.903Z (4 months ago)
- Language: PowerShell
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Install Azure VM
# Install Automated Lab
See [script](/Install/InstallAutomatedLab.ps1)# Add Needed ISOS
The following ISOs are required to deploy the Lab- Windows Server 2022 Standard or Enterprise Edition (Eval or MSDN or some other source)
- SQL Server 2022 Enterprise Edition (Eval or MSDN or some other source)Copy them Inside of `$labsources\ISOs`
Endresult:
![ISO Folder](/Assets/ISOFolder.png)## Misc
to change a lab after it has been created, you can use the following command:
```powershell
Import-LabDefinition -Name LAB1$netAdapter = New-LabNetworkAdapterDefinition -VirtualSwitch 'NATSwitch' -UseDhcp
Add-LabMachineDefinition -Name LAB1SQL2 -Processors 2 -NetworkAdapter $netAdapterInstall-Lab
```