Powershell Windows
원문: powershell-windows
PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling.
무엇을 하나요
PowerShell Windows Patterns Critical patterns and pitfalls for Windows PowerShell. 1. Operator Syntax Rules CRITICAL: Parentheses Required | ❌ Wrong | ✅ Correct | | | | | if (Test Path "a" or Test Path "b") | if ((Test Path "a") or (Test Path "b")) | | if (Get Item $x and $y eq 5) | if ((Get Item $x) and ($y eq 5)) | Rule: Each cmdlet call MUST be in parentheses when using logical operators. 2. Unicode/Emoji Restriction CRITICAL: No Unicode in Scripts | Purpose | ❌ Don't Use | ✅ Use | | | | | | Success | ✅ ✓ | [OK] [+] | | Error | ❌ ✗ 🔴 | [!] [X] | | Warning | ⚠️ 🟡 | [ ] [WARN] | | Info | ℹ️ 🔵 | [i] [INFO] | | Progress | ⏳ | [...] | Rule: Use ASCII characters only in PowerShell scripts. 3…
실행 시 본인 API 키(BYOK)로 동작하며, 모델 비용은 사용자 계정에서 직접 결제됩니다.