首页 > 其他分享 >【报错修复】HRESULT: 0x80070057 The library hostfxr.dll was found, but loading it from C:\Program Files\

【报错修复】HRESULT: 0x80070057 The library hostfxr.dll was found, but loading it from C:\Program Files\

时间:2023-07-27 18:11:35浏览次数:46  
标签:5.0 17 hostfxr dll 报错 https dotnet

我写了一个winform程序,
拷贝到win7系统上,提示需要下载.net 给的链接是
https://aka.ms/dotnet-core-applaunch?missing_runtime=true&arch=x64&rid=win7-x64&apphost_version=5.0.3&gui=true


这台win7上不了网

我用win10下载了这个链接的桌面运行时 windowsdesktop-runtime-5.0.17-win-x64.exe

拷贝到win7后安装

再次双击winform程序,这次什么都没有响应
打开事件查看器,

发现加载   C:\Program Files\dotnet\host\fxr\5.0.17\hostfxr.dll  的时候

HRESULT: 0x80070057 The library hostfxr.dll was found, but loading it from C:\Program Files\dotnet\host\fxr\5.0.17\hostfxr.dll failed - Installing .NET prequisities might help resolve this problem. https://go.microsoft.com/fwlink/?linkid=798306

直接把报错扔给ChatGPT,给了些广泛不具体的建议。

然后把报错扔给Google,找到了这个帖子

KB3063858 fixed the problem for me!

32-bit: https://www.microsoft.com/en-us/download/details.aspx?id=47409
64-bit: https://www.microsoft.com/en-us/download/details.aspx?id=47442

—— https://www.reddit.com/r/windows/comments/ik7sp7/does_anybody_have_the_kb2533623_update_for/

下载安装这个用于基于 x64 的系统的 Windows 7 安全更新程序 (KB3063858)
(用于修复MS15-063漏洞)

问题解决!

标签:5.0,17,hostfxr,dll,报错,https,dotnet
From: https://www.cnblogs.com/yhm138/p/17585721.html

相关文章

  • swiper + ts 类型报错
    swiper+ts类型报错"swiper":"^9.4.1"版本号原因修改tsconfig.json文件下面的moduleResolution为node{"compilerOptions":{"baseUrl":"./","paths":{"@/*":["src/......
  • PyCharm 获取 Conda 环境列表失败,报错 error code 1 的解决办法
    通常来说,在设置PythonInterpreter时,Condaexecutable的路径为anaconda\Scripts\conda.exe。但是我在给同事部署环境填入该路径,且路径下也确实有对应文件存在,却报错errorcode1。解决方案:用这个路径anaconda\Library\bin\conda.bat可解决问题。这让我想起在Mac上部署Conda......
  • appuim 做自动化测试的时候遇到的一些报错 附解决方法
    1、selenium.common.exceptions.InvalidElementStateException:Message:UnabletoperformW3Cactions.Checkthelogcatoutputforpossibleerrorreportsandmakesureyourinputactionschainisvalid.2、http.client.RemoteDisconnected:Remoteendclosedconn......
  • win 7发布.net4.6报错
    参考网址https://blog.csdn.net/kexiuyi/article/details/71488354如何用aspnet_regiis注册4.0框架 ①找到.NET4.0框架下aspnet_regiis所在目录,在C盘根目录中搜索aspnet_regiis,找到4.0框架下aspnet_regiis的目录位置,本人本本目录为"C:\Windows\Microsoft.NET\Framework\v4.0......
  • python使用ctypes调用gcc编译的dll之ctypes的使用
    简介ctypes是Python的外部函数库。它提供了与C兼容的数据类型,并允许调用C或C++编译后的DLL或共享库中的函数。可使用该模块以纯Python形式对这些库进行封装。本例中代码基于window系统,python为64位3.9.12,如需在liunx上使用请参考上篇博客1、代码的基础结构如下1.1新......
  • n stable报错curl: (7) Failed to connect to nodejs.org port 443: Connection refus
    nstable报错curl:(7)Failedtoconnecttonodejs.orgport443:ConnectionrefusedError:failedtodownloadversionindex(https://nodejs.org/dist/index.tab)使用淘宝源exportN_NODE_MIRROR=https://npm.taobao.org/mirrors/nodenstable......
  • python使用多进程multiprocessing执行报错
        inthemainmodule:      if__name__=='__main__':        freeze_support()        ...    The"freeze_support()"linecanbeomittediftheprogram    isnotgoingtobefrozentop......
  • 重复点击路由跳转报错的问题
    在router中重写pushVueRouter.prototype.push=function(location,resolve,reject){if(resolve&&reject){orginPush.call(this,location,resolve,reject)}else{orginPush.call(this,location,()=>{},()=>{})}}letor......
  • Keil5报错Error: L6218E: Undefined symbol assert_param (referred from misc.o)
    该函数定义在stm32f10x_conf.h里,在C\C++设置一栏中定义USE_STDPERIPH_DRIVER,STM32F10X_HD使宏生效即可解决问题。   ......
  • C#引用c++ DLL找不到入口点
    c++中的函数名称在编译后改变了,需要利用dumpbin.exe找到编译后的名字dumpbin.exe在VS安装目录参考路径:C:\ProgramFiles(x86)\MicrosoftVisualStudio\2019\Community\VC\Tools\MSVC\14.28.29910\bin\Hostx64\x64打开cmd,移动到dumpbin.exe对应路径,然后输入命令dumpbin-e......