This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Windows Emoji & UTF-8 Encoding Fix Script | |
# Fixes emoji/encoding issues in PowerShell, VS Code, Git Bash, and Claude Code | |
# Run as: powershell -ExecutionPolicy Bypass -File fix-emoji-encoding.ps1 | |
Write-Host "🚀 Fixing Windows Emoji/UTF-8 Encoding Issues..." -ForegroundColor Green | |
Write-Host "This script will configure PowerShell, VS Code, and Git Bash for proper emoji support.`n" -ForegroundColor Yellow | |
# Function to backup existing files | |
function Backup-ConfigFile { | |
param($FilePath) |