SD Card Install

B

Beebs

I've asked this question before without a response, so I'll try again.
I need it so that when a user drops the cab file in a folder on their
SD card, it extracts exactly where they put it, not to the default
/Program Files/Application Name as Visual Studio wants it. Is there
any way to configure this to work in the .inf and then rebuild it, or
how can I go about this type of dilemma?
 
I

Ilya Tumanov [MS]

Installation folder is defined by InstallDir variable in [CEStrings]
sections. It can be redirected to storage card using standard WCELOAD
capabilities.

You can check if installation folder is on storage card from setup DLL and
terminate installation with error message if it's not.

You can not, however, install to the folder your CAB is in because there's
no way to set InstallDir to that location.


Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
 
B

Beebs

Now I know what I basically need can be done...does anyone out there
have a link or a sample they could provide. I don't really know where
to start as I've never done anything like this before.

Installation folder is defined by InstallDir variable in [CEStrings]
sections. It can be redirected to storage card using standard WCELOAD
capabilities.

You can check if installation folder is on storage card from setup DLL and
terminate installation with error message if it's not.

You can not, however, install to the folder your CAB is in because there's
no way to set InstallDir to that location.


Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).

Beebs said:
I've asked this question before without a response, so I'll try again.
I need it so that when a user drops the cab file in a folder on their
SD card, it extracts exactly where they put it, not to the default
/Program Files/Application Name as Visual Studio wants it. Is there
any way to configure this to work in the .inf and then rebuild it, or
how can I go about this type of dilemma?
 
I

Ilya Tumanov [MS]

If you looking for setup DLL sample, please see this:
http://www.codeproject.com/ce/setupdll.asp

Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).

Beebs said:
Now I know what I basically need can be done...does anyone out there
have a link or a sample they could provide. I don't really know where
to start as I've never done anything like this before.

Installation folder is defined by InstallDir variable in [CEStrings]
sections. It can be redirected to storage card using standard WCELOAD
capabilities.

You can check if installation folder is on storage card from setup DLL and
terminate installation with error message if it's not.

You can not, however, install to the folder your CAB is in because there's
no way to set InstallDir to that location.


Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no
rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).

Beebs said:
I've asked this question before without a response, so I'll try again.
I need it so that when a user drops the cab file in a folder on their
SD card, it extracts exactly where they put it, not to the default
/Program Files/Application Name as Visual Studio wants it. Is there
any way to configure this to work in the .inf and then rebuild it, or
how can I go about this type of dilemma?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top