More actions
Combined display of all available logs of Thibble Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 02:22, 2 November 2024 T20A02 talk contribs created page Hyper‐V Creating New, and Linked VM's (Created page with "== Creating a Base VM in Hyper-V with Windows Server 2019 == === Creating the Base VM === ==== PowerShell Commands: ==== These are the commands used in order top create a new base VM via powershell <pre> $VMName = "BaseVM" $VMPath = "C:\Hyper-V\VMs" $ISOPath = "C:\Path\to\WindowsServer2019.iso" New-VM -Name $VMName -Path $VMPath -MemoryStartupBytes 4GB -NewVHDPath "$VMPath\$VMName.vhdx" -NewVHDSizeBytes 60GB Set-VMBios -VMName $VMName -BootOrder "CD" Add-VMDvdDrive...")