This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- A question about Support Files?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 19, 2010
07:10 PM
A question about Support Files?
Hi All,
I have a question about Advanced Files(DISK1) of Support Files.
I setup a Basic MSI Project and use the Web Type "Install From The Web" and I add some files(for example a.xml and b.xml) into DISK1. But when I download and run the setup.exe from the client I found that it could not access those files(a.xml and b.xml). Are those files downloaded from the server(my PC)? If downloaded, which folder can I find those files? Or is there any API that I can use to access those Support Files?
How does it works?
Can any one help me to do this? Thanks.
ocean
I have a question about Advanced Files(DISK1) of Support Files.
I setup a Basic MSI Project and use the Web Type "Install From The Web" and I add some files(for example a.xml and b.xml) into DISK1. But when I download and run the setup.exe from the client I found that it could not access those files(a.xml and b.xml). Are those files downloaded from the server(my PC)? If downloaded, which folder can I find those files? Or is there any API that I can use to access those Support Files?
How does it works?
Can any one help me to do this? Thanks.
ocean
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 20, 2010
01:44 PM
Hi ocean, as your application is a single isntall, it is unpacked into support area of OS. You can access it, during install, pointing to the target of SUPPORTDIR. Something like:
sFile1 = SUPPORTDIR ^ 'disk1' ^ 'a.xml';
I hope this fix your problem!
rohricht
sFile1 = SUPPORTDIR ^ 'disk1' ^ 'a.xml';
I hope this fix your problem!
rohricht
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 20, 2010
08:46 PM
rohricht wrote:
Hi ocean, as your application is a single isntall, it is unpacked into support area of OS. You can access it, during install, pointing to the target of SUPPORTDIR. Something like:
sFile1 = SUPPORTDIR ^ 'disk1' ^ 'a.xml';
I hope this fix your problem!
rohricht
Thanks for your help rohricht.:)
I'll try to do as you say. Thank you!