Questions tagged [dll]

Dynamic-link library (also written without the hyphen), or DLL, is Microsoft's implementation of the shared library concept in the Microsoft Windows and OS/2 operating systems. In the broader sense of the term, any data file with the same file format can be called a resource DLL.

Dynamic-link library (also written without the hyphen), or DLL, is Microsoft's implementation of the shared library concept in the Microsoft Windows and OS/2 operating systems. These libraries usually have the file extension DLL, OCX (for libraries containing ActiveX controls), or DRV (for legacy system drivers). The file formats for DLLs are the same as for Windows EXE files — that is, Portable Executable (PE) for 32-bit and 64-bit Windows, and New Executable (NE) for 16-bit Windows. As with EXEs, DLLs can contain code, data, and resources, in any combination. In the broader sense of the term, any data file with the same file format can be called a resource DLL. Examples of such DLLs include icon libraries

75 questions
2
votes
1 answer

Error loading dll from an executable on Windows Server 2008

I received an executable which uses .NET to load a dll and perform some database migration tasks. When I tried to run it, I was greeted with the following error: !!! System.IO.FileLoadException: Could not load file or assembly…
lmsurprenant
  • 141
  • 5
2
votes
4 answers

Com DLL becomes unregistered at random

We have a VB6 application that uses a COM object to communicate with an email package. The app runs autonomously and every once in a blue moon the COM DLL seems to become unregistered. A quick call to RegSvr32 and the system is back to happy. We…
Dan Blair
  • 141
  • 3
  • 5
2
votes
1 answer

.DLL error when installing firmware for Dell PE2900 PERC 5/i RAID

I'm installing a new RAID firmware version (2.5.0) for a Dell PE2900 which has a PERC 5/i RAID setup. When I run the installer, it gives the message "The procedure entry point RegDeleteKeyExA could not be located in the dynamic link library…
DaWolfman
  • 41
  • 1
  • 3
2
votes
1 answer

Find dll being accessed by RegOpenKey in Process Monitor

I'm trying to find out which dll file is causing my problems. I'm using Process Monitor. It lists the Operation RegOpenKey and an error "NAME NOT FOUND" for the result, but doesn't tell me what that name is. I looked at the column names I could…
Lance Roberts
  • 401
  • 3
  • 12
  • 29
1
vote
0 answers

Is there a Windows Command Line utility or DLL to convert URL text to clickable Hyperlinks in PDF files?

I'm editing an ASP Classic application that uses a DLL called PDFLib to import existing PDF files, make modifications, and generate new PDF files. The problem is that any URLs that were in the source PDF are not hyperlinks in the generated PDF. The…
scottkeen
  • 19
  • 1
1
vote
0 answers

Windows Credential Provider - HTTP Request to authorize from third party

I have created a custom credential provider, but don't know how to authenticate this user from some other server. I now need to send HTTP Request to the server with the password entered by user, and that server will return AD username/password. If…
Priyanka
  • 111
  • 2
1
vote
1 answer

error registering dll in server 2012

I am trying to register a 32 bit com.dll in sysWOW64 C:\Windows\SysWOW64>regsvr32 xxx.dll i have copied the dll in both the folders SysWOW64 and System32 it shows error like The module "xxx.dll" failed to load. Make sure the binary is stored…
Ammu
  • 13
  • 1
  • 3
1
vote
0 answers

Windows Server 2012 R2 Cannot register certain DLLs

I'm having an issue with a Windows Server 2012 R2 server I've inherited. It started when I was trying to figure out a problem with VSS which didn't allow it to take a backup. One of the suggestions was to un-register and re-register some DLLs;…
Theo
  • 11
  • 3
1
vote
1 answer

How do I setup a 32-bit DLL on 64-bit Windows Server 2012 R2 for Powershell?

I am in the process of upgrading some dated VBScript automation for Powershell on one of our servers running Windows Server 2012 R2. Currently, I'm working on replacing a script that requires the creation of a COM object from a third-party 32-bit…
1
vote
1 answer

Is there a minimal php5ts.dll?

I've completed my web app and am using mongoose to serve the php pages. The whole app & mongoose is less then 2MB. The php5ts.dll is almost 5MB so that really adds bloat. Also, my app is very minimal so I don't need many of the php features, ie.…
shaiss
  • 337
  • 2
  • 6
  • 20
1
vote
1 answer

unable to load dll 'olepro32.dll' the specified module could not be found

When running a custom windows forms application, I get this error, unable to load dll 'olepro32.dll' the specified module could not be found. From some searching, this seems to be a Windows system file. Could this file really become corrupted or…
Jess
  • 169
  • 1
  • 8
1
vote
2 answers

regsvr32 error: DllRegisterServer entry point was not found

I'm triying to register "Interop.Microsoft.Office.Interop.Excel.dll" in my Windows 2003 Server but when execute the regsvr32 command i have this error: "Interop.Microsoft.Office.Interop.Excel.dll was loaded, but the DllRegisterServer entry point was…
vfportero
  • 115
  • 1
  • 1
  • 6
1
vote
2 answers

Program Missing DLLS

Recently one of the programs on my server (PWsvr.exe) has stopped working. I opened the program in dependency walker to see if it is missing any required files, and dependency Walker said that GPSVC.dll, IESHIMS.DLL, MF.DLL, MFPLAT.DLL, and…
1
vote
0 answers

DllRegisterServer in C:\WINNT\system32\inetsrv\inetmgr.dll failed

Upon opening the Internet Information Services Manager I get the following error "MMC could not create the snap-in" Upon looking around I found that running the following command regsvr32 %windir%\system32\inetsrv\inetmgr.dll Should resolve the…
BaconJuice
  • 111
  • 2
1
vote
1 answer

How to install CDO-NTS on 64-bit windows 2003

I have a legacy application that makes use of the old CDONTS mail object that I'm trying to move to a new server, which happens to be running the 64-bit version of Windows 2003. About a million times, I have installed it on other (32-bit) instances…
DrFredEdison
  • 261
  • 4
  • 11