• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
ControlUp Community

ControlUp Community

Connect, Learn, and Grow

  • Blog
  • Podcast
  • Meetups
  • Archives
  • Categories
    • ControlUp One Platform
    • ControlUp for Apps
    • ControlUp for Compliance
    • ControlUp for Desktops
    • ControlUp Scripts & Triggers
    • ControlUp Synthetic Monitoring
    • ControlUp for VDI
  • Topics
  • Events
    • Logos & Wallpaper
    • ControlUp.com
  • Join

Do you need ControlUp Real Time Agent installed to view the Citrix License Usage report?

Posted on December 1, 2022

This discussion revolves around the Citrix License Usage report, and whether the Real Time agent needs to be installed on the Citrix license server. It was confirmed that it is necessary for on-prem customers, although hard to do for cloud customers. Additionally, triggering the license with the PowerShell module is possible since version 8.6.5, and requires a two step trigger and running the script in the message.


Read the entire ‘Triggering the Citrix License Usage Report with PowerShell’ thread below:

Hello all – In order to see this report https://support.controlup.com/docs/citrix-license-usage-report do we need the Real Time agent installed on the Citrix license server?


Yep. Exactly.

Assuming you are an Citrix On-Prem customer.

For Citrixix Cloud it’s pretty hard to install the agent on the license Server :rolling_on_the_floor_laughing:


@member You can also trigger on Ctx license with the Powershell module (thee since 8.6.5 I believe). It is a 2 step trigger. You create a scehduled trigger that run once a day to check the ctx licensing and a second trigger to trigger on Event ID 4003 (see script)

“`#This script uses the ControlUp PoSH module to fetch info about the Citrix Licenses and raises event 4003 when one exceeeds the configured threshold

$pathtomodule = (Get-ChildItem "C:\Program Files\Smart-X\ControlUpMonitor*ControlUp.PowerShell.User.dll" -Recurse | Sort-Object LastWriteTime -Descending)[0]

Import-Module $pathtomodule

$threshold = 90

Fetches info from the Citrix Licenses table

Write-Output "Licenses used"

$licenses = (Invoke-CUQuery -Scheme main -Table "Citrix Licenses" -Fields *).Data

foreach ($license in $licenses)

{

if ($license.ctxLicensesUsedPrecent -gt $threshold)

{

Write-EventLog -Source "ControlUp Agent" -LogName Application -EventId 4003 -Message "Citrix license have exceeded the configured warning threshold ($threshold). Licenses in use: $license" -EntryType Error

}

}

Write-Output $licenses“`

Continue reading and comment on the thread ‘Do you need ControlUp Real Time Agent installed to view the Citrix License Usage report?’.  Not a member? Join Here!


Categories: All Archives, ControlUp for VDI, ControlUp Scripts & Triggers
Topics: Citrix, Cloud Computing, ControlUp Agent, ControlUp Licensing, On-Premise, PowerShell, Reporting, Scripts, Triggers

Ask Us Anything, Connect, Learn, and Grow with the ControlUp Community!

Login to the ControlUp Community to ask us anything, stay up-to-date on what’s new and coming soon and meet other like-minded techies like you.

Not already a member? Join Today!

Primary Sidebar

ControlUp Academy

Enroll in ControlUp Academy for expert-led technical training, equipping you with skills to effectively deploy, manage, and grow your ControlUp investment.

Learn here >

Rotating Images

Hidden Gem from our Community on Slack!

ControlUp Betas - What's Coming Next?
NEW ControlUp Features - Stay Up-to-Date!
ControlUp Scripts - Scripting, Zero to Hero
Latest KB Articles - Be the First to Learn
Did you Know - with Sivan Kroitoru
Practical Perspectives Technical Use Case Training

Video Tutorials Library

Visit our technical how-to videos, offering step-by-step tutorials on advanced features, troubleshooting, and best practices.

Watch here >

ControlUp Blog

Check out the ControlUp blog for expert advice and in-depth analysis.

Read here >

ControlUp Script Library

Visit the ControlUp technical script library, which offers a multitude of pre-built scripts and custom actions for your monitoring and troubleshooting requirements.

See here >

ControlUp Support

Visit the ControlUp support home and to delve deeper into ControlUp solutions.

Browse here >

Download ControlUp RealTime DX

Start with ControlUp for real-time end-user environment insights, swift troubleshooting, and unprecedented performance optimization. Download now.

Download here >

Footer

      

ControlUp Community
Of Techie, By Techie, For Techie!

Terms of Use | Privacy Policy | Security
Dive Deeper, Learn more at ControlUp.com

  • facebook
  • twitter
  • youtube
  • linkedin

© 2023–2025 ControlUp Technologies LTD, All Rights Reserved.

We use cookies to ensure that we give you the best experience on our website. by continuing to use this site you agree to our Cookie policy..