Windows Guide

What to Do if Windows Defender Identifies Binance as a Virus?

Methods for identifying and handling false positives from Microsoft Defender, SmartScreen, and other antivirus software for the Binance desktop client. Includes PowerShell and command-line whitelist operations.

Microsoft Defender flagging the Binance installer or client as "suspicious" is a common occurrence. The verification process is simple: if the publisher is verified as Binance Holdings Limited and the file was obtained from the Windows download page of the Binance Official site, it is a false positive. You can safely allow it by adding it to your whitelist. This article explains Defender's three interception mechanisms (Real-time protection, SmartScreen, and Cloud protection), how to resolve them, and provides instructions for other popular antivirus software like 360, Huorong, and Tencent PC Manager. If you also want to install the Binance App on your phone, you can fetch the Binance Official APP installer; mobile apps are managed by Google Play Protect, which follows a different trust system.

Why Defender Flags Binance

The Binance Windows client is built with Electron. Cryptocurrency-related keywords and the app's packaging structure can sometimes trigger heuristic engine thresholds. Common detection labels include:

  • PUA:Win32/Presenoker: A generic label for potentially unwanted applications.
  • Wacatac: A common trojan downloader family.
  • Adposhel: Often misidentifies the Electron auto-updater as an ad-injector.
  • SmartScreen Interception: Occurs when an app's installation volume hasn't reached a specific reputation threshold.

These labels do not necessarily indicate a real virus. To verify, upload the file to VirusTotal for a multi-engine comparison. If over 90% of mainstream engines show the file as clean and only a few flag it, you can confidently conclude it is a false positive.

The Three Layers of Interception

Interception Type Displayed At Trigger Resolution Difficulty
SmartScreen Blue dialog box Double-clicking the EXE Easy: click "Run anyway"
Real-time Protection Bottom-right notification / Security Center During download or execution Medium: requires whitelisting
Cloud Protection File is immediately quarantined Moment download finishes Hard: requires restoring from quarantine
App & Browser Control Edge / Chrome download bar After download Easy: click "Keep"

Properly Handling SmartScreen

When double-clicking an EXE pops up the blue "Windows protected your PC" window, do not simply close it. Follow these steps:

  1. Click More info.
  2. Verify that the publisher is Binance Holdings Limited.
  3. Click Run anyway.

Properly Handling Real-time Protection

If the EXE has already been moved to quarantine: Open Windows Security -> Virus & threat protection -> Protection history -> Find the quarantined entry -> Select Actions -> Allow or Restore.

After restoration, we recommend adding the file path to the exclusion list to prevent it from being flagged again during future updates.

Precisely Adding Exclusions via PowerShell

Defender exclusions can be set at four levels: folder, file, extension, and process. The best practice for the Binance client is to exclude both the installation and user data directories:

# Run PowerShell as Administrator
Add-MpPreference -ExclusionPath "$env:LocalAppData\Programs\Binance"
Add-MpPreference -ExclusionPath "$env:AppData\Binance"
Add-MpPreference -ExclusionPath "$env:LocalAppData\Binance"
Add-MpPreference -ExclusionProcess "Binance.exe"
Add-MpPreference -ExclusionProcess "BinanceSetup.exe"

To view current exclusions:

Get-MpPreference | Select-Object -ExpandProperty ExclusionPath
Get-MpPreference | Select-Object -ExpandProperty ExclusionProcess

To remove an entry:

Remove-MpPreference -ExclusionPath "$env:LocalAppData\Programs\Binance"

Note: If your company IT manages security policies via Intune or GPO, Add-MpPreference may fail with an "Admin controlled policy" error. In this case, contact your IT department to add the whitelist in AD/Intune.

Restoring a Deleted EXE from Quarantine

If the installer has been quarantined by Defender, you can restore it using the MpCmdRun command-line tool:

"C:\Program Files\Windows Defender\MpCmdRun.exe" -Restore -Name "VirTool:Win32/DefenderFalsePositive"

To search for the threat name in quarantine:

"C:\Program Files\Windows Defender\MpCmdRun.exe" -Scan -ScanType 1

Alternatively, use the GUI path: Windows Security -> Virus & threat protection -> Protection history -> Select the entry -> Actions -> Restore. Ensure you select "Allow on this device" to prevent future quarantine.

Handling in Popular Antivirus Software

Antivirus Whitelist Entry Required Path
360 Security Settings -> Trust and Block -> Trust List Binance installation dir + Binance.exe
Huorong Settings -> Scan Protection -> Trusted Zone Same as above
Tencent Manager Toolbox -> Trust and Block -> Add Trust Same as above
Kaspersky Settings -> Threats and Exclusions -> Manage Exclusions Same as above
ESET Settings -> Real-time File System Protection -> Exceptions Same as above

Adding both BinanceSetup.exe and the installation directory to the whitelist ensures the client won't be flagged during its background automatic updates.

Registry Settings for SmartScreen

If you are on a work PC or virtual machine and frequently need to test different versions, you can temporarily lower SmartScreen sensitivity:

reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v SmartScreenEnabled
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v SmartScreenEnabled /t REG_SZ /d Warn /f

Value meanings:

  • RequireAdmin: Most strict, requires admin approval.
  • Warn: Warns but does not force block.
  • Off: Completely disabled (Not recommended as it reduces system security).

Don't forget to set it back to Warn or RequireAdmin after installing Binance.

Cloud Protection and Sample Submission

Defender's default Cloud Protection uploads hashes of unknown files to Microsoft's cloud for judgment. If your Binance installer was recently released, it may be flagged as "unknown" until it builds sufficient reputation.

You can proactively submit a false positive report to Microsoft: visit https://www.microsoft.com/en-us/wdsi/filesubmission, upload the installer, and state in the feedback: "This is an official Binance desktop installer with a valid Binance Holdings Limited signature." Usually, the cloud judgment is updated within 48 hours.

Verifying Digital Signatures via Command Line

Confirm the signature's validity in PowerShell:

Get-AuthenticodeSignature "$env:USERPROFILE\Downloads\BinanceSetup-1.45.2.exe" | Format-List *

The output should show:

  • Status: Valid
  • SignerCertificate.Subject containing CN=Binance Holdings Limited
  • TimeStamperCertificate is valid

If all three are present, the installer is an authentic official release. If the Status is HashMismatch or NotSigned, the installer has been tampered with and must be deleted.

Frequently Asked Questions (FAQ)

Q1: What if Defender deleted my already installed Binance.exe?

A: Restore it from the Protection history first, then add the installation directory to the exclusion list. If you receive a "Missing components" error after restoration, performing a clean reinstall is the best solution. Your configuration files in %AppData%\Binance\ will not be lost.

Q2: Why was I able to install it the first time without issues, but blocked the second time?

A: Defender's cloud protection dynamically adjusts judgments based on popularity and user feedback. Changes in version numbers or signature updates may trigger a re-marking. This is standard behavior; simply re-add it to your whitelist.

Q3: My corporate AD domain environment prevents me from modifying Defender settings. What now?

A: Contact your IT administrator to add a path exception in Group Policy under Computer Configuration > Administrative Templates > Windows Components > Microsoft Defender Antivirus > Exclusions. Individual users typically cannot bypass enterprise policies without violating IT compliance.

Q4: If I have both Defender and 360 running, which whitelist takes priority?

A: You must add the whitelist to both. They are independent scanning engines, and one may block a file even if the other allows it. It is generally recommended to use only one active antivirus at a time to avoid double-scanning which slows down disk I/O.

Q5: Does the Binance client need to be whitelisted every time it updates?

A: Whitelisting by process name (Binance.exe) usually remains effective across version updates. However, whitelisting by file hash (used by some third-party software) will fail after an update. We recommend using a directory-level whitelist: allow the entire %LocalAppData%\Programs\Binance directory for a long-term solution.

To explore other scenarios like Win10/Win11 uninstallation, multi-user setups, or autostart configurations, return to the Categories page and select "Windows Guide."

Keep reading

Still have Binance questions? Head back to the category page for more tutorials on the same topic.

Categories

Related tutorials

How to Download Binance for Windows? Win10/Win11 Desktop Installation Steps 2026-04-14 How to Install Binance Client on Win11? Latest 2026 Installation Guide 2026-04-15 Can Windows 7/8 Still Run the Binance Client? 2026-04-15 Can I Install Binance Without Administrator Privileges? Windows Standard User Installation 2026-04-15