Skip to content

Instantly share code, notes, and snippets.

View andjo's full-sized avatar

Anders Johansson andjo

  • Roxen AB
  • Linköping, Sweden
View GitHub Profile
@andjo
andjo / wsl2-network.ps1
Last active May 16, 2023 09:24 — forked from daehahn/wsl2-network.ps1
WSL2 network forwarding
# WSL2 network port forwarding script v1
# for enable script, 'Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser' in Powershell,
# for delete exist rules and ports use 'delete' as parameter, for show ports use 'list' as parameter.
# written by Daehyuk Ahn, Aug-1-2020
# Display all portproxy information
If ($Args[0] -eq "list") {
netsh interface portproxy show v4tov4;
exit;
}