How to pass the Windows Defender SmartScreen Protection?(如何通过 Windows Defender SmartScreen 保护?)
问题描述
我正在努力防止我的应用程序(安装程序)不会被 Windows SmartScreen Protection 阻止.
I am trying to prevent that my application (an installer) will not be blocked by Windows SmartScreen Protection.
我使用 BitRock 并手动签署了我的安装程序,但我总是遇到这个问题.我买了一个有效的证书,带时间戳的签名没问题.
I use BitRock and I signed my installer manually but I have always this problem. I bought a valid certificate and the signing with a timestamp is ok.
这是一个商业应用程序,我不希望用户害怕安装
It's a commercial application and I don't want that the user will be afraid to install it
ps.我没有未知的出版商
ps. I dont have an unknown publisher
推荐答案
您只需将您的软件提交给 Microsoft 进行恶意软件分析https://www.microsoft.com/en-us/wdsi/filesubmission
它对我有用,基本上他们在几个小时内就建立了我的 .exe 声誉,现在可以下载和安装文件而无需触发 Microsoft Defender Smart Screen.
It worked for me, basically they've established my .exe reputation in a few hours, and now file is can be downloaded and installed without triggering Microsoft Defender Smart Screen.
花了一段时间才弄明白,他们的说明本来可以更简单,但确实有效.
Took a while to figure this out, their instructions could have been easier, but it works.
这篇关于如何通过 Windows Defender SmartScreen 保护?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何通过 Windows Defender SmartScreen 保护?
基础教程推荐
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- CString 到 char* 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
