17 lines
349 B
PowerShell
17 lines
349 B
PowerShell
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
#Requires -Modules VagrantMessages
|
|
|
|
param(
|
|
[Parameter(Mandatory=$true)]
|
|
[string]$DiskFilePath
|
|
)
|
|
|
|
try {
|
|
Hyper-V\Dismount-VHD -path $DiskFilePath
|
|
} catch {
|
|
Write-ErrorMessage "Failed to dismount disk info from disk file path ${DiskFilePath}: ${PSItem}"
|
|
exit 1
|
|
}
|