分类: Windows

21 篇文章

TLS请求报错 ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:1129)
TLS请求报错 ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:1129) 在python中使用DoT,通过TLS协议请求DNS,结果程序报错,错误 ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:1129) 经检查发现竟然是Proxifier导致的问题,由于dns服务器在国外,使用了Proxifier作为中转,通过v2转发,Proxifier套了一层代理后,应该对传输的数据做了处理,导致返回的信息出现异常。 更换其他的工具就正常了,推荐使用Netch作为替代品,开源免费,可以直接对请求进行代理。 Netch https://github.com/NetchX/Netch/
Brave Release编译提示编码错误
Brave Release编译提示编码错误 排查后发现,synced_device_manager.js的178行有问题,坑爹js 使用了非GBK的编码 修复方式 brave-browser\src\chrome\browser\resources\tools\optimize_webui.py 找到with open 添加 encode=utf-8 用来正确解析编码
Office 2019 无法激活
Office 2019 无法激活 先停用 Software Protection 服务,再定位到 C:\Windows\System32\spp 把 store 或者是 store_text 目录下,2.0 文件夹 下面的三个 dat 文件删除(一个在cache下) 再启动 Software Protection 服务,等待半分钟再从头重新激活
Brave 编译后打包提示缺少文件
Brave 编译后打包提示缺少文件 BUILD.gn标识的问题,精简了相关插件后对应文件也需要修改 static_library("browser") { 使用这个会打包lib文件,但是精简组件后相关文件没有生成,所以报错 改成以下即可正常编译打包 source_set("browser") {
编译报错 CoCreateInstance CLSID_DiaSource {E6756135-1E65-4D17-8576-610761398C3C} failed (msdia*.dll unregistered?)
编译提示报错 运行以下命令可以重现错误 .\dump_syms.exe .\xxxxx.exe.pdb CoCreateInstance CLSID_DiaSource {E6756135-1E65-4D17-8576-610761398C3C} failed (msdia*.dll unregistered?) Open failed. 原因 缺少dll 管理员权限下注册64位dll regsvr32 "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Packages\Debugger\x64\msdia140.dll" 相关代码和对应的DLL文件名称 B86AE24D-BF2F-4ac9-B5A2-34B14E4CE11D …
win7更新提示不支持的硬件
from--https://www.itsk.com/thread-404527-1-1.html schtasks /Delete  /Tn "\Microsoft\Windows\End Of Support\Notify1" /f schtasks /Delete  /Tn "\Microsoft\Windows\End Of Support\Notify2" /f schtasks /Delete /Tn "\Microsoft\Windows\Setup\EOSNotify" /f schtasks /Delete /Tn "\Microsoft\Windows\Setup\EOSNotify2" /f reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\EOSNotif…