mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
21 lines
407 B
PowerShell
21 lines
407 B
PowerShell
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
#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
|
|
}
|