• v1.2.0 e4d62d1b94

    v1.2.0 Stable

    github-actions[bot] released this 2026-05-18 12:51:42 +03:00 | 1 commits to main since this release

    Downloads
  • v1.1.0 5ef0d77ca6

    v1.1.0 Stable

    github-actions[bot] released this 2026-05-18 11:51:38 +03:00 | 4 commits to main since this release

    Downloads
  • v1.0.3 7350232362

    v1.0.3 Stable

    github-actions[bot] released this 2026-05-17 21:41:34 +03:00 | 5 commits to main since this release

    Downloads
  • v1.0.2 67447bc7f1

    v1.0.2 Stable

    github-actions[bot] released this 2026-05-17 18:10:09 +03:00 | 6 commits to main since this release

    Downloads
  • v1.0.1 e80e673a10

    v1.0.1 Stable

    github-actions[bot] released this 2026-05-17 18:06:13 +03:00 | 7 commits to main since this release

    Downloads
  • v1.0.0 cce5204c25

    Engelgardt23 released this 2026-05-16 11:36:45 +03:00 | 14 commits to main since this release

    First public release.

    What it is

    A tiny portable Windows tool to flip a network adapter between static IP
    and DHCP with a few keystrokes. Built for the recurring engineer chore of
    "give my laptop 10.10.10.1 to talk to a server's BMC, then back to DHCP."

    Highlights

    • Single .exe, ~30 KB.
    • One UAC prompt at launch; everything else is keyboard prompts.
    • Picker shows only physical wired adapters — no Wi-Fi, VPN, virtual,
      Hyper-V, VMware, VirtualBox, TAP/TUN, WireGuard, OpenVPN, Tailscale,
      ZeroTier, Bluetooth, Loopback, WAN Miniport.
    • Sensible defaults for the static path: 10.10.10.1/24, gateway
      optional.
    • Auto update check at startup polls GitHub /releases/latest (3-second
      timeout) and offers to open the page if a newer version is available.

    Install

    Unzip, double-click netswitch.exe, accept UAC, pick a NIC, choose Static or
    DHCP.

    Build from source

    Install-Module ps2exe -Scope CurrentUser
    Invoke-ps2exe -inputFile netswitch.ps1 -outputFile netswitch.exe `
        -requireAdmin -title "netswitch" -version 1.0.0.0
    
    Downloads