VMware View Integration View 5.1 View Manager 5.1 View Composer 3.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document, see http://www.vmware.com/support/pubs.
VMware View Integration You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product updates. If you have comments about this documentation, submit your feedback to: docfeedback@vmware.com Copyright © 2011 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws.
Contents About This Book 5 1 Introduction 7 VMware View Components 7 Integration Interfaces to VMware View 8 2 Integrating with the Event Database 9 Event Database Tables and Schemas 9 Connection Broker Events 11 View Agent Events 17 View Administrator Events 17 View Transfer Server Events 25 Event Message Attributes 25 Sample Database Queries and Views 27 3 Using View PowerCLI 29 Introduction to View PowerCLI 29 Start the PowerShell Console with View PowerCLI Loaded 30 Displaying Help for a View Power
VMware View Integration Managing Local Desktops 42 Managing Remote Sessions 42 Managing Virtual Machines 42 Displaying Information About Physical Computers 43 Updating the Ownership of Machines 43 Displaying Information About Events 43 Managing the Global Configuration of VMware View 43 Managing View Licenses 44 Examples of Using View PowerCLI for Enhanced Functionality 44 Checking if a View Connection Server Instance Is Running 44 Resize Automatic and Linked-Clone Desktop Pools 45 Determining Paths to vSp
About This Book This guide describes how to integrate VMware View™ software with third-party software such as Windows PowerShell, business intelligence reporting engines, and Microsoft System Center Operations Manager (SCOM). Intended Audience This book is intended for anyone who wants to customize or integrate software to work with View Manager.
VMware View Integration 6 VMware, Inc.
1 Introduction 1 With VMware View™, system administrators can provision desktops and control user access to these desktops. Client software connects users to virtual desktops running on VMware vSphere™, or to physical systems running within your network environment.
VMware View Integration Integration Interfaces to VMware View You can use several interfaces to integrate VMware View with external applications. 8 Event database – you can configure VMware View to record events to a Microsoft SQL Server or Oracle database. You can then use business intelligence reporting engines to access and analyze this database. View PowerCLI – you can use the PowerShell interface to perform a wide variety of administration tasks on View components.
2 Integrating with the Event Database 2 You can configure VMware View to record events to a Microsoft SQL Server or Oracle database. VMware View records events such as the following examples: End-user actions such as logging in and starting a desktop session. Administrator actions such as adding entitlements and creating desktop pools. Alerts that report system failures and errors. Statistical sampling such as recording the maximum number of users over a 24-hour period.
VMware View Integration VMware View records details about events to all the database tables. After a certain period of time has elapsed since writing an event record, VMware View deletes the record from the event and event_data tables. You can use View Administrator to configure the time period for which the database keeps a record in the event and event_data tables. See the VMware View Installation document for more information.
Chapter 2 Integrating with the Event Database Table 2-3 shows the schema for the event_data and event_data_historical tables. Table 2-3. Schema for the event_data and event_data_historical Tables Column Name Oracle Data Type SQLServer Data Type BooleanValue SMALLINT tinyint Description Value of a Boolean attribute. 0 = false 1 = true EventID INTEGER int Unique primary key for the event. IntValue INTEGER int Value of an integer attribute.
VMware View Integration Table 2-4.
Chapter 2 Integrating with the Event Database Table 2-4.
VMware View Integration Table 2-4.
Chapter 2 Integrating with the Event Database Table 2-4.
VMware View Integration Table 2-4.
Chapter 2 Integrating with the Event Database View Agent Events Table 2-5 shows the event types for View Agent. Table 2-5.
VMware View Integration Table 2-6. View Administrator Events (Continued) 18 EventType Severity ModuleAndEventText ADMIN_ADMINSTRATOR_REMOVED AUDIT_SUCCESS ${UserDisplayName} removed all permissions for Administrator ${AdminPermissionEntity} ADMIN_CONFIGURE_TRANSFER_SERVER_ LOCAL_REPO INFO Configure a local Transfer Server Repository. Path ${PathName} ADMIN_CONFIGURE_TRANSFER_SERVER_ NETWORK_REPO INFO Configure a network Transfer Server Repository.
Chapter 2 Integrating with the Event Database Table 2-6.
VMware View Integration Table 2-6.
Chapter 2 Integrating with the Event Database Table 2-6.
VMware View Integration Table 2-6.
Chapter 2 Integrating with the Event Database Table 2-6.
VMware View Integration Table 2-6.
Chapter 2 Integrating with the Event Database View Transfer Server Events Table 2-7 shows the event types for View Transfer Server. Table 2-7.
VMware View Integration Table 2-8. Attributes Used with ModuleAndEventText Messages (Continued) 26 Attribute Name Description MachineId Identifier of a physical or virtual machine. MachineName Name of a physical or virtual machine. MaintenanceMode Maintenance mode state. ObjectID Identifier of an inventory object. ObjectType Type of an inventory object. PackageName Name of a View Transfer Server package. PathName Path of a View Transfer Server repository.
Chapter 2 Integrating with the Event Database Sample Database Queries and Views NOTE Replace the dbo.VE_ prefix in the examples with the appropriate prefix for your event database server. Display all error events from the event_historical table. CREATE VIEW error_events AS ( SELECT ev.EventID, ev.Time, ev.Module, ev.EventType, ev.ModuleAndEventText FROM dbo.VE_event_historical AS ev WHERE ev.Severity = ‘ERROR’ ); Display all warning events from the event_historical table.
VMware View Integration List all recent events where an administrator added a ThinApp repository. CREATE VIEW thinapp_repository_added_events AS ( SELECT ev.EventID, ev.Time, ed1.StrValue, ed2.StrValue, ed3.StrValue FROM dbo.VE_event_historical AS ev, dbo.VE_event_data_historical AS ed1, dbo.VE_event_data_historical AS ed2, dbo.VE_event_data_historical AS ed3 WHERE ev.EventID = ed1.EventID AND ev.EventID = ed2.EventID AND ev.EventID = ed3.EventID AND ev.EventType = ‘ADMIN_THINAPP_REPO_ADDED’ AND ed1.
3 Using View PowerCLI 3 View PowerCLI provides an easy-to-use PowerShell interface to VMware View. You can use the View PowerCLI cmdlets to perform various administration tasks on View components.
VMware View Integration Start the PowerShell Console with View PowerCLI Loaded You can run the View PowerCLI cmdlets directly on a View Connections Server host that has the following software installed. VMware View 4.5 or later Microsoft .NET framework Windows PowerShell 1.
Chapter 3 Using View PowerCLI Get-Pool -pool_id Pool1 | Update-ManualPool -pool_id Pool2 -displayName “Manual Pool 2” Escaping Characters in vCenter Path Names If you specify a path to a vCenter folder that includes certain special characters in the name of an entity, you must escape these characters. Table 3-1 shows the escape sequences for special characters. Table 3-1. Escape Sequences for Special Characters Special Character Escape Sequence % %25 / %2f \ %5c Do not escape the slashes in the pa
VMware View Integration Table 3-3. View PowerCLI Cmdlets Ordered by Noun (Continued) 32 Cmdlet Description Get-EventReportList Returns the views that are available for use with the Get-EventReport cmdlet. Get-GlobalSetting Returns global configuration information about the VMware View environment. Update-GlobalSetting Updates global configuration information about the VMware View environment. Get-License Returns the VMware View licenses on a View Connection Server instance.
Chapter 3 Using View PowerCLI View Administrator, View PowerCLI Cmdlet, and vdmadmin Operations Table 3-4 compares the operations that are supported by View Administrator, View PowerCLI cmdlets, and the vdmadmin command on various View objects. For information about View Administrator and the vdmadmin command, see the VMware View Administration document. Table 3-4.
VMware View Integration Table 3-4.
Chapter 3 Using View PowerCLI Table 3-4.
VMware View Integration Flash Quality Settings Table 3-7 shows the settings that you can use with the -flashQuality parameter to specify a maximum allowable quality for Adobe Flash content. This value overrides the setting on a Web page. If the Flash quality for a Web page is higher than the maximum value allowed, the client reduces the quality to the specified maximum. Lowering the quality of Flash content causes it to use less bandwidth. Table 3-7.
Chapter 3 Using View PowerCLI Pool Type Settings Table 3-10 shows the settings that you can use with the -poolType parameter to specify the type of a desktop pool. Table 3-10. Pool Type Settings Pool Type Description IndividualUnmanaged Specifies a pool containing an individual unmanaged desktop. IndividualVC Specifies a pool containing an individual desktop that is managed and configured by a vCenter Server.
VMware View Integration Refresh Policy Settings Table 3-13 shows the settings that you can use with the -refreshPolicyType parameter to specify a refresh policy for the OS disks of automatically provisioned dedicated and linked-clone desktop pools. Table 3-12. Refresh Policy Settings Refresh Policy Description Always Specifies that an OS disk is always refreshed when the user logs out. Conditional Specifies that an OS disk is refreshed when the user logs out if certain conditions are met.
Chapter 3 Using View PowerCLI Examples of Using View PowerCLI Cmdlets The View PowerCLI cmdlets allow you to perform View operations from the command line or from scripts instead of using View Administrator. The following sections contain examples that you can adapt and apply to your own systems. Displaying Information About a View Connection Server Instance Display the configuration settings of a View Connection Server instance.
VMware View Integration Return information about all individual unmanaged desktop pools. Get-Pool -poolType IndividualUnmanaged Remove the desktop pool dtpool-10. Remove-Pool -pool_id dtpool-10 Remove the desktop pool dtpool-12, terminating any active session, but without deleting the image from disk. Remove-Pool -pool_id dtpool-12 -TerminateSession $true -DeleteFromDisk $false Remove a desktop pool specified by its display name, and delete its image from disk.
Chapter 3 Using View PowerCLI Get-DesktopVM -pool_id lcdpool_2 | Send-LinkedCloneRebalance -schedule 2011-05-10:01:00:00 -forceLogoff $false -stopOnError $true Refresh the operating system disk of each linked-clone desktop by restoring it to its original state and size. Get-DesktopVM -pool_id lcdpool_2 | Send-LinkedCloneRefresh -schedule "May 12 2011 01:15" -forceLogoff $true -stopOnError $true Recompose all linked-clone desktops from a snapshot of their parent virtual machine.
VMware View Integration Managing Desktop Entitlements Add an entitlement for the user fred in the domain mydom to use desktop pool dtop-12. Get-User -name "mydom\fred" | Add-PoolEntitlement -pool_id dtop-12 Add an entitlement to all desktop pools for the user usr1. Get-Pool | Add-PoolEntitlement -sid (Get-User -name "usr1").sid Return information about all entitlements to desktop pools. Get-PoolEntitlement Return information about the users who are entitled to use desktop pool dtop-1.
Chapter 3 Using View PowerCLI Return information about the virtual machines that are managed by the same vCenter Server that provisions the desktop pool dtpool-1. Get-ViewVC -pool_id dtpool-1 | Get-DesktopVM Return information about all virtual machines that are managed by the vCenter Server that is configured on the server vc01.mydom.int. Get-ViewVC -serverName vc01.mydom.int | Get-DesktopVM Return a list of active persistent user data disks for the virtual machine vm01.
VMware View Integration Set the session timeout to 30 minutes. Update-GlobalSetting -SessionTimeout 30 Set the forced logout warning message and delay period. Update-GlobalSetting -DisplayLogoffWarning $true -ForcedLogoffAfter $logoutdelay -ForcedLogoffMessage "Forced log out will occur in $logoutdelay minutes" Require clients to use SSL to connect and set the prelogin message. Update-GlobalSetting -UseSSLClient $true -PreLoginMessage "Insert disclaimer and other notices here.
Chapter 3 Using View PowerCLI $started = $false Start-Sleep -s 1 } else { if($ClearError){ $error.Clear() } Write-Error $err break } } if($ClearError){ $error.Clear() } } } else { Write-Error "The View Connection Server services could not be found.
VMware View Integration # Determine the maximum number of desktops configured for a pool. $maxdesktops = 0 if($Pool.deliveryModel -eq "Provisioned"){ $maxdesktops = $Pool.maximumCount } else { $maxdesktops = $Pool.machineDNs.split(";").Count } # Output the Write-Output Write-Output Write-Output Write-Output Write-Output usage statistics for a pool. ("==== " + $Pool.
Chapter 3 Using View PowerCLI $path = "" # Recursively move up through the inventory hierarchy by parent or folder. if($InvObject.ParentId){ $path = VVGetPath(Get-Inventory -Id $InvObject.ParentId) } elseif ($InvObject.FolderId){ $path = VVGetPath(Get-Folder -Id $InvObject.FolderId) } # Build the path, omitting the "Datacenters" folder at the root. if(-not $InvObject.isChildTypeDatacenter){ # Add object to the path. $path = $path + "/" + $InvObject.
VMware View Integration # Parameters # $Pool # $Datastore Pool ID of pool to be updated. Full path to datastore to be removed. function RemoveDatastoreFromAutomaticPool { param ($Pool, $Datastore) $PoolSettings = (Get-Pool -pool_id $Pool) $currentdatastores = $PoolSettings.datastorePaths $datastores = "" foreach ($path in $currentdatastores.
4 Customizing LDAP Data 4 You can use VMware and Microsoft command tools to export and import LDAP configuration data in LDAP Data Interchange Format (LDIF) files from and into VMware View. These commands are intended for use by advanced administrators who want to use scripts to update configuration data without using View Administrator. If you want to create scripts to update the View configuration, VMware recommends that you use View PowerCLI rather than LDAP commands.
VMware View Integration Export LDAP Configuration Data You can export configuration data from a standard or replica View Connection Server instance to an LDIF file by running the vdmexport command-line utility. By default, the vdmexport command-line utility is installed in the C:\Program Files\VMware\VMware View\Server\tools\bin directory. In View Manager 3.
Chapter 4 Customizing LDAP Data The following extract from an LDIF file shows sample entries for a desktop pool named Pool1, which contains two virtual desktops named VM1 and VM2. The desktop pool entry is paired with the Desktop Application entry, which is also named Pool1.
VMware View Integration pae-Disabled: 0 # # Further Virtual Desktop VM entries as required # # # VM Pool entry Pool1 # DN: CN=Pool1,OU=Server Groups,DC=vdi,DC=vmware,DC=int changetype: add objectClass: top objectClass: pae-ServerPool cn: Pool1 pae-VCDN: CN=b180b93b-2dd3-4b58-8a81-b8534a4b7565,OU=VirtualCenter,OU=Properties,DC=vdi, DC=vmware,DC=int pae-MemberDN: CN=vm1,OU=Servers,DC=vdi,DC=vmware,DC=int pae-MemberDN: CN=vm2,OU=Servers,DC=vdi,DC=vmware,DC=int pae-VmPowerPolicy: remainon pae-VmProvEnabled: 1
Chapter 4 Customizing LDAP Data Table 4-1 lists the attributes that are important when you modify a desktop pool definition. Table 4-1. Important Attributes for Defining a Desktop Pool Entry Attribute Description Virtual Desktop VM cn Specifies the common name of an entry. If you require names to be generated automatically, specify globally unique identifier (GUID) strings. You can use any reliable GUID generator, such as the mechanism provided by .NET (for example, by calling System.Guid.NewGuid().
VMware View Integration Import LDAP Configuration Data Using the LDIFDE Command You can import configuration data from an LDIF file into a standard or replica View Connection Server by running the Microsoft LDIFDE command. In VMware View 4.5 and later releases, you should use the vdmimport command to import configuration data. The vdmimport command does not display the large number of error messages that are produced by running the LDIFDE command. See “Import LDAP Configuration Data” on page 53.
5 Integrating with SCOM 5 You can use Microsoft System Center Operations Manager (SCOM) to monitor the state of VMware View components, including View Connection Server instances and security servers and View services running on these hosts.
VMware View Integration VMware.View.Library.mp contains class and relationship definitions for the managed objects in View. See “Class and Relationship Definitions” on page 61. VMware.View.Image.Library.mp contains the graphics that represent the classes that are defined in VMware.View.Library.mp. NOTE View MPs might be identified in Microsoft SCOM as VMware View 4.5. These MPs are the latest versions and are supported in View releases subsequent to View 4.5, such as View 5.1.
Chapter 5 Integrating with SCOM You can verify the objects that the discovery agent has created for a server by viewing them in the Operations Manager console. See “Display Discovered Objects” on page 57. The agent discovers the following managed objects for a Connection Server. VMware.View.Cluster VMware.View.Cluster.Node.V0405 VMware.View.ConnectionServerRole.V0405 VMware.View.Component.ConnectionServer.V0405 VMware.View.Component.Framework.V0405 VMware.View.Component.Web.
VMware View Integration Display Managed Objects You can display the View objects that SCOM manages, and the relationships between these objects. To display managed objects in View and their relationships In the Operations Manager console, go to Monitoring\VMware View, and select the required view. Views and Monitors The VMware.View.Monitoring MP contains the views and monitors that you can use with View in the Operations Manager console.
Chapter 5 Integrating with SCOM Table 5-2.
VMware View Integration Enable a Proxy Agent on a Server You must enable the proxy agent on each View Connection Server host or security server that you want to monitor. To enable the proxy agent on a server 1 In the Operations Manager console, go to Administration\Agent Managed, select the server, and click Properties. 2 Under the Security tab, select the option Allow this agent to act as a proxy and discover managed objects on other computers. 3 Click OK.
Chapter 5 Integrating with SCOM 3 Right click on the Domain Connectivity Health entry for the Connection Server in the Health Explorer and select Monitor Properties. 4 Under the Overrides tab, click Override and select the option for all objects of the same class. 5 In the Override Properties window, select the Override check box for the DomainExcludeList parameter, enter the name of the excluded domain in the Override Setting field, and select the Enforced check box.
VMware View Integration Table 5-6. View Library Base Classes (Continued) Class Name Description VMware.View.Component.Framework Represents the Framework component that has been installed on a member of a View Connection Server group. This class inherits its properties from VMware.View.Component. VMware.View.Component.MessageBus Represents the Message Bus component that has been installed on a member of a View Connection Server group. This class inherits its properties from VMware.View.Component.
Chapter 5 Integrating with SCOM Table 5-7. View Library version 4.5 Concrete Classes (Continued) Class Name Description VMware.View.Component.MessageBus.V0405 Represents version 4.5 or a later release of the Message Bus component that has been installed on a member of a View Connection Server group. This class inherits its properties from VMware.View.Component.MessageBus. VMware.View.Component.SecurityGateway.V0405 Represents version 4.
VMware View Integration 64 VMware, Inc.
6 Examining PCoIP Session Statistics 6 You can use Windows Management Instrumentation (WMI) to examine performance statistics for a PCoIP session by using any of the supported programming interfaces, including C#, C++, PowerShell, VBScript, VB .NET, and Windows Management Instrumentation Command-line (WMIC). You can also use the Microsoft WMI Code Creator tool to generate VBScript, C#, and VB .NET code that accesses the PCoIP performance counters.
VMware View Integration General Session Statistics The WMI class name for PCoIP general session statistics is Win32_PerfRawData_TeradiciPerf_PCoIPSessionGeneralStatistics. Table 6-1 shows the general statistics for a PCoIP session. Table 6-1. General Statistics WMI Property Name Description BytesReceived Total number of bytes of PCoIP data that have been received since the PCoIP session started. BytesSent Total number of bytes of PCoIP data that have been transmitted since the PCoIP session started.
Chapter 6 Examining PCoIP Session Statistics Table 6-2. Audio Statistics (Continued) WMI Property Name Description AudioTXBWkbitPersec Bandwidth for outgoing audio packets averaged over the sampling period, in seconds. AudioTXBWLimitkbitPersec Transmission bandwidth limit in kilobits per second for outgoing audio packets. The limit is defined by a GPO setting.
VMware View Integration Network Statistics The WMI class name for PCoIP network statistics is Win32_PerfRawData_TeradiciPerf_PCoIPSessionNetworkStatistics. Table 6-4 shows the network statistics for a PCoIP session. Table 6-4. Network Statistics WMI Property Name Description RoundTripLatencyms Round trip latency in milliseconds between the PCoIP server and the PCoIP client. RXBWkbitPersec Overall bandwidth for incoming PCoIP packets averaged over the sampling period, in seconds.
Chapter 6 Examining PCoIP Session Statistics Use this formula to prevent the packet loss percent from becoming greater than 100%. This calculation is required because PacketsLost and PacketsSent are asynchronous.. Do not use TXPacketLostPercent or TXPacketLostPercent_Base for the preceding calculation. USB Statistics The WMI class name for PCoIP USB statistics is Win32_PerfRawData_TeradiciPerf_PCoIPSessionUSBStatistics. Table 6-5 shows the USB statistics for a PCoIP session. Table 6-5.
VMware View Integration 70 VMware, Inc.
Index A Acknowledged column 10 Active Alerts view 58 Add-AutomaticLinkedClonePool cmdlet 31 Add-AutomaticPool cmdlet 31 Add-ManualPool cmdlet 32 Add-ManualUnmanagedPool cmdlet 32 Add-PoolEntitlement cmdlet 32 Add-TerminalServerPool cmdlet 32 Add-ViewVC cmdlet 32 ADMIN 21 ADMIN_ADD_DESKTOP_ENTITLEMENT 17 ADMIN_ADD_LICENSE 17 ADMIN_ADD_LICENSE_FAILED 17 ADMIN_ADD_PM 17 ADMIN_ADD_PM_FAILED 17 ADMIN_ADD_THINAPP_ENTITLEMENT 17 ADMIN_ADD_THINAPP_ENTITLEMENT_ FAILED 17 ADMIN_ADD_THINAPP_POOL_ ENTITLEMENT 17 ADMIN
VMware View Integration ADMIN_LOCALMODE_UNLOCK_MACHINE_ FAILED 20 ADMIN_PERFMON_CONFIGURATION_UPDATE_ FAILED 20 ADMIN_PERFMON_CONFIGURATION_ UPDATED 20 ADMIN_PERMISSION_ADD_FAILED 20 ADMIN_PERMISSION_ADDED 20 ADMIN_PERMISSION_REMOVE_FAILED 20 ADMIN_PERMISSION_REMOVED 20 ADMIN_POOL_POLICY_UPDATE_FAILED 20 ADMIN_POOL_POLICY_UPDATED 20 ADMIN_PUBLISH_PACKAGE 20 ADMIN_REMOVE_DESKTOP_ENTITLEMENT 20 ADMIN_REMOVE_DESKTOP_FAILED 20 ADMIN_REMOVE_DESKTOP_SUCCEEDED 20 ADMIN_REMOVE_THINAPP_ENTITLEMENT 20 ADMIN_REMOVE_T
Index ADMIN_VC_EDITED 24 ADMIN_VC_LICINV_ALARM_DISABLED 24 ADMIN_VC_REMOVE_FAILED 24 ADMIN_VC_REMOVED 24 AdminFolderName attribute 25 AdminPermissionEntity attribute 25 AdminPrivilegeName attribute 25 AdminRoleName attribute 25 AdminRoleNewName attribute 25 AGENT_CONNECTED 17 AGENT_DISCONNECTED 17 AGENT_ENDED 17 AGENT_PENDING 17 AGENT_PENDING_EXPIRED 17 AGENT_RECONFIGURED 17 AGENT_RECONNECTED 17 AGENT_RESUME 17 AGENT_SHUTDOWN 17 AGENT_STARTUP 17 AGENT_SUSPEND 17 alerts closing 61 displaying information abo
VMware View Integration BROKER_PROVISIONING_ERROR_VM_ CLONING 14 BROKER_PROVISIONING_ERROR_VM_ CUSTOMIZATION_ERROR 14 BROKER_PROVISIONING_ERROR_VM_ CUSTOMIZATION_NETWORKING 14 BROKER_PROVISIONING_ERROR_VM_ CUSTOMIZATION_TIMEOUT 14 BROKER_PROVISIONING_SVI_ERROR_ COMPOSER_AGENT_INIT_FAILED 14 BROKER_PROVISIONING_SVI_ERROR_ RECONFIG_FAILED 14 BROKER_PROVISIONING_SVI_ERROR_REFIT_ FAILED 14 BROKER_PROVISIONING_SVI_ERROR_ REMOVING_VM 14 BROKER_PROVISIONING_VERIFICATION_ FAILED_USER_ASSIGNED 15 BROKER_PROVISIONIN
Index deletion policy, setting default 35 desktop entitlements adding 42 displaying information about 42 removing 42 desktop pools 39 adding provisioned by terminal servers 41 creating 40 displaying information about virtual machines in 42 removing 40 resetting virtual machines in 43 resizing 45 setting type of 37 updating 40 updating provisioned by terminal servers 41 DesktopDisplayName attribute 25 DesktopId attribute 25 column 10 desktops creating manually provisioned 41 creating manually unmanaged 41 u
VMware View Integration Get-ProfileDisk cmdlet 32 Get-RemoteSession cmdlet 32 Get-TerminalServer cmdlet 32 Get-User cmdlet 32 Get-ViewVC cmdlet 32 global configuration, displaying for VMware View 43 Group Node State view 58 Group State view 58 GroupId column 10 Groups view 58 groups, displaying information about 41 H help, displaying for View PowerCLI cmdlets 30 I ImagingActiveMinimumQuality statistic 67, 69 ImagingBytesReceived statistic 67 ImagingBytesSent statistic 67 ImagingDecoderCapabilitykbitPerse
Index -poolType parameter 37 power policy, setting default 37 -powerPolicy parameter 37 PowerShell cmdlets 29 PowerShell console, starting 30 prelogin message, setting global value for VMware View 44 primary key 10 ProtocolId attribute 26 proxy agent, enabling for SCOM 60 R ramp factor, changing for vCenter servers 39 rebalancing linked-clone desktop pools 40 recomposing linked-clone desktop pools 41 refresh policy, setting default 38 refreshing linked-clone desktop pools 41 -refreshPolicyType parameter 3
VMware View Integration displaying information about 41 updating desktop pools provisioned by 41 The input object cannot be bound 30 ThinAppDisplayName attribute 26 ThinAppId attribute 26 column 10 ThinAppRepositoryName attribute 26 ThinAppRepositoryPath attribute 26 Time attribute 26 column 10 timeout, setting global value for VMware View 44 TimeValue column 11 TRANSFER_SERVER_PACKAGE_ DISPLACEMENT 25 TRANSFER_SERVER_PACKAGE_MISSING 25 TRANSFER_SERVER_PACKAGE_ RECOVERY 25 TRANSFER_SERVER_PUBLISH_PACKAGE_
Index views available with SCOM 58 displaying those available for reporting events 43 virtual machines displaying active data disks for 43 displaying information about 42 removing ownership of 43 resetting 43 updating ownership of 43 VMware View adding licenses 44 displaying configuration changes 43 displaying global configuration of 43 displaying licenses 44 displaying user events 43 event database 9 integrating with SCOM 55 overview 7 setting global value of logout delay period 44 setting global value of
VMware View Integration 80 VMware, Inc.