error code 0x80004005
記錄一個小問題。
在Win7系統(tǒng)上裝一個軟件時失敗,提示2個DLL沒有注冊成功。
于是準備手動注冊。
運行
The module "xxx.dll" was loaded but the call to DllRegisterServer failed with error code 0x80004005.
網(wǎng)上搜索一番后,找到如下地址
抱著姑且一試的想法,寫了個cmd文件,右鍵run as administrator后,居然真的注冊成功了!
看來Win7系統(tǒng)真的很安全,就算是管理員,也得來個run as administrator后才能做一些事,是在向sudo學習么?
在Win7系統(tǒng)上裝一個軟件時失敗,提示2個DLL沒有注冊成功。
于是準備手動注冊。
運行
cd C:\WINDOWS\system32\
regsvr32 xxx.dll
后出現(xiàn)如下錯誤:regsvr32 xxx.dll
The module "xxx.dll" was loaded but the call to DllRegisterServer failed with error code 0x80004005.
網(wǎng)上搜索一番后,找到如下地址
http://forums.cnet.com/7723-12546_102-237219.html
其中有條說run as administrator,這是權(quán)限問題,不過我登陸的就是管理員賬號,應該不存在這樣的問題。抱著姑且一試的想法,寫了個cmd文件,右鍵run as administrator后,居然真的注冊成功了!
看來Win7系統(tǒng)真的很安全,就算是管理員,也得來個run as administrator后才能做一些事,是在向sudo學習么?