--- title: "Generate-VBRViMigrationSpecificationFile" description: "Generates a migration task file. Platform: VMware Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet generates a migration task file which contains the list of MORef ID changes." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/generate-vbrvimigrationspecificationfile.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam VM Migrator > Generate-VBRViMigrationSpecificationFile" dateModified: "2026-08-19" --- # Generate-VBRViMigrationSpecificationFile ## Short Description Generates a migration task file. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Generate-VBRViMigrationSpecificationFile -OldVCenterName -NewVCenterName -ExportPath [] ``` ## Detailed Description This cmdlet generates a migration task file which contains the list of MORef ID changes. After the task file is generated, verify that the proposed MORef ID changes are valid before continuing the MORef ID update process. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

ExportPath

Specifies a path where the task file will be generated.

String

True

Named

False

NewVCenterName

Specifies a new VMware vCenter name.

String

True

Named

False

OldVCenterName

Specifies an old VMware vCenter name.

String

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Generating Migration Task File This example shows how generate the migration task file for the old VMware vCenter named `vcenter70_old` and the new VMware vCenter named `vcenter70`. ``` Generate-VBRViMigrationSpecificationFile -ExportPath C:\Folder -NewVCenterName vcenter70 -OldVCenterName vcenter70_old ``` :::