Google Mail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
multiple cab into one cab-file
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Follow-up To:
Add Cc | Add Follow-up to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers that you hear
 
James levertopf  
View profile   Translate to Translated (View Original)
 More options 29 Oct, 08:24
Newsgroups: microsoft.public.pocketpc.developer, microsoft.public.dotnet.framework.compactframework
From: "James levertopf" <ja...@levertopf.com>
Date: Thu, 29 Oct 2009 09:24:57 +0100
Local: Thurs 29 Oct 2009 08:24
Subject: multiple cab into one cab-file
Hello

Is it possible to create a cab which is containing several cabs, and that
the cab installs these cabs?

Thanks

James


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Paul G. Tobey [ eMVP ]  
View profile   Translate to Translated (View Original)
 More options 29 Oct, 18:52
Newsgroups: microsoft.public.pocketpc.developer, microsoft.public.dotnet.framework.compactframework
From: Paul G. Tobey [eMVP] <paultobey _at_ earthlink _dot_ net>
Date: Thu, 29 Oct 2009 11:52:01 -0700
Local: Thurs 29 Oct 2009 18:52
Subject: RE: multiple cab into one cab-file
That won't happen automatically, no.  The main problem is that you can only
expect one instance of the CAB installer to run at a time and extracting a
contained cab and installing it would require two instances.  If you create a
setup EXE and have it fork off instances of WCELOAD to install each cab, as
they are extracted, you could do this, but my guess is that most people are
not trying to embed CABs within CABs.

Paul T.


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
r_z_a...@pen_fact.com  
View profile   Translate to Translated (View Original)
 More options 31 Oct, 16:03
Newsgroups: microsoft.public.pocketpc.developer, microsoft.public.dotnet.framework.compactframework
From: r_z_aret@pen_fact.com
Date: Sat, 31 Oct 2009 12:03:18 -0400
Local: Sat 31 Oct 2009 16:03
Subject: Re: multiple cab into one cab-file
You might be able to write a setup DLL that installs the "inner" CABs.

On Thu, 29 Oct 2009 09:24:57 +0100, "James levertopf"

<ja...@levertopf.com> wrote:
>Hello

>Is it possible to create a cab which is containing several cabs, and that
>the cab installs these cabs?

>Thanks

>James

-----------------------------------------
To reply to me, remove the underscores (_) from my email address (and please indicate which newsgroup and message).

Robert E. Zaret, eMVP
PenFact, Inc.
20 Park Plaza, Suite 400
Boston, MA 02116
www.penfact.com


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
MagicCab  
View profile   Translate to Translated (View Original)
 More options 2 Nov, 17:44
Newsgroups: microsoft.public.pocketpc.developer, microsoft.public.dotnet.framework.compactframework
From: MagicCab <vg106...@gmail.com>
Date: Mon, 2 Nov 2009 09:44:48 -0800 (PST)
Local: Mon 2 Nov 2009 17:44
Subject: Re: multiple cab into one cab-file
On Oct 29, 1:24 am, "James levertopf" <ja...@levertopf.com> wrote:

> Hello

> Is it possible to create a cab which is containing several cabs, and that
> the cab installs these cabs?

> Thanks

> James

It's a little bit tricky.

A Cab file can contains other CAB files, but the installation needs to
be driven by another process because a Cab Installer is not re-
entrant. So one solution is to install the cab files and a setup
application to a temp location on the device and the Setup.dll of this
cab start a setup application that will launch the Cab installer on
the other cabs sequentially.

Virginie - http://magiccab.tech.officelive.com


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Marc  
View profile   Translate to Translated (View Original)
 More options 9 Nov, 07:54
Newsgroups: microsoft.public.pocketpc.developer, microsoft.public.dotnet.framework.compactframework
From: Marc <M...@discussions.microsoft.com>
Date: Sun, 8 Nov 2009 23:54:01 -0800
Local: Mon 9 Nov 2009 07:54
Subject: RE: multiple cab into one cab-file

Have a look at Pocket PC Installer, www.pocketpcinstaller.com

You can drag and drop your .cabs (including the .net cf cab) and data files
into this app, and it'll make a Desktop and/or PDA installer .exe for you.

As Paul said, you can't run wceload.exe (the program which installs a .cab
file on your device) more than once at a time.

Marc


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christopher Fairbairn [MVP]  
View profile   Translate to Translated (View Original)
 More options 10 Nov, 20:13
Newsgroups: microsoft.public.pocketpc.developer, microsoft.public.dotnet.framework.compactframework
From: "Christopher Fairbairn [MVP]" <christop...@christec.co.nz>
Date: Wed, 11 Nov 2009 09:13:17 +1300
Local: Tues 10 Nov 2009 20:13
Subject: Re: multiple cab into one cab-file
Hi James,

"James levertopf" <ja...@levertopf.com> wrote in message

news:%23PIgNFHWKHA.4592@TK2MSFTNGP06.phx.gbl...

> Is it possible to create a cab which is containing several cabs, and that
> the cab installs these cabs?

As the other posts have suggested, it is possible, but can be a little messy
to configure and setup.

Microsoft have created a sample application which you probably already have
installed as part of your Visual Studio installation
(http://msdn.microsoft.com/en-us/library/bb158796.aspx - Multiple CAB
Install). This may be of help in providing pointers on how to create the
required setup.dll etc.

Hope this helps,
Christopher Fairbairn


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google