1、单台虚拟机注册
1.1、查看欲注册虚拟机的存储路径
PS C:\Users\WCY> Get-Datastore -Name DCA_NETAPP_LD01 | select *
1.2、进入在步骤1.1得到的存储路径信息,查看欲注册虚拟机vmx文件名称
cd vmstores:\10.1.1.10@443\DCAB_AP\DCA_NETAPP_LD01\
$vmxFile = Get-Item LD0170002\LD0170002.vmx
1.3欲将虚拟机注册到esxi01主机上
$vmhost = Get-VMHost -Name esxi01
1.4执行注册命令
New-VM -VMHost $vmhost -VMFilePath $vmxFile.DatastoreFullPath
2、批量注册虚拟机