hyper-v boot device by generation fixes #6372
This commit is contained in:
parent
169cacd710
commit
00894b5a27
|
@ -81,14 +81,24 @@ if (!$switchname) {
|
||||||
$switchname = (Select-Xml -xml $vmconfig -XPath "//AltSwitchName").node."#text"
|
$switchname = (Select-Xml -xml $vmconfig -XPath "//AltSwitchName").node."#text"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Determine boot device
|
if ($generation -eq 1) {
|
||||||
Switch ((Select-Xml -xml $vmconfig -XPath "//boot").node.device0."#text") {
|
# Determine boot device
|
||||||
"Floppy" { $bootdevice = "floppy" }
|
Switch ((Select-Xml -xml $vmconfig -XPath "//boot").node.device0."#text") {
|
||||||
"HardDrive" { $bootdevice = "IDE" }
|
"Floppy" { $bootdevice = "Floppy" }
|
||||||
"Optical" { $bootdevice = "CD" }
|
"HardDrive" { $bootdevice = "IDE" }
|
||||||
"Network" { $bootdevice = "LegacyNetworkAdapter" }
|
"Optical" { $bootdevice = "CD" }
|
||||||
"Default" { $bootdevice = "IDE" }
|
"Network" { $bootdevice = "LegacyNetworkAdapter" }
|
||||||
} #switch
|
"Default" { $bootdevice = "IDE" }
|
||||||
|
} #switch
|
||||||
|
} else {
|
||||||
|
# Determine boot device
|
||||||
|
Switch ((Select-Xml -xml $vmconfig -XPath "//boot").node.device0."#text") {
|
||||||
|
"HardDrive" { $bootdevice = "VHD" }
|
||||||
|
"Optical" { $bootdevice = "CD" }
|
||||||
|
"Network" { $bootdevice = "NetworkAdapter" }
|
||||||
|
"Default" { $bootdevice = "VHD" }
|
||||||
|
} #switch
|
||||||
|
}
|
||||||
|
|
||||||
# Determine secure boot options
|
# Determine secure boot options
|
||||||
$secure_boot_enabled = (Select-Xml -xml $vmconfig -XPath "//secure_boot_enabled").Node."#text"
|
$secure_boot_enabled = (Select-Xml -xml $vmconfig -XPath "//secure_boot_enabled").Node."#text"
|
||||||
|
|
Loading…
Reference in New Issue