# Install GoodbyeDPI

### 1. Uninstall all antivirus programs

Antivirus programs can corrupt GoodbyeDPI and make it unusable. If you have previously downloaded GoodbyeDPI while your antivirus program was running, you will need to delete it and download it again.

### 2. Download GoodbyeDPI

Press **Win + R** and type `cmd`.

```shell
# Go to the documents directory
cd %userprofile%/Documents

# Download the compiled zip file from GitHub
curl -Lo goodbyedpi-v1.1.zip https://github.com/keift/goodbyedpi/archive/refs/tags/v1.1.zip
```

### 3. Unzip the zip file

Extract the zip file and then delete it.

```shell
# Unzip the zip file
powershell -Command "Expand-Archive -Path './goodbyedpi-v1.1.zip' -DestinationPath './goodbyedpi-v1.1'"

# Delete the zip file that we no longer need
del goodbyedpi-v1.1.zip
```

### 4. Install GoodbyeDPI

We can start installing GoodbyeDPI.

```shell
# Enter the folder
cd ./goodbyedpi-v1.1/goodbyedpi-1.1

# Run install.bat
install.bat
```

### TIP: Uninstall GoodbyeDPI

If you ever regain your freedom, you can undo all of these actions in the following way.

```shell
# Go to the GoodbyeDPI directory
cd %userprofile%/Documents/goodbyedpi-v1.1/goodbyedpi-1.1

# Run uninstall.bat
uninstall.bat
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://keift.gitbook.io/guides/windows/install-goodbyedpi.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
