Malcolm Greene wrote on 2010-09-03: 
> Tracy,
> 
>> That is "File System Redirector".
>> http://msdn.microsoft.com/en-us/library/aa384187.aspx
> 
> That's exactly what I was trying to describe!
> 
> Thanks for the follow-up and for sharing your InnoSetup solution
> (clipped to my Innosetup notes).
> 
> Malcolm
> 

Malcolm,

Not a problem.

I have just come across another InnoSetup x64 quirk I want to share. 

Here's the line I have in the script.

   [File]
   Source: "myfile.dll"; DestDir: "{cf32}\myApp\myfile.dll"; Flags: 32bit
sharedfile regserver noregerror;


How I read the help, this should force the myfile.dll to be installed in the
"C:\Program Files (x86)\Common Files\" folder structure. It does not out of
the box. The {cf32} needs to be referenced in code before it gets loaded. If
you do not have a code section it can be fixed quickly with a Check
parameter. 

  Add this to the above line:      Check: RefCF32;

   [Code]
   Function RefCF32(): Boolean;
   Var
     cf32: string;
   Begin
     cf32 := ExpandConstant('{cf32}');
     Result := true;
   End;


Tracy Pearson
PowerChurch Software




_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/001501cb4bb9$d839f120$88add3...@com
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to