mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 05:04:39 +02:00
Add some VM scripts
This commit is contained in:
19
scripts/new-linux-vm.ps1
Normal file
19
scripts/new-linux-vm.ps1
Normal file
@ -0,0 +1,19 @@
|
||||
$VMName = "linux"
|
||||
|
||||
$VM = @{
|
||||
Name = $VMName
|
||||
MemoryStartupBytes = 1GB
|
||||
Generation = 2
|
||||
NewVHDPath = "C:\VirtualMachines\$VMName\Virtual Hard Disks\$VMName.vhdx"
|
||||
NewVHDSizeBytes = 30GB
|
||||
BootDevice = "VHD"
|
||||
Path = "C:\VirtualMachines\"
|
||||
SwitchName = 'vSwitch'
|
||||
}
|
||||
|
||||
New-VM @VM
|
||||
Set-VMProcessor $VMName -count 1
|
||||
Add-VMDvdDrive $VMName
|
||||
Set-VMDvdDrive $VMName -Path "C:\iso\CentOS-8.3.2011-x86_64-minimal.iso"
|
||||
Set-VMFirmware -EnableSecureBoot Off $VMName
|
||||
exit 0 # success
|
Reference in New Issue
Block a user