checkping.io
Frankfurt, DE (Auto)
← Back to Blog
CheckPing Team

How to Check Ping on Windows Using CMD - Complete Guide

#windows#check ping#cmd#tutorial

Using Windows CMD to Check Ping

Windows Command Prompt (CMD) provides a built-in ping command to test network connectivity and measure latency. This guide shows you how to check ping on Windows 10 and 11.

How to Open CMD

  1. Press Windows + R to open Run dialog
  2. Type cmd and press Enter
  3. The Command Prompt window will open

Basic Ping Command

To check ping to any website or server:

ping google.com

This sends 4 ping requests and shows the latency for each.

Continuous Ping Test

To ping continuously until you stop it:

ping -t google.com

Press Ctrl + C to stop the test.

Ping Specific Number of Times

ping -n 100 google.com

This sends exactly 100 ping requests.