1

こんにちは、Windows7 Home Premium で FileSystemObject を使用する際に問題が発生しています。「実行時エラー -2147319779 オートメーション エラー オブジェクト ライブラリが登録されていません」というエラー メッセージが表示されます。 「c:\windows\system32\scrrun.dll」と表示されますが、それでもエラーが表示されます。

Set Diretorio = FSO.GetFolder(DiretorioDinamico)'The error occurs here!
4

1 に答える 1

0

I've got the same issue with bad registration of some common components installed on syswow64, among them the mscomctl.ocx. After searching for and not found a solution, I derived one that solved the problem. So, the only way to solve was:

  1. Unregister the mscomctl.ocx (with elevated privilegies)
  2. Disabled the Internet Explorer (version 10 in my case)
  3. Reboot the system
  4. Register the mscomctl.ocx (Always elevated)
  5. Enabled IE10 again

It seems to be IE10 the problem. Since I disabled it, I could finally correctely register the common controls.

I hope (despite my bad english) help someone who is facing the same problem.

于 2013-04-01T17:14:11.227 に答える