CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Guest

    Unloading oleaut32.dll

    How do you delete oleaut32.dll from windows95? It tells me its in use when I try to delete it from explorer. When I use my DLL monitor I do not see it. Is there a way to unload it?

    Thanx...


  2. #2
    Guest

    Re: Unloading oleaut32.dll

    Boot in DOS mode. Replace the file.


  3. #3
    Guest

    Re: Unloading oleaut32.dll

    Deleting this file would be a bad idea, since some of the windows sub-system depends upon OLE, like Windows Explorer.


  4. #4
    Join Date
    Apr 1999
    Posts
    38

    Re: Unloading oleaut32.dll

    Deleting the file is a bad idea.
    You can unload any dll with the following application. REGSVR32.exe. This is shiped with Windows 95/NT machines.
    Usage
    regsvr32 /u name.dll

    Hope this works out for you.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured