Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

citrix-troubleshootingCitrix 故障排除

Agent Skill

citrix-troubleshooting 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

729

周安装

31

GitHub Stars

公开资料未说明

下载量

255
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:citrix-troubleshooting(Citrix 故障排除)
来源仓库:https://github.com/dray86/claude-agents
仓库路径:skills/citrix-troubleshooting
安装命令:
npx skills add dray86/claude-agents --skill "citrix-troubleshooting"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add dray86/claude-agents --skill "citrix-troubleshooting"

简介

用于查找、检索和筛选相关信息。citrix-troubleshooting 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在需要根据关键词或任务场景快速定位候选结果时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或命令执行。
  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。

SKILL.md

Citrix Troubleshooting

Overview

This skill provides structured troubleshooting workflows for diagnosing and resolving Citrix infrastructure issues, including VDA problems, session failures, and performance degradation.

Troubleshooting Methodology

1. Gather Information

Initial questions to answer:

  • What is the exact error message or symptom?
  • When did the issue start?
  • How many users/machines are affected?
  • What changed recently (updates, configs, infrastructure)?
  • Is the issue reproducible?

2. Isolate the Problem

Determine scope:

  • Single user vs. multiple users
  • Single VDA vs. multiple VDAs
  • Specific delivery group vs. entire site
  • Network segment specific

Common Issues and Resolutions

VDA Registration Failures

Symptoms: VDAs showing "Unregistered" in Studio/Director

Diagnostic steps:

# Check registration state and failure reason
Get-BrokerMachine -DNSName <VDAName> |
    Select RegistrationState, LastDeregistrationReason, LastDeregistrationTime

# Common reasons:
# - AgentShuttingDown
# - DesktopRestart
# - CommunicationFailure
# - BrokerError

Common causes and fixes:

  1. Time Synchronization # Check time on VDA w32tm /query /status # Resync w32tm /resync /force
  2. Firewall Issues # Test connectivity to controller Test-NetConnection -ComputerName <DDC> -Port 80

- Ports required: 80 (WCF), 443 (SSL), 1494 (ICA), 2598 (CGP)

  1. DNS Resolution # Verify VDA can resolve controller FQDN Resolve-DnsName <DDC-FQDN>
  2. ListOfDDCs Registry # Check configured controllers Get-ItemProperty "HKLM:\SOFTWARE\Citrix\VirtualDesktopAgent" -Name ListOfDDCs
  3. Service Status # Check VDA services Get-Service -Name "BrokerAgent", "Citrix*" | Select Name, Status # Restart if needed Restart-Service BrokerAgent -Force

Session Launch Failures

Symptoms: Users cannot launch desktops/apps, receive error messages

Diagnostic steps:

# Check recent connection attempts
Get-BrokerConnectionLog -MaxRecordCount 50 |
    Where-Object {$_.UserName -like "*<username>*"} |
    Select BrokeringTime, MachineName, BrokeringResult, BrokeringResultDetails

# Check machine availability
Get-BrokerMachine -DNSName <VDAName> |
    Select PowerState, RegistrationState, InMaintenanceMode, SessionCount

Common causes:

  1. No Available Resources

- Check delivery group capacity - Verify machines are registered and not in maintenance

  1. User Assignment Issues # Check user's assigned machines (for static assignment) Get-BrokerUser -Name "DOMAIN\username" | Select AssociatedMachines
  2. Profile Issues

- Check Profile Management logs - Verify profile path accessibility - Check for corrupt profile

  1. Application Issues # Verify published app exists and is enabled Get-BrokerApplication -Name "*<appname>*" | Select Name, Enabled, AssociatedDesktopGroupNames

Slow Session Performance

Symptoms: Laggy sessions, slow application response

Diagnostic areas:

  1. Network Latency # Check from client to VDA Test-Connection -ComputerName <VDA> -Count 10 | Measure-Object -Property ResponseTime -Average
  2. VDA Resource Utilization # Check load index Get-BrokerMachine -DNSName <VDAName> | Select LoadIndex, LoadIndexes # Check CPU/Memory on VDA Get-Counter '\Processor(_Total)\% Processor Time','\Memory\% Committed Bytes In Use'
  3. HDX Policy Settings

- Review visual quality settings - Check compression policies - Verify bandwidth limits

  1. Graphics Mode

- Check if hardware graphics needed - Review GPU assignment for HDX 3D Pro

StoreFront Issues

Symptoms: Cannot enumerate apps, login failures, store unavailable

Diagnostic steps:

  1. IIS Status # Check IIS service Get-Service W3SVC | Select Status # Check application pools Get-WebAppPoolState
  2. Store Configuration # On StoreFront server Get-STFStoreService | Select VirtualPath, FarmName # Check farm configuration Get-STFStoreFarm -StoreService (Get-STFStoreService)
  3. Certificate Issues

- Verify SSL certificate validity - Check certificate binding in IIS - Ensure certificate chain is complete

  1. Authentication Problems # Check auth methods Get-STFAuthenticationService | Select FriendlyName, ClaimsFactoryNames

Printing Issues

Symptoms: Printers not mapping, slow printing, print jobs failing

Common resolutions:

  1. Universal Print Driver

- Verify UPD is installed on VDA - Check auto-creation policies

  1. Client Printer Mapping # Check policy for printer mapping # Studio > Policies > User Settings > ICA > Printing
  2. Print Spooler # Restart spooler on VDA Restart-Service Spooler

Log Analysis

Key Log Locations

ComponentLog Location
VDA%PROGRAMDATA%\Citrix\VirtualDesktopAgent\Logs
CDF Traces%PROGRAMDATA%\Citrix\CDF
BrokerC:\ProgramData\Citrix\DesktopServer\Log
StoreFrontC:\Program Files\Citrix\Receiver StoreFront\admin\Trace

Enable Verbose Logging

# Enable CDF tracing
# Use CDFControl utility or:
logman create trace CitrixTrace -p Citrix-DesktopService -o C:\Traces\citrix.etl
logman start CitrixTrace
# Reproduce issue
logman stop CitrixTrace

Log Analysis Commands

# Search for errors in event log
Get-WinEvent -LogName Application -MaxEvents 100 |
    Where-Object {$_.ProviderName -like "*Citrix*" -and $_.LevelDisplayName -eq "Error"}

# Parse broker log for errors
Select-String -Path "C:\ProgramData\Citrix\DesktopServer\Log\*.log" -Pattern "ERROR|Exception"

Escalation Criteria

Escalate to Citrix Support when:

  • Multiple controllers showing issues simultaneously
  • Database corruption suspected
  • Site-wide outage
  • Issue persists after all standard troubleshooting
  • Error messages reference internal/unexpected exceptions

Reference Materials

For detailed troubleshooting procedures, see:

  • citrix-knowledge/troubleshooting/ for documented issue resolutions
  • citrix-knowledge/runbooks/ for step-by-step procedures
  • citrix-knowledge/domain-knowledge/comprehensive-citrix-knowledge.md for product knowledge

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

25.9%
按下载量换算66

Antigravity

22.61%
按下载量换算58

Gemini CLI

17.47%
按下载量换算45

Claude Code

11.83%
按下载量换算30

windsurf

7.89%
按下载量换算20

OpenCode

3.5%
按下载量换算9

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills