Can you use Nmap on Windows?
We support Nmap on Windows 7 and newer, as well as Windows Server 2008 and newer. We also maintain a guide for users who must run Nmap on earlier Windows releases.
How do I scan a port using Nmap Windows?
To get started, download and install Nmap from the nmap.org website and then launch a command prompt. Typing nmap [hostname] or nmap [ip_address] will initiate a default scan. A default scan uses 1000 common TCP ports and has Host Discovery enabled. Host Discovery performs a check to see if the host is online.

How install Nmap on Windows?
Browse to https://nmap.org/download.html and download the latest self-installer:
- Run the downloaded .exe file. In the window that opens, accept the license terms:
- Choose the components to install.
- Select the install location and click Install:
- The installation should be completed in a couple of minutes.
How do I scan my computer with Nmap?
About This Article
- Download the installer.
- Run the installer.
- Open NMap/Zenmap.
- Enter the target address.
- Choose a profile.
- Click Scan.
- Review the results.
What is the GUI version of Nmap for Windows?
Zenmap
Zenmap is the official graphical user interface (GUI) for the Nmap Security Scanner.

How do I enable Nmap on Windows 10?
Installing Nmap on Windows
- Step 1: Visit the official website using the URL https://nmap.org/download.html on any web browser the click on nmap-7.92-setup.exe.
- Step 2: Now check for the executable file in downloads in your system and run it.
- Step 3: It will prompt confirmation to make changes to your system.
How do I scan a specific port with Nmap?
Scanning specific port ranges There are several ways of using the Nmap -p option: Port list separated by commas: $ nmap -p80,443 localhost. Port range denoted with hyphens: $ nmap -p1-100 localhost. Alias for all ports from 1 to 65535: # nmap -p- localhost.
Can you run Nmap in PowerShell?
As I mentioned earlier, Windows PowerShell has full support for executables, so another approach for performing a network scan would be to invoke nmap.exe and parse the XML output into a Windows PowerShell custom object to utilize the benefits of Windows PowerShell when working with the ouput.
How do I scan a range of IP addresses using Nmap?
In this cheat sheet, you will find a series of practical example commands for running Nmap and getting the most of this powerful tool….Nmap Target Selection.
Scan a single IP | nmap 192.168.1.1 |
---|---|
Scan a range of IPs | nmap 192.168.1.1-20 |
Scan a subnet | nmap 192.168.1.0/24 |
Scan targets from a text file | nmap -iL list-of-ips.txt |