deploy_clone_vm.ps1

This is a script used for creating a VM under the given conditons.

1>Deploy an OVF template remotely, if a given template VM is not present in the host.(slower)

2>Clone a VM if the template is present in the host(faster)

This script is very helpful in conditions, where we need to automate creation of multiple VMs.

If no  VM is present in the Host. It will deploy an OVF template from remote location.(This is time consuing but its a one time job)

If a VM is present in the host. It will clone the VM, saving much time.

This script can be used in a loop for the number of VMs needed to be created.

Attachments
Comments

This is a script used for creating a VM under the given conditons.

1>Deploy an OVF template remotely, if a given template VM is not present in the host.(slower)

2>Clone a VM if the template is present in the host(faster)

This script is very helpful in conditions, where we need to automate creation of multiple VMs.

If no  VM is present in the Host. It will deploy an OVF template from remote location.(This is time consuing but its a one time job)

If a VM is present in the host. It will clone the VM, saving much time.

This script can be used in a loop for the number of VMs needed to be created.

thank