diff --git a/docs/nmap-install.xml b/docs/nmap-install.xml
index 7e3685a8e..12bd26000 100644
--- a/docs/nmap-install.xml
+++ b/docs/nmap-install.xml
@@ -863,14 +863,15 @@ given in .
Compile from Source Code
Windowscompiling on
-
Most Windows users prefer to use the Nmap binary self-installer,
but compilation from source code is an option, particularly if you plan to help with Nmap development. Compilation requires
-Microsoft Visual C++, which is part of their commercial Visual Studio suite. Any of the Visual Studio editions should work, including the free Visual C++ 2010 Express SP1.
Compiling Nmap on Windows from Source
+Decide whether to obtain the Nmap source code by downloading the latest release from nmap.org, or using a Subversion client to retrieve even newer (but less tested) code from our repository. These instructions are for the web download approach, but using Subversion instead is straightforward (see ).
+
Download the latest Nmap source distribution from . It has the name
nmap-version.tar.bz2 or
nmap-version.tgz. Those are the same tar file compressed using bzip2 or gzip, respectively. The bzip2-compressed version is smaller.
@@ -878,7 +879,14 @@ url="http://www.microsoft.com/express/Windows/">Visual C++ 2010 Express SP1Uncompress the source code file you just downloaded. Recent releases of the free Cygwin distributionCygwin can handle both the .tar.bz2 and .tgz formats. Use the command tar xvjf nmap-version.tar.bz2 or tar xvzf nmap-version.tgz, respectively. Alternatively, the common WinZip application can decompress these files.
Open Visual Studio and the Nmap solution file (nmap-version/mswin32/nmap.sln).
-Choose Build Solution from the Build Menu. Nmap should begin compiling, and end with the line -- Done --
saying that all projects built successfully and there were zero failures.
+
+Right click on Solution 'nmap' in the Solution Explorer sidebar and choose Configuration Manager. Ensure that the active solution configuration is Releae and then close the Configuration Manager.
+
+Build Nmap by pressing F7 or choosing Build
+Solution from the GUI. Nmap should begin compiling, and
+end with the line -- Done --
saying
+that all projects built successfully and there were zero
+failures.
The executable and data files can be found in nmap-version/mswin32/Release/. You can copy them to a preferred directory as long as they are all kept together.