To register a dll, you open a command box as admin and then use
regsvr32 /i <dll_name>
.
Tha said, your problem seems to be that you just can't copy the file. Again, open a command box as admin and do the following:
- ren c:\windows\system32\filename.dll c:\windows\system32\filename.old
- copy c:\randomlocation\filename.dll c:\windows\system32\filename.dll
If the file is in use, you should do this in safe mode, command prompt only. If you hose your system, you can delete the dll you copied, and rename the .old back to .dll.
======================================================================

- Copy .dll or .ocx to
c:\windows\system32
- Type
cmd
in Run menu, it will searchcmd.exe
, right click and click Run as Administrator - It will show a prompt at
c:\windows\system32
- Type
regsvr32 ocxname.ocx
to register .ocxortyperegsvr32 dllname.dll
to register .dll
0 Comments