Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > appname.exe.manifest, DLL dependencies

Reply
Thread Tools Display Modes

appname.exe.manifest, DLL dependencies

 
 
shalayka@gmail.com
Guest
Posts: n/a

 
      06-28-2007
Hello,

I'm trying to see if something like this is possible:

1) .\appname.exe requires foo.dll
2) foo.dll exists in C:\windows and in .\lib\
3) I would like appname.exe to use .\lib\foo.dll instead of C:\windows
\foo.dll

I have tried using a manifest file, but I don't know if what I'm
trying to achieve is possible.

The example manifest file I have is .\appname.exe.manifest, and
contains:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1"
manifestVersion="1.0">
<assemblyIdentity type="win32" name="appname" version="6.0.0.0"
processorArchitecture="x86">
<file name="foo.dll" sourceName="foo.dll" sourcePath=".\lib"
importPath=".\lib">
</assembly>

The only other idea that I have is to dynamically link to the DLL from
within appname.exe, but I would rather not recompile if necessary.

Thank you for any information that you can provide.

- Shawn

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
'MSINET.OCX' OR ONE OF ITS DEPENDENCIES NOT CORRECTLY REGISTERED PERCY Windows Vista General Discussion 13 11-08-2008 07:29 PM
MSINET.OCX dependencies Bill Kandler Windows Vista General Discussion 2 02-20-2008 08:43 PM
Component ‘MSINET.OCX’ or one of its dependencies not correctly re Rob Windows Vista Performance 0 11-21-2007 03:55 PM
.EXE.manifest ms curly Windows Vista Installation 3 11-05-2007 08:13 AM
Manifest not working G. Plante Windows Vista Security 3 02-26-2007 04:03 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59