在正式环境中安装DotNet Core运行时库时失败
1、检查系统是否安装Windows6.1-KB2533623-x64.msu补丁
https://blog.csdn.net/s1t16/article/details/133765180
2、检查系统是否安装vc_redist.x64.exe
https://www.microsoft.com/zh-CN/download/details.aspx?id=48145
3、检查是否安装证书microsoft root certificate authority 2010.cer
如果安装失败时提示"...has an invalid digital signature,...",那这一步就是你缺少的关键,在微软官网上找到这个文件进行添加证书。
3.1开始 -> 运行 -> MMC
3.2文件 -> 添加删除管理单元(Ctrl+M)
3.3证书 -> 计算机账户(其他都保持默认,下一步)
3.4回到窗体,展开:证书 -> 受信任的根证书颁发机构 -> 证书
3.5右键展开菜单,所有任务 -> 导入
3.6选择cet文件,下一步完成安装。
4、安装DotNet Core运行时库
4.1下载安装aspnetcore-runtime-2.2.8-win-x64.exe和dotnet-hosting-2.2.8-win.exe
https://dotnet.microsoft.com/download/dotnet-core
4.2下载安装aspnetcore-runtime-3.1.6-win-x64.exe和dotnet-hosting-3.1.6-win.exe
https://dotnet.microsoft.com/download/dotnet-core
4.3通过PowerShell进行安装
https://blog.csdn.net/s1t16/article/details/133813527