support/hyperv.ps1 in kitchen-hyperv-0.1.3 vs support/hyperv.ps1 in kitchen-hyperv-0.1.4
- old
+ new
@@ -138,6 +138,14 @@
}
function Get-DefaultVMSwitch
{
Get-VMSwitch | Select -First 1
+}
+
+function Mount-VMISO {
+ [cmdletbinding()]
+ param($Id, $Path)
+
+ set-VMDvdDrive -VMName (get-vm -id $Id).Name -Path $Path
+
}
\ No newline at end of file