Space for Fakhrul Islam
Breadcrumbs

Install and Run Wireshark on Windows

This guide explains how to download, install, and launch Wireshark on a Windows operating system.

Prerequisites

Before you begin, make sure you have:

  • A Windows computer with administrator access.

  • An active internet connection.

  • Permission to install software on the computer.




Follow the steps below:

Step 1. Download Wireshark

Open the official Wireshark download page:

https://www.wireshark.org/download.html

Select the appropriate Windows installer for your system.

image-20260831-182052.png
Figure 1. Wireshark Download Page



Step 2. Download the Installer

Select the preferred Wireshark version and download the Windows installer.

Choose a location on your computer where you want to save the installer.

2.png
Figure 2. Select the Wireshark Version
3.png
Figure 3. Select a Download Location



Step 3. Launch the Installer

Once the download is complete, navigate to the location where the installer was saved.

Double-click the downloaded .exe file to start the installation.

image-20260831-182309.png
Figure 4. Launch the Wireshark Installer


Step 4. Install Wireshark

Follow the installation wizard to install Wireshark.

  1. Continue with the Installation. Click Next to proceed.

image-20260831-182558.png
Figure 5. Click Next


  1. Review the license agreement and click Noted to continue.

image-20260831-182730.png
Figure 6. Accept the License Agreement




  1. Click Next.

image-20260831-182849.png
Figure 7. Click Next


  1. Click Next to proceed with the default installation settings.

image-20260831-183032.png
Figure 8. Click Next



  1. Check the Wireshark Desktop Icon option if you want to create a shortcut on your desktop. Click Next.

image-20260831-183110.png
Figure 9. Select the Desktop Icon Option



  1. Click Next to continue.

image-20260831-183323.png
Figure 10. Click Next



  1. Install Npcap

Wireshark requires Npcap to capture network traffic on Windows.

If Npcap is not already installed on your system, make sure Install Npcap is selected. Click Next.


image-20260831-183140.png
Figure 11. Install Npcap


  1. Click Install to begin installing Wireshark.

image-20260831-183215.png
Figure 12. Click Install



  1. Complete the Installation

Wait for the installation process to complete. If prompted to continue or proceed with the Npcap installation, follow the on-screen instructions.

Click Next when prompted.

image-20260831-184304.png
Figure 13. Continue the Installation



  1. Once the installation is complete, click Finish.

image-20260831-183533.png
Figure 14. Click Finish




Step 5. Launch Wireshark

After installation is complete, locate the Wireshark shortcut on your desktop.

Double-click the shortcut to launch the application.

image-20260831-183953.png
Figure 15. Double click Wireshark


Step 6. Verify the Installation

After launching Wireshark, the main application window should appear.

You can now use Wireshark to capture and analyze network traffic.

image-20260831-184025.png
Figure 16. Wireshark Successfully Launched




Step 7. Capture Your First Packets

Now that Wireshark is installed, you can capture real network traffic from a website.

  1. Select Your Network Interface

When Wireshark opens, you will see a list of available network interfaces.

Select the interface that is connected to the internet. This is usually Wi-Fi or Ethernet, depending on how your computer is connected.

A moving graph or line next to an interface indicates that network traffic is flowing through it.

image-20260902-050634.png
Figure 17. Select the Wi-Fi Interface



  1. Start the Capture

Double-click the Wi-Fi interface, or select it and click the blue shark fin button.

Wireshark will immediately begin capturing network packets.

image-20260902-051152.png
Figure 18. Capture in Progress


  1. Open YouTube

Leaving Wireshark running, open your browser, go to http://youtube.com , and play any video for about 10 seconds.

image-20260902-051305.png
Figure 19. Playing a Youtube Video


  1. Stop the Capture

Return to Wireshark and click the red square button to stop the packet capture.

image-20260902-051416.png
Figure 20. Stop the Capture


The captured packets will remain visible in the packet list.

image-20260902-051434.png
Figure 21. Capture Stopped


  1. Read the Packet List

Each row in the packet list represents one captured network packet.

The main columns are:

Column

Meaning

No.

Packet number in the capture

Time

Time elapsed since the capture started

Source

Where the packet came from

Destination

Where the packet is going

Protocol

The network protocol used by the packet

Length

Size of the packet in bytes

Info

A brief description of what the packet is doing

Your laptop’s own address appears in the Source column when it sends, and in the Destination column when it receives.

image-20260902-052715.png
Figure 22. Read the Packet List



  1. Filter the Results

A packet capture can contain thousands of packets, making it difficult to find specific traffic.

You can use Wireshark's Display Filter bar at the top of the window to filter the results.

For example, enter:

dns

Then press Enter.

image-20260902-053127.png
Figure 23. Filter for DNS



Wireshark will now display DNS-related packets.

Look for a DNS query related to the website you visited, such as https://www.youtube.com/ The query represents your computer requesting the IP address associated with a domain name. A corresponding DNS response contains the requested address information.

You can use other Wireshark display filters to analyze different types of network traffic.



Why You Cannot See the Video Data

If you select a packet associated with YouTube and inspect the packet details, you may notice that the actual video content is not readable.

This is because the connection is encrypted.

Wireshark can still show information such as:

  • The source and destination of network traffic.

  • The protocols being used.

  • The amount of data being transferred.

  • When packets are sent and received.

However, Wireshark cannot normally display the actual contents of encrypted HTTPS traffic.

This encryption helps protect the privacy and security of your web browsing.



Step 8. Save the Capture File

You can save the captured network traffic to your local disk for later analysis or for sharing with a support or development team.

Click File → Save As.


image-20260902-054238.png
Figure 24. Save

Choose the location where you want to save the capture file. Enter a file name and click Save.

image-20260902-054310.png
Figure 25. Give File Name and Save it

Wireshark typically saves packet captures using the .pcapng file format.

You can later open the saved file in Wireshark to review and analyze the captured network traffic.