> For the complete documentation index, see [llms.txt](https://gandyhacks.gitbook.io/gandyhacks-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gandyhacks.gitbook.io/gandyhacks-docs/individual-guides/anti-virus.md).

# Anti-Virus

{% hint style="warning" %}
Removing antivirus software will make your system more vulnerable to malware, viruses, and other threats. Only do this if you have a good reason (e.g., testing, gaming performance, or using your own security setup).
{% endhint %}

{% stepper %}
{% step %}

### 📌 Step 1: Identify Your Antivirus Software

Common antivirus software includes:

| Antivirus                           | Common Source                                  |
| ----------------------------------- | ---------------------------------------------- |
| **Windows Defender**                | Built into Windows                             |
| **Avast / AVG**                     | Free/paid AV software                          |
| **McAfee**                          | Often pre-installed on PCs                     |
| **Norton / Symantec**               | Subscription-based AV                          |
| **Bitdefender**                     | Paid AV with system control                    |
| **Kaspersky**                       | Strong security, controversial in some regions |
| **Trend Micro, ESET, Sophos, etc.** | Less common, but still effective               |

To check:

* Press `Windows + R`, type `appwiz.cpl`, and press Enter to view all installed programs.
* Also check the **System Tray** (bottom-right of screen) for icons.
* Open **Task Manager > Startup tab** to spot antivirus-related items.
  {% endstep %}

{% step %}

### 🧼 Step 2: Uninstall Third-Party Antivirus Software

1. Press `Windows + R`, type `appwiz.cpl`, and press Enter.
2. Locate any of the following (examples):
   * **Avast Antivirus**
   * **McAfee LiveSafe**
   * **Norton Security**
   * **Bitdefender**
   * **AVG Antivirus**
   * **Kaspersky**
3. Select each one, then click **Uninstall**.
4. Follow the uninstaller’s instructions — some may require a reboot.
5. Repeat this for all antivirus software found.

{% hint style="info" %}
Some antivirus software may require a **special removal tool** if uninstallation fails. Let me know if you need one.
{% endhint %}
{% endstep %}

{% step %}

### 🛑 Step 3: Disable Windows Defender (Microsoft Defender Antivirus)

Microsoft Defender automatically reactivates if no other antivirus is installed. You’ll need to disable it manually if you want **zero antivirus** on the system.

#### Option 1: Disable via Windows Security Settings

1. Press `Windows + I` → **Privacy & Security** → **Windows Security** → **Virus & threat protection**.
2. Under **Virus & threat protection settings**, click **Manage settings**.
3. Turn **Real-time protection** to **Off**.
4. (Optional) Disable **Cloud-delivered protection** and **Tamper Protection**.

#### Option 2: Disable via Group Policy (Windows Pro)

1. Press `Windows + R`, type `gpedit.msc`, and press Enter.
2. Navigate to:

```
Computer Configuration → Administrative Templates → Windows Components → Microsoft Defender Antivirus
```

3. Double-click **Turn off Microsoft Defender Antivirus**.
4. Set it to **Enabled** → Click **OK**.
5. Restart your PC.

#### Option 3: Disable via Registry Editor (Any Windows Edition)

{% hint style="warning" %}
Use with caution.
{% endhint %}

1. Press `Windows + R`, type `regedit`, press Enter.
2. Navigate to:

```
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender
```

3. Right-click in the right pane → **New > DWORD (32-bit)** → Name it `DisableAntiSpyware`.
4. Set its value to `1`.
5. Reboot your PC.

#### ✅ Option 4: Disable via DControl Tool (Third-Party Utility)

DControl (Defender Control) is a lightweight utility used to disable Microsoft Defender with one click. Trusted by many power users.

1. Download **DControl (Defender Control)** from a trusted source (e.g., Sordum.org).

   <div data-gb-custom-block data-tag="hint" data-style="warning" class="hint hint-warning"><p>Avoid unofficial mirrors. Always verify the download source.</p></div>
2. Extract the ZIP file and run `DefenderControl.exe` as **Administrator**.
3. Click the red **“Disable Windows Defender”** button.
4. You should see status change to **Defender is turned off**.
5. Reboot your PC.

{% hint style="info" %}
This disables all Defender-related services, including Real-Time Protection.\
Re-enable anytime by clicking **“Enable Windows Defender”** in the same tool.
{% endhint %}
{% endstep %}

{% step %}

### ✅ Step 4: Confirm Everything Is Disabled

1. Press `Ctrl + Shift + Esc` to open Task Manager.
2. Check the **Processes** and **Startup** tabs for any antivirus-related tasks.
3. Open **Windows Security** again to verify Defender status.
4. You can also use `msinfo32` → Look under **System Summary** → Look for any mention of active AV.

![](/files/096b435994f7aeeb150594eceda8fcca5f3f0f4d)

![](/files/34efbd81635d0e595cb403d12c3dd5542ee0a8ed)
{% endstep %}
{% endstepper %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://gandyhacks.gitbook.io/gandyhacks-docs/individual-guides/anti-virus.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
