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.
13 lines
277 B
Batchfile
13 lines
277 B
Batchfile
@echo off
|
|
REM Terminal Launcher - Double-click to open
|
|
REM Launches TerminalLauncher.py with Python
|
|
|
|
cd /d "%~dp0"
|
|
python TerminalLauncher.py
|
|
if errorlevel 1 (
|
|
echo Failed to launch Terminal Launcher
|
|
echo Make sure Python is installed and in your PATH
|
|
pause
|
|
)
|
|
exit
|