100 lines
2.4 KiB
PowerShell
100 lines
2.4 KiB
PowerShell
## Tool to automate VM creation
|
|
echo "Shamefully made by Alexandre Simao. Pardon-me M. Stallman"
|
|
|
|
# SRV-01
|
|
|
|
$VMName = "SRV-01"
|
|
cp D:\VHD\Base_dif\Base_server_g2.vhdx D:\VHD\$VMName.vhdx
|
|
|
|
Mount-VHD d:\VHD\$VMName.vhdx
|
|
Copy-Item d:\Unattend\$VMName.xml -Destination e:\Windows\Panther\Unattend.xml
|
|
Dismount-VHD d:\VHD\$VMName.vhdx
|
|
|
|
$vms = @{
|
|
|
|
Name = $VMName
|
|
Generation = '2'
|
|
MemoryStartupBytes = 1024Mb
|
|
VHDPath = "d:\VHD\$VMName.vhdx"
|
|
SwitchName = 'Arc-SRV'
|
|
|
|
}
|
|
|
|
New-VM @vms
|
|
Set-VMMemory $VMName -DynamicMemoryEnabled $true -MinimumBytes 512MB -StartupBytes 1024MB -MaximumBytes 2GB
|
|
|
|
# RTR-01
|
|
|
|
$VMName = "RTR-01"
|
|
cp D:\VHD\Base_dif\Base_server_g2.vhdx D:\VHD\$VMName.vhdx
|
|
|
|
Mount-VHD d:\VHD\$VMName.vhdx
|
|
Copy-Item d:\Unattend\$VMName.xml -Destination e:\Windows\Panther\Unattend.xml
|
|
Dismount-VHD d:\VHD\$VMName.vhdx
|
|
|
|
$vms = @{
|
|
|
|
Name = $VMName
|
|
Generation = '2'
|
|
MemoryStartupBytes = 1024Mb
|
|
VHDPath = "d:\VHD\$VMName.vhdx"
|
|
SwitchName = 'Arc-SRV'
|
|
|
|
|
|
}
|
|
|
|
New-VM @vms
|
|
Set-VMMemory $VMName -DynamicMemoryEnabled $true -MinimumBytes 512MB -StartupBytes 1024MB -MaximumBytes 2GB
|
|
Add-VMNetworkAdapter -VMName $VMName -SwitchName "Arc-CLI"
|
|
Add-VMNetworkAdapter -VMName $VMName -SwitchName "WAN"
|
|
|
|
# RTR-02
|
|
|
|
$VMName = "RTR-02"
|
|
cp D:\VHD\Base_dif\Base_server_g2.vhdx D:\VHD\$VMName.vhdx
|
|
|
|
Mount-VHD d:\VHD\$VMName.vhdx
|
|
Copy-Item d:\Unattend\$VMName.xml -Destination e:\Windows\Panther\Unattend.xml
|
|
Dismount-VHD d:\VHD\$VMName.vhdx
|
|
|
|
$vms = @{
|
|
|
|
Name = $VMName
|
|
Generation = '2'
|
|
MemoryStartupBytes = 1024Mb
|
|
VHDPath = "d:\VHD\$VMName.vhdx"
|
|
SwitchName = 'Bou-LAN'
|
|
|
|
}
|
|
|
|
New-VM @vms
|
|
Set-VMMemory $VMName -DynamicMemoryEnabled $true -MinimumBytes 512MB -StartupBytes 1024MB -MaximumBytes 2GB
|
|
#Add-VMSwitch -Name "WAN" -ResourcePoolName "WAN"
|
|
Add-VMNetworkAdapter -VMName $VMName -SwitchName "WAN"
|
|
|
|
# RTR-03
|
|
|
|
$VMName = "RTR-03"
|
|
cp D:\VHD\Base_dif\Base_server_g2.vhdx D:\VHD\$VMName.vhdx
|
|
|
|
Mount-VHD d:\VHD\$VMName.vhdx
|
|
Copy-Item d:\Unattend\$VMName.xml -Destination e:\Windows\Panther\Unattend.xml
|
|
Dismount-VHD d:\VHD\$VMName.vhdx
|
|
|
|
$vms = @{
|
|
|
|
Name = $VMName
|
|
Generation = '2'
|
|
MemoryStartupBytes = 1024Mb
|
|
VHDPath = "d:\VHD\$VMName.vhdx"
|
|
SwitchName = 'WAN'
|
|
|
|
}
|
|
|
|
New-VM @vms
|
|
Set-VMMemory $VMName -DynamicMemoryEnabled $true -MinimumBytes 512MB -StartupBytes 1024MB -MaximumBytes 2GB
|
|
Add-VMNetworkAdapter -VMName $VMName -SwitchName "Aston"
|
|
|
|
Start-VM -Name RTR*
|
|
Start-VM -Name SRV*
|