English
Appearance
English
Appearance
After downloading WSL Dashboard's .exe installer or .zip archive, Windows Defender or other antivirus software may display a security warning indicating the file poses a risk, or directly block and delete it.
This is a false positive — the file does not actually contain any virus.
The root cause is: this project does not have an EV (Extended Validation) code signing certificate.
A code signing certificate is used to digitally sign executable files, proving they come from a trusted publisher and have not been tampered with. Windows applies stricter security checks to unsigned programs or those signed with standard certificates.
| Certificate Type | Price | SmartScreen Policy |
|---|---|---|
| No signature | Free | Blocked immediately, marked as "Unknown Publisher" |
| Standard OV certificate | Hundreds of dollars/year | Still shows warnings, requires reputation building |
| EV certificate | Thousands of dollars/year | Passes immediately, no warnings |
Programs not signed with an EV certificate are marked as unsafe by default by Windows SmartScreen, and are more likely to be identified as potential threats by antivirus software.
Rest assured, the build process for this project is completely transparent and auditable:
In simple terms: the exe file never passes through the developer's hands — there is no possibility of "poisoning".
When Windows Defender blocks the file:
Or add an exclusion before downloading:
Third-party antivirus software: Please add the downloaded file or directory to the trust list in the respective software.
If you still have concerns about pre-compiled binaries, you can clone the source code and compile it locally:
# Clone the repository
git clone https://github.com/owu/wsl-dashboard.git
cd wsl-dashboard
# Build Release version
cargo build --release
# Build artifacts are located in the target/release/ directoryThis way, you can fully verify the code you are running.
Purchasing an EV code signing certificate can fundamentally solve the false positive issue, but faces the following practical challenges:
If you would like to support the development of this project, you can donate through the sponsorship channels on the project homepage to help the developer cover operational costs such as certificates.
Thank you for your understanding and support!