0f5e42dce6
Simple double-click launchers for opening terminal environments: Files: - TerminalLauncher.vbs: VBScript launcher (no dependencies) - RECOMMENDED - TerminalLauncher.py: Python GUI with three buttons - TerminalLauncher.bat: Batch wrapper for Python version - TERMINAL_LAUNCHER_SETUP.md: Complete setup and usage guide Features: ✓ Double-click to open ✓ VBScript version requires no external dependencies ✓ Python version provides prettier GUI with buttons ✓ Three terminal options: WSL (default), PowerShell, Ubuntu (WSL) ✓ Works on Windows 7 and later Usage: 1. Copy .vbs or .bat/.py to Windows Desktop 2. Double-click 3. Select terminal 4. Opens immediately Ready for production use.
3.3 KiB
3.3 KiB
Terminal Launcher - Setup Guide
Quick Start (2 Options)
Option 1: VBScript (No Python Required) ⭐ RECOMMENDED
Fastest, simplest, most reliable
- Copy
TerminalLauncher.vbsto your Windows Desktop - Double-click it
- Enter
1,2, or3to select terminal - Done!
No dependencies. Works on any Windows system.
Option 2: Python GUI (Prettier UI)
Requires Python 3 installed
-
Copy both files to your Desktop:
TerminalLauncher.pyTerminalLauncher.bat
-
Double-click
TerminalLauncher.bat -
Click button to launch terminal
Requires: Python 3.x with tkinter (usually installed by default)
Files Included
TerminalLauncher.vbs
- VBScript launcher (Windows native)
- Zero dependencies
- Opens input dialog for selection
- Recommended for simplicity
TerminalLauncher.py
- Python GUI with three buttons
- Prettier interface
- Requires Python 3
- Auto-closes after launching
TerminalLauncher.bat
- Batch wrapper for Python version
- Handles path and error messages
- Double-click to run
Usage
VBScript Version
Double-click TerminalLauncher.vbs
→ Input dialog appears
→ Enter: 1 = WSL, 2 = PowerShell, 3 = Ubuntu
→ Terminal opens
Python Version
Double-click TerminalLauncher.bat
→ GUI window appears with 3 buttons
→ Click button to open terminal
What Each Option Does
| Button | Action |
|---|---|
| WSL (Default) | Opens WSL with default distro |
| PowerShell | Opens Windows PowerShell |
| Ubuntu (WSL) | Opens Ubuntu via WSL |
Installation
On Desktop (Simplest)
- Download
TerminalLauncher.vbs(or.bat+.py) - Right-click Desktop → New → Shortcut
- Paste file path
- Name it "Terminal Launcher"
- Done!
Create Windows Shortcut (Advanced)
If you want a custom icon:
Target: C:\full\path\to\TerminalLauncher.vbs
Start in: C:\full\path\
Icon: cmd.exe
Or for Python version:
Target: python.exe C:\full\path\to\TerminalLauncher.py
Start in: C:\full\path\
Troubleshooting
"Command not found: wsl"
- WSL not installed
- Solution: Run
wsl --installin PowerShell as admin
"Command not found: powershell"
- Very unlikely (built into Windows)
- Solution: Ensure Windows 7 or later
Python version doesn't start
- Python not in PATH
- Solution: Run
python --versionin cmd to verify - Or: Use VBScript version instead (no Python needed)
Ubuntu not found
- WSL Ubuntu distro not installed
- Solution: Run
wsl --list --verboseto see available distros - Or: Use WSL instead, or install Ubuntu distro
System Requirements
VBScript Version
- ✅ Windows XP or later
- ✅ WSL 1/2 (for WSL option)
- ✅ PowerShell (included in Windows)
Python Version
- ✅ Windows 7 or later
- ✅ Python 3.5+ (with tkinter)
- ✅ WSL 1/2 (for WSL option)
Advanced: Create Custom Launcher
To add more environments, edit the VBScript:
Case "4"
objShell.Run "cmd", 1, False ' Add Command Prompt
Or edit the Python file to add more buttons.
Support
If having issues:
- Try the VBScript version first (no dependencies)
- Verify WSL is installed:
wsl --version - Verify PowerShell works:
powershell - Check Windows is up to date
Ready to use. Just download, copy to Desktop, and double-click!