101 lines
3.4 KiB
PowerShell
101 lines
3.4 KiB
PowerShell
### Adding SRV-01
|
|
|
|
echo "Adding and configuring SRV-01"
|
|
cp D:\VHD\Base\Base_SRV_diff.vhdx D:\VHD\SRV-01.vhdx
|
|
|
|
$Lettre = Mount-VHD -Path "d:\VHD\SRV-01.VHDx" -PassThru | Get-Disk | Get-Partition | Get-Volume | Sort-Object -Property Size -Descending | Select-Object -First 1
|
|
$DriveLetter = $Lettre.DriveLetter
|
|
$drive = $DriveLetter + ":"
|
|
Copy-Item D:\Scripts\Unattend\FullUnattend-srv.xml -Destination "$Drive\Windows\Panther\Unattend.xml"
|
|
Copy-Item D:\Scripts\deploy.cmd -Destination "${Driveletter}:\conf\deploy.cmd"
|
|
mkdir "${Driveletter}:\Tools\Scripts"
|
|
Copy-item d:\Scripts\Guests\SRV-01.ps1 "${Driveletter}:\Tools\scripts\boot.ps1"
|
|
|
|
Dismount-VHD d:\VHD\SRV-01.vhdx
|
|
|
|
$vms = @{
|
|
|
|
Name = "SRV-01"
|
|
Generation = '2'
|
|
MemoryStartupBytes = 1024Mb
|
|
VHDPath = "d:\VHD\SRV-01.vhdx"
|
|
SwitchName = "Arc-SRV"
|
|
}
|
|
|
|
New-VM @vms
|
|
Set-VMMemory SRV-01 -DynamicMemoryEnabled $true -MinimumBytes 512MB -StartupBytes 1024MB -MaximumBytes 2GB
|
|
Set-VM -Name SRV-01 -ProcessorCount 2
|
|
|
|
echo "Configuring adapters"
|
|
Rename-VMNetworkAdapter -VMName 'SRV-01' -NewName 'Arc-SRV'
|
|
Set-VMNetworkAdapter -VMName 'SRV-01' -Name "Arc-SRV" -DeviceNaming on
|
|
|
|
### Adding SRV-02
|
|
|
|
echo "Adding and configuring SRV-02"
|
|
cp D:\VHD\Base\Base_SRV_diff.vhdx D:\VHD\SRV-02.vhdx
|
|
|
|
$Lettre = Mount-VHD -Path "d:\VHD\SRV-02.VHDx" -PassThru | Get-Disk | Get-Partition | Get-Volume | Sort-Object -Property Size -Descending | Select-Object -First 1
|
|
$DriveLetter = $Lettre.DriveLetter
|
|
$drive = $DriveLetter + ":"
|
|
Copy-Item D:\Scripts\Unattend\FullUnattend-srv.xml -Destination "$Drive\Windows\Panther\Unattend.xml"
|
|
Copy-Item D:\Scripts\deploy.cmd -Destination "${Driveletter}:\conf\deploy.cmd"
|
|
mkdir "${Driveletter}:\Tools\Scripts"
|
|
Copy-item d:\Scripts\Guests\SRV-02.ps1 "${Driveletter}:\Tools\scripts\boot.ps1"
|
|
|
|
Dismount-VHD d:\VHD\SRV-02.vhdx
|
|
|
|
$vms = @{
|
|
|
|
Name = "SRV-02"
|
|
Generation = '2'
|
|
MemoryStartupBytes = 1024Mb
|
|
VHDPath = "d:\VHD\SRV-02.vhdx"
|
|
SwitchName = "Arc-SRV"
|
|
}
|
|
|
|
New-VM @vms
|
|
Set-VMMemory SRV-02 -DynamicMemoryEnabled $true -MinimumBytes 512MB -StartupBytes 1024MB -MaximumBytes 2GB
|
|
Set-VM -Name SRV-02 -ProcessorCount 2
|
|
|
|
echo "Configuring adapters"
|
|
Rename-VMNetworkAdapter -VMName 'SRV-02' -NewName 'Arc-SRV'
|
|
Set-VMNetworkAdapter -VMName 'SRV-02' -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
|
|
|
|
$Lettre = Mount-VHD -Path "d:\VHD\SRV-03.VHDx" -PassThru | Get-Disk | Get-Partition | Get-Volume | Sort-Object -Property Size -Descending | Select-Object -First 1
|
|
$DriveLetter = $Lettre.DriveLetter
|
|
$drive = $DriveLetter + ":"
|
|
Copy-Item D:\Scripts\Unattend\FullUnattend-srv.xml -Destination "$Drive\Windows\Panther\Unattend.xml"
|
|
Copy-Item D:\Scripts\deploy.cmd -Destination "${Driveletter}:\conf\deploy.cmd"
|
|
mkdir "${Driveletter}:\Tools\Scripts"
|
|
Copy-item d:\Scripts\Guests\SRV-03.ps1 "${Driveletter}:\Tools\scripts\boot.ps1"
|
|
|
|
Dismount-VHD d:\VHD\SRV-03.vhdx
|
|
|
|
$vms = @{
|
|
|
|
Name = "SRV-03"
|
|
Generation = '2'
|
|
MemoryStartupBytes = 1024Mb
|
|
VHDPath = "d:\VHD\SRV-03.vhdx"
|
|
SwitchName = "Bou-LAN"
|
|
}
|
|
|
|
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 'Bou-LAN'
|
|
Set-VMNetworkAdapter -VMName 'SRV-03' -Name "Bou-Lan" -DeviceNaming on
|
|
|
|
|
|
Start-VM -Name SRV*
|