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

Retrieving a list of the vCenter Servers linked to the Horizon View environment


The Get-ViewVC command retrieves the Horizon View Composer Server information for the specified Composer server.

How to do it…

The following is an example of how the Get-ViewVC command is used:

Get-ViewVC -Name "VC-01.vjason.local"

Omit the -Name option in order to retrieve a list of all vCenter Servers.

How it works…

The Get-ViewVC command supports the use of multiple options in order to retrieve the vCenter Server information. These options include the following:

  • The ComposerPort option: This is the port to be used with the Composer Server.

  • The ComposerURL option: This is the Composer URL in the https://ComposerFQDN:Port format.

  • The ComposerUsername option: This is the Composer username in the domain\username format.

  • The Description option: This is the description for the vCenter Server in the Horizon View Manager Admin console. This value should be contained within quotes.

  • The DisplayName option: This is the display...