19 lines
338 B
PowerShell
19 lines
338 B
PowerShell
#Requires -Modules VagrantMessages
|
|
|
|
param(
|
|
[Parameter(Mandatory=$true)]
|
|
[string]$Source,
|
|
|
|
[Parameter(Mandatory=$true)]
|
|
[string]$Destination
|
|
)
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
try {
|
|
Hyper-V\New-VHD -Path $Destination -ParentPath $Source
|
|
} catch {
|
|
Write-ErrorMessage "Failed to clone drive: ${PSItem}"
|
|
exit 1
|
|
}
|