Sha256: a658fe82ad4e43a36f2a0099e117f090ecc8c26a322cd3d17f0cc4780c99b0a4
Contents?: true
Size: 697 Bytes
Versions: 10
Compression:
Stored size: 697 Bytes
Contents
#Requires -Modules VagrantMessages param( [Parameter(Mandatory=$true)] [string]$VmId, [Parameter(Mandatory=$true)] [string]$ControllerType, [Parameter(Mandatory=$true)] [string]$ControllerNumber, [Parameter(Mandatory=$true)] [string]$ControllerLocation, [Parameter(Mandatory=$true)] [string]$DiskFilePath ) try { $VM = Hyper-V\Get-VM -Id $VmId Hyper-v\Remove-VMHardDiskDrive -VMName $VM.Name -ControllerType $ControllerType -ControllerNumber $ControllerNumber -ControllerLocation $ControllerLocation Remove-Item -Path $DiskFilePath } catch { Write-ErrorMessage "Failed to remove disk ${DiskFilePath} to VM ${VM}: ${PSItem}" exit 1 }
Version data entries
10 entries across 10 versions & 3 rubygems