What problem does it solve? Windows command-line automation on Traditional Chinese (zh-TW) systems suffers from encoding pitfalls: CMD batch files default to CP 950 (Big5) while modern tools output UTF-8, causing garbled Chinese text, silently dropped input with chcp 65001 + set /p, and flashing terminal windows. ## Core Features & Use Cases - Encoding Diagnostics: Identifies which CMD/PowerShell approaches fail on zh-TW Windows and provides working alternatives, including file encoding detection and correct save methods (UTF-8 without BOM vs ANSI/CP 950). - PowerShell Menu Launcher Pattern: Provides a structured template for interactive tool launchers using functions, Read-Host, and switch loops that handle Chinese text correctly. - Terminal & Shortcut Configuration: Includes registry commands for Windows Terminal defaults, ANSI escape support, CP 65001 font registration, and programmatic .lnk shortcut creation via WScript.Shell COM. - Use Case: When building a launcher script for a Chinese-language Windows tool, use this Skill to avoid the set /p input-drop bug, configure the console code page correctly, and create a desktop shortcut that opens without window flashing. ## Quick Start Help me write a PowerShell menu launcher script for my zh-TW Windows machine that displays Chinese text correctly and creates a desktop shortcut to run it.