问题描述
几天前,我写了一个小工具(请参阅Github项目)单个 .exe
可移植文件。使用以下命令编译/链接:
I have written a little tool a few days ago (see Github project here) that works as a single .exe
portable file. It is compiled/linked with:
cl mytool.c
我已经将 .exe
上传到了互联网上,但是当人们尝试下载时(直接链接),该文件被视为恶意软件/潜在威胁,因此无法下载。 (请注意,在禁用防病毒软件10分钟后,可以成功下载它。)
I have uploaded the .exe
on internet, but when people try to download it (direct link here), the file is seen as malware / potential threat, and thus can't be downloaded. (Note that when disabling antivirus for 10 minutes, it is possible to download it successfully.)
如何编译/链接我的工具,以便将我的 .exe
文件视为潜在威胁?
How to compile/link my tool so that my .exe
file is seen as potential threat?
推荐答案
通过在zip文件或rar文件中输入密码,您也许可以解决此问题。唯一的事情是,您将必须提供从中下载文件的密码,以便用户可以进入该文件。
You may be able to get around this problem by putting a password on the zip file or rar file. The only thing is that you would then have to hand the password where the file is downloaded from so that users can get into it.
如果您需要有关此信息的更多信息您可以阅读以下页面:
If you want some more information on this you could read this page:Getting around Chrome's Malicious File Warning
希望这会有所帮助。
这篇关于如何防止我的.exe被识别为恶意软件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!