Skip to content

Instantly share code, notes, and snippets.

@prerakmody
Created March 28, 2025 08:48
Show Gist options
  • Save prerakmody/196fe66bce102ee28c96942803a45120 to your computer and use it in GitHub Desktop.
Save prerakmody/196fe66bce102ee28c96942803a45120 to your computer and use it in GitHub Desktop.
Windows Powershell

1 - Install gping

  1. Launch Powershell in Administrator mode
  2. First install chocolatey
  3. Install gping: choco install gping

1.1 - Sample command

  • gping google.com reddit.com <local-server>

2 - Make it a powershell alias

  1. notepad $PROFILE
    • Include in this file: function gpingAll { gping google.com reddit.com <local-server> }
  2. Run . $PROFILE to reload your powershell
  3. In powershell run: gpingAll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment