Skip to content

Instantly share code, notes, and snippets.

@stormdragon2976
stormdragon2976 / wsl-sound.bat
Created January 29, 2018 01:35
Enable sound in WSL for tintin++ accessibility packs
@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
)