PowerShell/docs/new-linux-vm.md
2024-11-20 11:52:20 +01:00

42 lines
931 B
Markdown

The *new-linux-vm.ps1* Script
===========================
new-linux-vm.ps1
Parameters
----------
```powershell
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
Script Content
--------------
```powershell
$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
```
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:57)*