2016-03-01 17:23:38 +02:00

10 lines
188 B
PowerShell

Param(
[Parameter(Mandatory=$true)]
[string]$Source,
[Parameter(Mandatory=$true)]
[string]$Destination
)
New-VHD -Path $Destination -ParentPath $Source -ErrorAction Stop