Friday, July 20, 2012

Performing a Traceroute in Microsoft Windows

Performing a Traceroute in Microsoft Windows

If you are running Windows on your machine, you can perform a traceroute using Command Prompt.

To Perform a Traceroute in Microsoft Windows®

  1. From the Start Menu, select Programs, then Accessories.
  2. Here you will find either MS-DOS Prompt or Command Prompt.
  3. A window will display with something similar to the following:
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.

    C:\windows>
  4. In this screen type: "tracert INSERTDOMAIN.COM" (without quotations, and replace insertdomain.com with your domain name) and press Enter.
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.

    C:\windows>tracert domain.com
  5. After the trace route has completed, right click anywhere on this window and click Select All.
  6. Press Enter and the information will be copied to the Windows clipboard.
  7. Paste this into a text document (Notepad, WordPad, etc.).

No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...