Add host files

This commit is contained in:
Alex 2021-04-20 11:39:24 +02:00
parent 34e7367976
commit 69302e7112
1 changed files with 67 additions and 0 deletions

67
Host/Infra-Standard.ps1 Normal file
View File

@ -0,0 +1,67 @@
## Tool to automate VM creation
$VMName = "SRV-01"
$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
$VMName = "RTR-01"
$vms = @{
Name = $VMName
Generation = '2'
MemoryStartupBytes = 1024Mb
VHDPath = "d:\VHD\$VMName.vhdx"
SwitchName = 'Arc-Cli'
}
New-VM @vms
Set-VMMemory $VMName -DynamicMemoryEnabled $true -MinimumBytes 512MB -StartupBytes 1024MB -MaximumBytes 2GB
Add-VMSwitch -Name "Arc-SRV" -ResourcePoolName "Arc-SRV"
Add-VMSwitch -Name "WAN" -ResourcePoolName "WAN"
$VMName = "RTR-02"
$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"
$VMName = "RTR-03"
$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-VMSwitch -Name "Aston" -ResourcePoolName "Aston"