[WiX-users] Copying files to System32 subfolders

2008-01-21 Thread Chris Weiss
Is there some special voodoo that needs to occur to copy files into system32 subfolders? I've got the following (paraphrased) component definitions: Directory Id=TARGETDIR Name=SourceDir Directory Id=ProgramFilesFolder Directory Id=INSTALLLOCATION Name=Symyx Directory

Re: [WiX-users] Copying files to System32 subfolders

2008-01-21 Thread Bob Arnson
Chris Weiss wrote: Directory Id='SystemFolder' Name='.' ...[some components]... Directory Id='Spool' SourceName='Spool' Directory Id='prtprocs' SourceName='prtprocs' Directory Id='w32x86' SourceName='w32x86' Component Id=BuEProNT.dll

Re: [WiX-users] Copying files to System32 subfolders

2008-01-21 Thread Kalle Olavi Niemitalo
Chris Weiss [EMAIL PROTECTED] writes: Directory Id='SystemFolder' Name='.' ...[some components]... Directory Id='Spool' SourceName='Spool' If you want that directory to be installed as [SystemFolder]\Spool, you should use Name='Spool' rather than SourceName='Spool'. This

Re: [WiX-users] Copying files to System32 subfolders

2008-01-21 Thread diwakar09
Hi, Try this Directory Id=TARGETDIR Name=SourceDir Directory Id=SystemFolder Name=System_1 LongName=SystemFolder Component Id=C_FL_abc.xyz2 Guid={your guid} File Id=FL_abc.xyz2 Name=abc_1 LongName=abc.xyz Source=source_path\abc.xyz DiskId=1 KeyPath=yes