Book Image

VMware Horizon View 6 Desktop Virtualization Cookbook

By : Jason Ventresco
Book Image

VMware Horizon View 6 Desktop Virtualization Cookbook

By: Jason Ventresco

Overview of this book

Table of Contents (18 chapters)
VMware Horizon View 6 Desktop Virtualization Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
4
Managing VMware Horizon View with PowerCLI
Index

Exporting network label specifications for full-clone pools


In this recipe, we will demonstrate how to create a network label specification file by exporting the configuration of an existing virtual desktop master template.

Getting ready

To export the network label specification file that will be used to create full-clone pools, we need a virtual desktop master image that is configured with our desired virtual machine network settings. The virtual machine should also be converted into the vSphere template format, as this is a prerequisite for images that will be used to create full-clone desktop pools.

How to do it…

The following example command uses the same parameters as the Export-NetworkLabelSpecForLinkedClone command:

Export-NetworkLabelSpecForFullClone -ClusterPath "/RTP/host/DT-Cluster1" -vc_id (Get-ViewVC -ServerName "VC-01.vjason.local").vc_id -TemplatePath "/RTP/vm/Master/Win81x32-FC" -MaxVMsPerNetworkLabel 250 -NetworkLabelConfigFile "d:\FCConfigFile"

The Get-ViewVC option was run...