--- id: daymade/claude-code-skills/windows-remote-desktop-connection-doctor version: "f12b231d" license: MIT install: manual updated: 2026-07-27 --- # windows-remote-desktop-connection-doctor — This skill helps you troubleshoot connection problems with Windows App, Azure Virtual Desktop, and direct PC connections on macOS. It guides you through identifying whether your connection is using optimal UDP Shortpath or falling back to slower WebSocket transport, checks for VPN or proxy interference, and parses Windows App logs to uncover auth failures or protocol negotiation issues. Publisher: daymade · Stars: 1299 · Updated: 2026-07-27 Install (manual): `git clone https://github.com/daymade/claude-code-skills` ## SKILL.md # Windows Remote Desktop Connection Doctor Diagnose and fix Windows App (Microsoft Remote Desktop / AVD / WVD / W365 / direct PC) connection issues on macOS, with focus on transport protocol optimization and root-cause falsification. > **Methodology base:** the general evidence-driven diagnosis discipline lives in the **debugging-network-issues** skill. This skill is the Windows-App / AVD transport *domain* layer — it leans toward connection-quality optimization more than root-cause falsification, so the methodology overlap is lighter. ## Background **Azure Virtual Desktop** transport priority: **UDP Shortpath > TCP > WebSocket**. UDP Shortpath provides the best experience (lowest latency, supports UDP Multicast). When it fails, the client falls back to WebSocket over TCP 443 through the gateway, adding significant latency overhead. **Direct PC connections** use plain RDP over TCP 3389 (usually TLS-wrapped). They have no Connection Info panel, no gateway reachability tests, and no transport optimization step. For direct PC, the dominant failure modes are: 1. The remote PC is off or unreachable (network/firewall). 2. The Windows App client has a stale or expired Microsoft work/school account that poisons the auth orchestration, leaving the connection stuck at "Configuring remote PC...". 3. The remote PC rebooted (often Windows Update), and the client cannot recover cleanly. This skill handles both scenarios. ## Diagnostic Workflow ### Step 1: Determine the Connection Type and Symptom Before collecting evidence, identify which scenario you are diagnosing: | Scenario | Key Characteristic | Primary Evidence Source | |---|---|---| | **AVD/WVD/W365** | User connects to a cloud desktop through a workspace/gateway | Connection Info panel, gateway health checks, UDP Shortpath logs | | **Direct PC** | User connects to a named PC by hostname or IP (e.g., a home workstation) | RDP protocol probe, Windows App log auth chain, Windows-side reboot events | For **AVD/WVD/W365**, ask the user to provide the Connection Info from Windows App (click the signal icon in the toolbar). Key fields to extract: | Field | What It Tells | |-------|--------------| | Transport Protocol | Current transport: `UDP`, `UDP Multicast`, `WebSocket`, or `TCP` | | Round-Trip Time (RTT) | End-to-end latency in ms | | Available Bandwidth | Current bandwidth in Mbps | | Gateway | The AVD gateway hostname and port | | Service Region | Azure region code (e.g., SEAS = South East Asia) | If Transport Protocol is `UDP` or `UDP Multicast`, the connection is optimal — no further diagnosis needed. If Transport Protocol is `WebSocket` or `TCP`, proceed to Step 2. For **Direct PC**, the Connection Info panel does not exist. Instead, first run the **RDP protocol probe** in Step 2E to prove the server is reachable, then analyze the Windows App log for auth poisoning or reconnect failures. If the progress dialog is stuck at "Configuring remote PC...", strongly suspect client-side identity issues (see Category E). ### Step 2: Collect Network Evidence Gather evidence in parallel — do NOT make assumptions. Run the following checks simultaneously: #### 2A: Network Interfaces and Routing ```bash ifconfig | grep -E "^[a-z]|inet |utun" netstat -rn | head -40 scutil --proxy ``` Look for: - **utun interfaces**: Identify VPN/proxy TUN tunnels (ShadowRocket, Clash, Tailscale) - **Default route priority**: Which interface handles default traffic - **Split routing**: `0/1 + 128.0/1 → utun` pattern means a VPN captures all traffic - **System proxy**: HTTP/HTTPS proxy enabled on localhost ports #### 2B: RDP Client Process and Connections ```bash # Find the Windows App process (NOT "msrdc" — the new client uses "Windows" as process name) ps aux | grep -i -E 'msrdc|Windows' | grep -v grep # Check its network connections lsof -i -n -P 2>/dev/null | grep -i "Windows" | head -20 # Check for UDP connections lsof -i UDP -n -P 2>/dev/null | head -30 ``` Key evidence to look for: - **Source IP `198.18.0.x`**: Traffic is being routed through ShadowRocket/proxy TUN tunnel - **No UDP connections from Windows process**: Shortpath not established - **Only TCP 443**: Fallback to gateway WebSocket transport #### 2C: VPN/Proxy State ```bash # Environment proxy variables env | grep -i proxy # System proxy via scutil scutil --proxy # ShadowRocket config API (if accessible on local network) NO_PROXY="" curl -s --connect-timeout 5 "http://:8080/api/read" ``` #### 2D: Tailscale State (if running) ```bash tailscale status tailscale netcheck ``` The `netcheck` output reveals NAT type (`MappingVariesByDestIP`), UDP support, and public IP — valuable even when Tailscale is not the problem. #### 2E: Independent RDP Server Health Check (Direct PC) This step is critical for **direct PC connections** and useful for AVD/WVD/W365 as a falsification test: it proves the server-side RDP stack is alive without relying on the Windows App client or any credentials. Use the bundled probe script: ```bash python3 scripts/probe_rdp_server.py [port] ``` Example: ```bash python3 scripts/probe_rdp_server.py my-pc.local 3389 ``` A successful probe reports `RDP server : is reachable and healthy (RDP + TLS).` and means the problem is **client-side** (auth, app state, proxy, or identity). A failed probe means the problem is **server-side or network** (PC off, firewall, port unreachable, TLS interception). See `references/direct_pc_and_auth_diagnostics.md` for detailed interpretation of probe results. ### Step 3: Analyze Windows App Logs This is the most critical step. Windows App logs contain transport negotiation details that no network-level test can reveal. **Log location on macOS:** ``` ~/Library/Containers/com.microsoft.rdc.macos/Data/Library/Logs/Windows App/ ``` Files are named: `com.microsoft.rdc.macos_v__