Sha256: 060056acafbc77951ebf1d9f361f22cacb50ef670bee1a055c2bca15cc8a6c45

Contents?: true

Size: 889 Bytes

Versions: 29

Compression:

Stored size: 889 Bytes

Contents

#Requires -Modules VagrantVM, VagrantMessages

param(
    [parameter (Mandatory=$true)]
    [string] $VMConfigFile,
    [parameter (Mandatory=$true)]
    [string] $DestinationPath,
    [parameter (Mandatory=$true)]
    [string] $DataPath,
    [parameter (Mandatory=$true)]
    [string] $SourcePath,
    [parameter (Mandatory=$false)]
    [switch] $LinkedClone,
    [parameter (Mandatory=$false)]
    [string] $VMName=$null
)

$ErrorActionPreference = "Stop"

try {
    if($LinkedClone) {
        $linked = $true
    } else {
        $linked = $false
    }

    $VM = New-VagrantVM -VMConfigFile $VMConfigFile -DestinationPath $DestinationPath `
      -DataPath $DataPath -SourcePath $SourcePath -LinkedClone $linked -VMName $VMName

    $Result = @{
        id = $VM.Id.Guid;
    }
    Write-OutputMessage (ConvertTo-Json $Result)
} catch {
    Write-ErrorMessage "${PSItem}"
    exit 1
}

Version data entries

29 entries across 25 versions & 4 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/providers/hyperv/scripts/import_vm.ps1
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.3.3.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.3.2.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.19.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.18.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.16.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.14.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.10.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.9.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.8.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.7.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.6.2 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.6.1 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.6.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.5.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.4.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.3.0 plugins/providers/hyperv/scripts/import_vm.ps1
vagrant-unbundled-2.2.2.0 plugins/providers/hyperv/scripts/import_vm.ps1