LogiLDA.dll missing after updating to Windows 8.1

31

8

After updating my Windows 8 to Windows 8.1, I received an error on start-up.

It says:

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

What is the problem? Or how can I fix this?

I have an Asus Ultrabook UX31A.

user2076160

Posted 2013-10-17T14:45:40.327

Reputation: 311

1I'm getting this too on a Surface Pro. From the google searches I've done it seems to be part of logitech download assistant. I have used a logitech mouse with my Surface Pro but I've never installed any of the logitech software so I don't know why it's requesting that file. – None – 2013-10-17T15:15:11.767

This DOES come with windows 8.1 update. I don't have any Logitech devices on my HP laptop and still got this annoying message after updating windows 8 to 8.1. – None – 2013-10-18T14:50:55.340

Answers

16

Ok, from what I've seen you can just remove the registry entry for the dll. I tried it already and nothing seems to be messed up with the file missing. It's almost as if someone at MS had LDA installed and didn't bother to clean up the registry before publishing the update.

You can paste this into a batch file and run it as administrator or just open an administrator command prompt and paste it into there to quickly get rid of the entry.

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

I found the code above here.

OFB

Posted 2013-10-17T14:45:40.327

Reputation:

1The registry key did not come from the 8.1 update. More likely, you've used a Logitech mouse (or wireless dongle) in the past which installed the download assist. – dlux – 2013-10-17T21:31:31.653

That's true, but it's definitely connected to the 8.1 update (because it happened to me too). Presumably the update wiped out the directory holding the dll. – Adam – 2013-10-29T23:09:35.017

47

  • Run Task manager by pressing CtrlAltDel
  • Go to Startup tab
  • Find LogiLDA, right click on it and click Disable

After a restart, the problem is gone.

Martin Bumba

Posted 2013-10-17T14:45:40.327

Reputation:

4MUCH better than changing the Registry. – Joshua – 2013-10-22T22:07:13.827

I agree. No need to run around willy nilly dropping registry entries, even for Logitech devices that could very well be fine otherwise. Also, this worked for me, too. Was a product of the Windows 8.1 upgrade. – dudewad – 2013-11-14T01:56:52.893

2

I had this issue after upgrade to 8.1, and I do have a Logitech mouse.

  • I navigated to the System32 folder and didn't see the file to delete it.
  • Plugged in the USB dongle for the mouse and the hardware installation set ran.
  • I did a reboot to check and make sure it didn't happen again, and the error is gone.

Chelsea Hupper

Posted 2013-10-17T14:45:40.327

Reputation: 21

This matches an answer posted on Microsoft's community support site -- and it worked for me. I only needed to insert the dongle long enough for the driver installation to occur (I normally use it with a different computer).

– nobar – 2014-11-13T06:39:51.620

Just had to do this again after a software update in Windows 10. The solution still works. – nobar – 2016-10-21T21:23:27.867

1

I just called Logitech corporate office and they helped me disable the file without uninstalling it which could disable other files on the computer. Here is what he told me to do. It's a simple fix.

Go to either your start up and search box or go to run

Type in msconfig.

In the System Configuration window click on the start up tab.

Open Task Manager or if it in in the current window under start up you will see the LogiLDA name and then click disable.

Restart up windows and when it comes up your error message shouldn't show up

Long Mullet

Posted 2013-10-17T14:45:40.327

Reputation: 19

0

If you are not comfortable updating the registry manually, use Autoruns (http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx) to delete the entry (go to Logon tab, then under HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run should be a Logitech Download Assistant entry that you want to uncheck or delete).

Danpcfix

Posted 2013-10-17T14:45:40.327

Reputation: 1

0

Problem seems to be related to a driver update of the LDA module in Windows 8.1. Go to Computer management -> Human-Interface devices (HID)-> Logitech Download Assistant -> Rollback driver (to restore the last driver version) and the problem disappears.

Marco

Posted 2013-10-17T14:45:40.327

Reputation: 1