diff --git a/versioned_docs/version-3.0.0/server/installation_tabs.md b/versioned_docs/version-3.0.0/server/installation_tabs.md
index 9bbdd8e49..fc99df2b5 100644
--- a/versioned_docs/version-3.0.0/server/installation_tabs.md
+++ b/versioned_docs/version-3.0.0/server/installation_tabs.md
@@ -279,12 +279,86 @@ Youβve successfully set up **Keploy on macOS** using **Docker**.
:::info
-Keploy does not natively support Windows. However, you can run it using **WSL** or **Docker**.
+You can run Keploy **Natively** or using **WSL** or **Docker**. If you want to run Keploy natively, make sure to do it as an administrator.
:::
π **Choose your preferred method:**
+
+
+
+`Note: Native Windows support is available only for AMD. For ARM-based systems, please use WSL or Docker.`
+
+### 1. Create a Directory
+
+ Use this command to create a directory for Keploy:
+
+ ```powershell
+
+ New-Item -ItemType Directory -Force -Path "$env:APPDATA\Keploy\bin"
+ ```
+
+ ### 2. Install Keploy
+
+ Run this command to install the Keploy exe:
+
+ ```powershell
+ Invoke-WebRequest -Uri "https://github.com/keploy/keploy/releases/latest/download/keploy_windows_amd64.exe" -OutFile "$env:APPDATA\Keploy\bin\keploy.exe"
+ ```
+
+ ### 3. Set Environment Variable
+
+Add the directory containing the Keploy binary to your system userβs `PATH` environment variable to make the `keploy` command available globally.
+
+ ```text
+ C:\Users\"Your Username"\AppData\Roaming\Keploy\bin
+ ```
+
+ ### 4. Finalize Setup
+
+ 1. Checks: Close all the terminals.
+ 2. Run as Admin: Open your terminal as **Administrator**.
+ 3. Troubleshooting: If you face issues, ensure `cmd.exe` and `powershell.exe` (default paths in Windows) are in your system environment variables.
+
+ ### 5. Verify Installation
+
+ Once done, You should see something like this:
+
+ ```bash
+ βββββ
+ ββββββββββ
+ ββββββββββ
+ βββββββ ββ β β
+ ββββββββββ ββ βββ ββββ ββββ ββ ββββββ ββ β
+ βββββββββββββ βββββ βββββ βββ ββ ββ ββ ββ ββ ββ
+ βββββββββββββββ ββ ββ ββββ βββββββ βββ ββββββ βββ
+ ββ βββ ββ
+ β
+
+ Keploy CLI
+
+ Available Commands:
+ example Example to record and test via keploy
+ config --generate generate the keploy configuration file
+ record record the keploy testcases from the API calls
+ test run the recorded testcases and execute assertions
+ update Update Keploy
+
+ Flags:
+ --debug Run in debug mode
+ -h, --help help for keploy
+ -v, --version version for keploy
+
+ Use "keploy [command] --help" for more information about a command.
+ ```
+## π Congratulations!
+
+Youβve successfully installed **Keploy on Windows**.
+
+
+
+
## Install Keploy with WSL