更新至 Windows 8.1 后 LogiLDA.dll 丢失

更新至 Windows 8.1 后 LogiLDA.dll 丢失

将 Windows 8 更新至 Windows 8.1 后,启动时出现错误。

它说:

There was a problem starting C:\Windows\System32\LogiLDA.dll
The specified module could not be found.

这是什么问题?或者我该如何修复它?

我有一台华硕 Ultrabook UX31A。

答案1

好的,据我所知,您可以删除 dll 的注册表项。我已经尝试过了,文件丢失似乎没有造成任何问题。这几乎就像 MS 的某个人安装了 LDA,但在发布更新之前没有清理注册表。

您可以将其粘贴到批处理文件中并以管理员身份运行它,或者只需打开管理员命令提示符并将其粘贴到其中即可快速删除该条目。

echo Start 
echo # 
echo ######################## Default dirctory for x86 x64 ######################## 
echo # 
echo this command is default system32 directory for x86 OS or x64 OS 
cd %windir% & cd system32 
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /v "Logitech Download Assistant" /f 
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Logitech Download Assistant" /f 
echo # 
echo ######################## Change the dirctory for x64 ######################## 
echo # 
echo this command is x86 application's registry for x64 OS 
cd %windir% & cd syswow64 
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /v "Logitech Download Assistant" /f 
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Logitech Download Assistant" /f 
echo End

我找到了上面的代码这里

答案2

  • 按以下方式运行任务管理器CtrlAltDel
  • 启动标签
  • 找到LogiLDA并右键单击它,然后单击禁用

重新启动后,问题消失。

答案3

我升级到 8.1 后遇到了这个问题,而且我确实有一个罗技鼠标。

  • 我导航到 System32 文件夹,没有看到要删除的文件。
  • 插入鼠标的 USB 加密狗并运行硬件安装程序。
  • 我重新启动并检查以确保它不会再次发生,并且错误已消失。

答案4

如果您不方便手动更新注册表,请使用 Autoruns (http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx)删除该条目(转到“登录”选项卡,然后在 HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run 下应该有一个您想要取消选中或删除的 Logitech 下载助手条目)。

相关内容