Import-VMInitialReplication

Import-VMInitialReplication

Imports initial replication files for a Replica virtual machine to complete the initial replication when using external media as the source.

구문

Parameter Set: VMName
Import-VMInitialReplication [-VMName] <String[]> [-Path] <String> [-AsJob] [-ComputerName <String[]> ] [-PassThru] [ <CommonParameters>]

Parameter Set: VMObject
Import-VMInitialReplication [-VM] <VirtualMachine[]> [-Path] <String> [-AsJob] [-PassThru] [ <CommonParameters>]

Parameter Set: VMReplication
Import-VMInitialReplication [-VMReplication] <VMReplication[]> [-Path] <String> [-AsJob] [-PassThru] [ <CommonParameters>]

자세한 설명

The Import-VMInitialReplication cmdlet imports initial replication files on a Replica server. It completes the initial replication of a virtual machine when external is used as the source of the files for initial replication.

매개 변수

-AsJob

Runs the cmdlet as a background job.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-ComputerName<String[]>

Specifies one or more Hyper-V hosts on which initial replication files are to be imported. NetBIOS names, IP addresses, and fully-qualified domain names are allowable. The default is the local computer — use “localhost” or a dot (“.”) to specify the local computer explicitly.

별칭

없음

필수 여부

false

위치

named

기본값

.

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-PassThru

Specifies that an object is to be passed through to the pipeline representing the virtual machine for which initial replication files are to be imported.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-Path<String>

Specifies the path of the initial replication files to import.

별칭

없음

필수 여부

true

위치

2

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-VM<VirtualMachine[]>

Specifies the virtual machine for which the initial replication files are to be imported.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

true (ByValue)

와일드카드 문자 허용 여부

false

-VMName<String[]>

Specifies the name of the virtual machine for which the initial replication files are to be imported.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

true (ByValue)

와일드카드 문자 허용 여부

true

-VMReplication<VMReplication[]>

Specifies the virtual machine replication object for which initial replication files are to be imported.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

true (ByValue)

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

출력

출력 유형은 cmdlet이 내보내는 개체의 유형입니다.

  • None by default; Microsoft.HyperV.PowerShell.VirtualMachine if –PassThru is specified.

예제

Example 1

This example imports the initial replication files for a virtual machine named VM01 from location d:\VMImportLocation\VM01.

PS C:\> Import-VMInitialReplication VM01 d:\VMImportLocation\VM01

Example 2

This example imports the initial replication files for a set of virtual machines using files located in D:\OOBLoc\

PS C:\> Get-VMReplication | ForEach-Object {$path = "D:\OOBLoc\" + $_.VMName + "_" + $_.VMID; if (Test-Path $path –PathType Container) {Import-VMInitialReplication $_ $path}}