I recently wrote a blog post (which you can read here) about how XenApp and XenDesktop users can determine the HDX Display Mode by following advice in CTX200370 including methods using HDX Monitor and WMIC command line.
As it is possible to access this information from the command line via WMIC you can also to do this within a PowerShell Script calling WMIC.
I thought it might be useful to demonstrate the possibilities of using PowerShell via an example script.
Below is a script that can used or modified to average HDX or ICA metrics. The same metrics that are available and presented by HDX monitor. This might offer users the flexibility to use the raw metrics for in-depth analysis.
This script was written by one of our test developers Praveen Prakash for some internal testing of HDX. Which has got me thinking perhaps we should augment the HDX metrics to cover more metrics such as averaged data. Feedback welcome below in the comments box!
$DebugPreference="Continue" $VerbosePreference="Continue" Function support_hdx_CalculateAverage{ param ( [Parameter(Mandatory=$false,Position =0)] [string] $class='Citrix_VirtualChannel_Thinwire_Enum', [Parameter(Mandatory=$false,Position =1)] [string] $parameter='Component_fps', [Parameter(Mandatory=$false,Position =2)] [int] $interval=2, [Parameter(Mandatory=$false,Position =3)] [int] $timeOut=30, [Parameter(Mandatory=$false,Position =4)] [string] $path="c:\fps.txt" ) Write-verbose "Invoking support_hdx_CalculateAverage" try{ #finding average of given value $count=[int]($timeOut/$interval); $valueSum=0; for($index=0;$index -lt $count;$index++) { $paramvalue=Get-WmiObject -Namespace root\Citrix\hdx -Class $class; $valueSum=$valueSum+[int]($paramvalue.$parameter); $currentfps=[int]($paramvalue.$parameter); Write-Debug "Current FPS:$currentfps" Add-Content $path "Current FPS:$currentfps" sleep $interval; } $avg=$valueSum/$count } Catch{ Write-Verbose "Unable to take average. Leaving funtion" return 0 } Write-Verbose "Leaving support_hdx3dpro_CalculateAverage" Write-Debug "Average $avg" return $avg } #Calling Function support_hdx_CalculateAverage # Copyright (c) Citrix Systems, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # 1) Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # 2) Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED # OF THE POSSIBILITY OF SUCH DAMAGE. #
Disclaimer
The sample code is provided to you AS IS with no representations, warranties or conditions of any kind. You may use, modify and distribute it at your own risk. CITRIX DISCLAIMS ALL WARRANTIES WHATSOEVER, EXPRESS, IMPLIED, WRITTEN, ORAL OR STATUTORY, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NONINFRINGEMENT. Without limiting the generality of the foregoing, you acknowledge and agree that (a) the sample code may exhibit errors, design flaws or other problems, possibly resulting in loss of data or damage to property; (b) it may not be possible to make the sample code fully functional; and (c) Citrix may, without notice or liability to you, cease to make available the current version and/or any future versions of the sample code. In no event should the code be used to support of ultra-hazardous activities, including but not limited to life support or blasting activities. NEITHER CITRIX NOR ITS AFFILIATES OR AGENTS WILL BE LIABLE, UNDER BREACH OF CONTRACT OR ANY OTHER THEORY OF LIABILITY, FOR ANY DAMAGES WHATSOEVER ARISING FROM USE OF THE SAMPLE CODE, INCLUDING WITHOUT LIMITATION DIRECT, SPECIAL, INCIDENTAL, PUNITIVE, CONSEQUENTIAL OR OTHER DAMAGES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Although the copyright in the code belongs to Citrix, any distribution of the code should include only your own standard copyright attribution, and not that of Citrix. You agree to indemnify and defend Citrix against any and all claims arising from your use, modification or distribution of the code.