Add experimental disclaimer for PowerShell installer

Users are now warned that the PowerShell installer is experimental
and WSL is recommended for reliable installation.

Changes:
- README: Added warning banner, changed WSL to "Recommended"
- PowerShell script: Added interactive warning at startup
- WordPress article: Added yellow warning box before Windows section

PowerShell installer now shows:
- Yellow warning about experimental status
- WSL command for reliable installation
- Prompt to press Ctrl+C to exit or Enter to continue

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
uroma
2026-01-22 19:18:07 +00:00
Unverified
parent f41e443574
commit 578ec2ea24
2 changed files with 14 additions and 2 deletions

View File

@@ -22,7 +22,9 @@ cd SuperCharged-Claude-Code-Upgrade
### Windows Installation Options
#### Option 1: PowerShell Installer **Native - Recommended**
> **⚠️ Windows Users:** The PowerShell installer is **experimental** and may have bugs. We strongly recommend using **WSL** (Option 2) for a reliable installation experience.
#### Option 1: PowerShell Installer ⚠️ **Experimental - Use WSL Instead**
```powershell
# Download and run the native PowerShell installer
irm https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/branch/main/install-windows.ps1 | pwsh -ExecutionPolicy Bypass -
@@ -34,7 +36,7 @@ pwsh -ExecutionPolicy Bypass -File install-windows.ps1
# OR right-click install-windows.ps1 and select "Run with PowerShell"
```
#### Option 2: WSL (Windows Subsystem for Linux)
#### Option 2: WSL (Windows Subsystem for Linux) ⭐ **Recommended**
```bash
# Clone and run in WSL
wsl bash -c "git clone https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade.git && cd SuperCharged-Claude-Code-Upgrade && ./supercharge.sh"