更新到 Windows 8.1 后丢失 LogiLDA.dll

use*_*160 31 windows windows-8 windows-8.1

将 Windows 8 更新到 Windows 8.1 后,我在启动时收到错误消息。

它说:

There was a problem starting C:\Windows\System32\LogiLDA.dll
The specified module could not be found.
Run Code Online (Sandbox Code Playgroud)

问题是什么?或者我该如何解决这个问题?

我有一台华硕 Ultrabook UX31A。

小智 48

  • 按运行任务管理器 CtrlAltDel
  • 转到启动选项卡
  • 找到LogiLDA,右键单击它,然后单击禁用

重新启动后,问题就消失了。

  • 比更改注册表要好得多。 (4认同)

小智 16

好的,从我所看到的,您可以删除 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
Run Code Online (Sandbox Code Playgroud)

我在这里找到了上面的代码。