VMware Cloud Community
kevluo
Contributor
Contributor

How to do Snapshot Conversion on a VM in physical machine from a VM in ESX Server

Hi,

I have a virtual machine named A in VMWare ESX Server, and a virtual machine named B in my physical machine which named C. 

I login A, and I need to do Snapshot Conversion on B, how can I do it? Could you pls. share your experience with me or give me some instructions on this case? A and B are in the same domain.

Thanks,

Kevin

0 Kudos
4 Replies
LucD
Leadership
Leadership

Not sure I understand what you are trying to do here ?

What do you mean by Snapshot Conversion ?

And is this a PowerCLI related question ?


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

0 Kudos
kevluo
Contributor
Contributor

Can I use PowerCLI to control another VM A in my physical PC from a VM B in VMWare ESX Server? How to do it?

I need A to be converted to the previous snapshot status.

0 Kudos
RvdNieuwendijk
Leadership
Leadership

If VM A is running in VMware Workstation, VMware Player or VMware Server, you are not able to use PowerCLI to manage that VM. With PowerCLI you can only connect to a vCenter Server or an ESX(i) server.

If VM A is running on a ESX(i) server and has a snapshot called "Snapshot 1", you can revert to this snapshot with the following PowerCLI code:

$Snapshot = Get-Snapshot -VM "A" -Name "Snapshot 1"

Set-VM -VM "A" -Snapshot $Snapshot -Confirm:$false


Regards, Robert

Blog: https://rvdnieuwendijk.com/ | Twitter: @rvdnieuwendijk | Author of: https://www.packtpub.com/virtualization-and-cloud/learning-powercli-second-edition
0 Kudos
kevluo
Contributor
Contributor

Hi Robert,

Thank you for your help. Got it.

Thanks,

Kevin

0 Kudos