" if SU2\ has not been added to the system path.
-
-*NOTE*: if the directory name contains white space, the executables may not work without appending ".exe", and the python scripts may not work. Additionally, when setting the enviornment variables and paths, quotes must be added, for example: "C:\Program Files\"Stanford ADL"\SU2\"
-
-3. **Add SU2 to the system path**. Access the system variables by typing "environ" in the search/run box of the start menu, select "edit the system environment variables", and then select "Environment Variables" from the System Properties menu. Edit the "Path" system variable (or select "New" if no "Path" system variable exists) and add the path to the SU2 executables. When there is more than one directory listed in "Path" they must be separated by semicolons. This will allow you to use the executables from any directory without explicitly specifying the path to the executable.
-
-4. **Optional: Install Microsoft MPI to enable parallel mode**. As the well-known, freely-available, open-source implementations of MPI listed in the Install section may not support Windows, you may want to install Microsoft MPI.
-
-## Running SU2 in Windows
-
-Running SU2 in Windows is identical to running in Linux or Mac OS environments and is run from the command line (whether cmd.exe or the freely-available Console2 for Windows). If your executable path contains white space you may need to add ".exe" .
-
diff --git a/_docs/contribute.md b/_docs/contribute.md
deleted file mode 100644
index 9d16b435..00000000
--- a/_docs/contribute.md
+++ /dev/null
@@ -1,33 +0,0 @@
----
-title: Contribute
-permalink: /docs/contribute/
----
-
-Do you want to contribute to the SU2 documentation? It's easy! Just create a fork of the [SU2 Project Website repository](https://github.com/su2code/su2code.github.io), write your documentation, and open a pull request.
-
-## Writing content
-
-The documentation in this site is stored under the `_docs` folder. To add your contributions:
-
-**1.** Add a new Markdown file inside the subfolder, as `_docs/Your_Documentation.md`. Add the following [front matter](https://jekyllrb.com/docs/frontmatter/) to your file:
-
-```
----
-title: Your Documentation Page
-permalink: /docs/Your_Documentation/
----
-
-I'm contributing to SU2! Don't forget the trailing '/' on the permalink!
-```
-
-**2.** Add the documentation pagename to the `_data/docs.yml` file, in order to list it in the navigation panel (create a new subgroup if necessary):
-
-```
-- title: Your Subgroup of Documentation
- docs:
- - Your_Documentation
-```
-
-**3.** If you have supporting images or other auxiliary files, please add them to the folder `docs_files` in the root directory of the repository. Don't forget to add the correct relative links to these files in your docs, if necessary.
-
-**4.** When you are ready, submit a pull request to the **develop** branch of the [repository](https://github.com/su2code/su2code.github.io)... and it's all done! Thanks for your contribution!
diff --git a/_docs/index.md b/_docs/index.md
deleted file mode 100644
index 646d95bc..00000000
--- a/_docs/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-title: SU2, Multiphysics Simulation and Design Software
-permalink: /docs/home/
-redirect_from: /docs/index.html
----
-
-
-
-The SU2 suite is an open-source collection of C++ based software tools for performing Partial Differential Equation (PDE) analysis and solving PDE-constrained optimization problems. The toolset is designed with Computational Fluid Dynamics (CFD) and aerodynamic shape optimization in mind, but is extensible to treat arbitrary sets of governing equations such as potential flow, elasticity, electrodynamics, chemically-reacting flows, and many others. SU2 is under active development by individuals all around the world on [GitHub](https://github.com/su2code/SU2) and is released under an open-source license.
-
-For a detailed description of the code philosophy, components, and implementations, please see our [SU2 AIAA Journal article](http://arc.aiaa.org/doi/abs/10.2514/1.J053813).
diff --git a/_docs_v7/Installation.md b/_docs_v7/Installation.md
index f98309b8..0c19fb7a 100644
--- a/_docs_v7/Installation.md
+++ b/_docs_v7/Installation.md
@@ -74,3 +74,45 @@ Each of the C++ modules for SU2 can be called directly from the command line and
- SciPy
Alternatively, Python and these packages can be found in prebuilt installations, such as the Anaconda Distribution, or from package managers like Homebrew for Mac OS X.
+
+## Windows Installation
+
+### ⚠️ Important Note for Windows Users
+
+**We strongly recommend using Windows Subsystem for Linux (WSL)** for building and running SU2 on Windows. Native Windows builds have known limitations with MPI support and may encounter linking errors (see issue [#1468](https://github.com/su2code/SU2/issues/1468)).
+
+### Option 1: WSL Installation (Recommended) ✅
+
+Windows Subsystem for Linux provides a native Linux environment on Windows and is the most reliable way to build SU2.
+
+#### Install WSL
+
+1. Open PowerShell as Administrator and run:
+```powershell
+ wsl --install
+```
+
+2. Restart your computer when prompted
+
+3. Open Ubuntu from the Start menu (installed automatically)
+
+4. Follow these commands in the Ubuntu terminal:
+```bash
+ sudo apt update && sudo apt upgrade
+ sudo apt install git cmake g++ python3 libopenmpi-dev
+ git clone https://github.com/su2code/SU2.git
+ cd SU2
+ ./meson.py build
+ ./ninja -C build install
+```
+
+#### Advantages of WSL
+- ✅ Native MPI support (no linking errors)
+- ✅ Better performance than traditional VMs
+- ✅ Seamless file system integration with Windows
+- ✅ Same commands as Linux installation
+
+### Option 2: Native Windows Build (Advanced Users Only) ⚠️
+
+Native Windows builds have known MPI linking issues ([#1468](https://github.com/su2code/SU2/issues/1468)). We strongly recommend WSL instead.
+
diff --git a/develop.html b/develop.html
index 458079f2..4b175feb 100644
--- a/develop.html
+++ b/develop.html
@@ -35,7 +35,7 @@ Git-ting Started
-You can check out all of the development activity, and new developers are encouraged to log feature requests, questions, and bug reports through the GitHub issue tracker. Developers can have their code contributions integrated through GitHub as well. For more information, look at the SU2 wiki on GitHub.
+You can check out all of the development activity, and new developers are encouraged to log feature requests, questions, and bug reports through the GitHub issue tracker. Developers can have their code contributions integrated through GitHub as well. For more information, look at the SU2 wiki on GitHub.