Sha256: c0534388276dd6a8653d901f769d427edb00f2523baf625e9e0e14e760d6b422

Contents?: true

Size: 673 Bytes

Versions: 10

Compression:

Stored size: 673 Bytes

Contents

#Requires -Modules VagrantMessages

param(
    [Parameter(Mandatory=$true)]
    [string]$VmId,
    [Parameter(Mandatory=$true)]
    [string]$Path,
    [string]$ControllerType,
    [string]$ControllerNumber,
    [string]$ControllerLocation
)

$Params = @{}

foreach ($key in $MyInvocation.BoundParameters.keys) {
  $value = (Get-Variable -Exclude "ErrorAction" $key).Value
  if (($key -ne "VmId") -and ($key -ne "ErrorAction")) {
    $Params.Add($key, $value)
  }
}

try {
    $VM = Hyper-V\Get-VM -Id $VmId
    Hyper-V\Add-VMHardDiskDrive -VMName $VM.Name @Params
} catch {
    Write-ErrorMessage "Failed to attach disk ${DiskFilePath} to VM ${VM}: ${PSItem}"
    exit 1
}

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/providers/hyperv/scripts/attach_disk_drive.ps1
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/attach_disk_drive.ps1
vagrant-unbundled-2.3.3.0 plugins/providers/hyperv/scripts/attach_disk_drive.ps1
vagrant-unbundled-2.3.2.0 plugins/providers/hyperv/scripts/attach_disk_drive.ps1
vagrant-unbundled-2.2.19.0 plugins/providers/hyperv/scripts/attach_disk_drive.ps1
vagrant-unbundled-2.2.18.0 plugins/providers/hyperv/scripts/attach_disk_drive.ps1
vagrant-unbundled-2.2.16.0 plugins/providers/hyperv/scripts/attach_disk_drive.ps1
vagrant-unbundled-2.2.14.0 plugins/providers/hyperv/scripts/attach_disk_drive.ps1
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/providers/hyperv/scripts/attach_disk_drive.ps1
vagrant-unbundled-2.2.10.0 plugins/providers/hyperv/scripts/attach_disk_drive.ps1