Skip to content

Instantly share code, notes, and snippets.

View trzecieu's full-sized avatar

Piotr Paczkowski (trzeci.eu) trzecieu

View GitHub Profile
@trzecieu
trzecieu / install_wsl.bat
Last active March 31, 2024 16:21
WSL Scripts
@echo off
echo - This scripts automates process of installing Windows Subsystem for Linux (WSL)
REM Due some limitations, this script has to be can't be executed under PowerShell
Get-ChildItem >nul 2>&1
if %errorLevel% == 0 (
echo # Swich to CMD
cmd /c start "" %0
exit 0
)