Feat: S: Add SRV-03 VM creation script
This commit is contained in:
parent
324b4e4bf9
commit
46128c4892
@ -37,6 +37,37 @@ echo "Configuring adapters"
|
|||||||
Rename-VMNetworkAdapter -VMName 'SRV-01' -NewName 'Arc-SRV'
|
Rename-VMNetworkAdapter -VMName 'SRV-01' -NewName 'Arc-SRV'
|
||||||
Set-VMNetworkAdapter -VMName 'SRV-01' -Name "Arc-SRV" -DeviceNaming on
|
Set-VMNetworkAdapter -VMName 'SRV-01' -Name "Arc-SRV" -DeviceNaming on
|
||||||
|
|
||||||
|
### Adding SRV-03
|
||||||
|
|
||||||
|
echo "Adding and configuring SRV-03"
|
||||||
|
cp D:\VHD\Base\Base_SRV_diff.vhdx D:\VHD\SRV-03.vhdx
|
||||||
|
|
||||||
|
Mount-VHD d:\VHD\SRV-03.vhdx
|
||||||
|
Copy-Item d:\Unattend\server.xml -Destination e:\Windows\Panther\Unattend.xml
|
||||||
|
mkdir e:\Tools\Scripts
|
||||||
|
mkdir "e:\Program Files\BGINFO"
|
||||||
|
Copy-item d:\Scripts\Guests\SRV-03.ps1 E:\Tools\scripts\boot.ps1
|
||||||
|
Copy-Item D:\Soft\BGInfo_Deploiement\BGInfo64.exe "e:\Program Files\BGINFO\"
|
||||||
|
Copy-Item D:\Soft\BGInfo_Deploiement\mescouilles2.bgi "e:\Program Files\BGINFO\"
|
||||||
|
Copy-Item D:\Soft\BGInfo_Deploiement\bginfo.bat "e:\Program Files\BGINFO\"
|
||||||
|
Dismount-VHD d:\VHD\SRV-01.vhdx
|
||||||
|
|
||||||
|
$vms = @{
|
||||||
|
|
||||||
|
Name = "SRV-03"
|
||||||
|
Generation = '2'
|
||||||
|
MemoryStartupBytes = 1024Mb
|
||||||
|
VHDPath = "d:\VHD\SRV-01.vhdx"
|
||||||
|
SwitchName = "Arc-SRV"
|
||||||
|
}
|
||||||
|
|
||||||
|
New-VM @vms
|
||||||
|
Set-VMMemory SRV-03 -DynamicMemoryEnabled $true -MinimumBytes 512MB -StartupBytes 1024MB -MaximumBytes 2GB
|
||||||
|
Set-VM -Name SRV-03 -ProcessorCount 2
|
||||||
|
|
||||||
|
echo "Configuring adapters"
|
||||||
|
Rename-VMNetworkAdapter -VMName 'SRV-03' -NewName 'Arc-SRV'
|
||||||
|
Set-VMNetworkAdapter -VMName 'SRV-03' -Name "Arc-SRV" -DeviceNaming on
|
||||||
|
|
||||||
### Adding and configuring RTR-01
|
### Adding and configuring RTR-01
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user