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。
小智 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)
我在这里找到了上面的代码。
归档时间: |
|
查看次数: |
232435 次 |
最近记录: |