citrix-environment-diagnostics

Citrix Environment Diagnostics

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "citrix-environment-diagnostics" with this command: npx skills add dray86/claude-agents/dray86-claude-agents-citrix-environment-diagnostics

Citrix Environment Diagnostics

Overview

This skill provides guidance for comprehensive Citrix environment health assessments, including VDA status, Delivery Controller health, StoreFront availability, and overall infrastructure diagnostics.

Instructions

When performing Citrix environment diagnostics:

  1. Verify Connectivity and Access

Load Citrix PowerShell snap-ins

Add-PSSnapin Citrix.* -ErrorAction SilentlyContinue

Test connection to Delivery Controller

Get-BrokerSite

  • Confirm PowerShell access to Delivery Controllers

  • Validate administrative permissions

  • Check network connectivity to all components

  1. Assess VDA Registration Status

Get overall VDA registration summary

Get-BrokerMachine -MaxRecordCount 10000 | Group-Object RegistrationState | Select Name, Count

List unregistered VDAs with details

Get-BrokerMachine -RegistrationState Unregistered | Select DNSName, CatalogName, LastConnectionFailure, LastDeregistrationReason

Check VDA load distribution

Get-BrokerMachine -RegistrationState Registered | Select DNSName, LoadIndex, SessionCount | Sort LoadIndex -Descending

Key metrics to verify:

  • Registration rate should be >95%

  • Load index should be <8000 for healthy VDAs

  • Check for patterns in failed registrations

  1. Verify Delivery Controller Health

Check controller status

Get-BrokerController | Select MachineName, State, DesktopsRegistered

Verify site database connectivity

Get-BrokerSite | Select Name, ConfigurationLoggingDatabaseName

Check broker service status

Get-BrokerServiceStatus

Validate:

  • All controllers showing "Active" state

  • Database connections established

  • Services running on all controllers

  1. Assess StoreFront Status

On StoreFront server - check store status

Get-STFDeployment Get-STFStoreService | Select FriendlyName, VirtualPath

Verify authentication methods

Get-STFAuthenticationService | Select FriendlyName, VirtualPath

Check:

  • Store accessibility from client networks

  • Authentication provider configuration

  • SSL certificate validity

  1. Review Session and Resource Utilization

Active session count

Get-BrokerSession -MaxRecordCount 10000 | Measure-Object

Sessions by delivery group

Get-BrokerSession -MaxRecordCount 10000 | Group-Object DesktopGroupName | Select Name, Count | Sort Count -Descending

Machine utilization by catalog

Get-BrokerMachine -MaxRecordCount 10000 | Group-Object CatalogName | ForEach-Object { [PSCustomObject]@{ Catalog = $.Name Total = $.Count Registered = ($.Group | Where-Object {$.RegistrationState -eq 'Registered'}).Count InUse = ($.Group | Where-Object {$.SessionCount -gt 0}).Count } }

  1. Check Licensing Status

Get license server information

Get-BrokerSite | Select LicenseServerName, LicenseServerPort

Check license usage (requires License Server access)

Get-LicInventory -LicenseServerAddress <LicenseServer> -LicenseServerPort 27000

  1. Document and Report Findings

After completing diagnostics:

  • Summary: Overall environment health status

  • Issues Identified: List any problems found

  • Metrics: Key performance indicators

  • Recommendations: Remediation steps for any issues

  • Next Steps: Follow-up actions required

Health Check Thresholds

Component Healthy Warning Critical

VDA Registration

98% 95-98% <95%

Load Index <5000 5000-8000

8000

Controller State All Active 1 Inactive Multiple Inactive

DB Response <100ms 100-500ms

500ms

Common Issues to Check

  • VDA Registration Failures: Time sync, firewall, DNS resolution

  • High Load Index: Resource contention, runaway processes

  • Controller Issues: Service failures, database connectivity

  • StoreFront Problems: Certificate expiry, IIS configuration

Reference Materials

For detailed information, refer to:

  • citrix-knowledge/domain-knowledge/comprehensive-citrix-knowledge.md

  • citrix-knowledge/runbooks/ for step-by-step procedures

  • citrix-knowledge/troubleshooting/ for common issue resolutions

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

citrix-infrastructure-design

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

citrix-pvs

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

citrix-troubleshooting

No summary provided by upstream source.

Repository SourceNeeds Review