From: Daniel Kim on
Hi

I wrote an application which download a CAB file from the internet and use
ShellExecuteEx() to install it.
My question is, is there any way to find out if this CAB installation was
successful or in whatever state ?
I thought that the CAB installer may send out some kind of broadcast message
after completion of process - whether it is successful or not -, but so far I
couldn't find such message.
Any advice?

Thank you.

With BR,
Daniel Kim
From: Peter Foot on
There isn't a standard message. You can write a setup dll to build into your
cab file and then have that do something on install_exit. For example
broadcast a windows message, signal a named event etc

Peter

--
Peter Foot
Microsoft Device Application Development MVP
peterfoot.net | appamundi.com | inthehand.com
APPA Mundi Ltd - software solutions for a mobile world
In The Hand Ltd - .NET Components for Mobility

"Daniel Kim" <DanielKim(a)discussions.microsoft.com> wrote in message
news:8313EE60-9847-42D1-B5A4-22972FE1E9FA(a)microsoft.com...
> Hi
>
> I wrote an application which download a CAB file from the internet and use
> ShellExecuteEx() to install it.
> My question is, is there any way to find out if this CAB installation was
> successful or in whatever state ?
> I thought that the CAB installer may send out some kind of broadcast
> message
> after completion of process - whether it is successful or not -, but so
> far I
> couldn't find such message.
> Any advice?
>
> Thank you.
>
> With BR,
> Daniel Kim

From: Daniel Kim on
Hi Peter

I got it. Thank you for the advice!

With BR,
Daniel Kim

"Peter Foot" wrote:

> There isn't a standard message. You can write a setup dll to build into your
> cab file and then have that do something on install_exit. For example
> broadcast a windows message, signal a named event etc
>
> Peter
>
> --
> Peter Foot
> Microsoft Device Application Development MVP
> peterfoot.net | appamundi.com | inthehand.com
> APPA Mundi Ltd - software solutions for a mobile world
> In The Hand Ltd - .NET Components for Mobility
>
> "Daniel Kim" <DanielKim(a)discussions.microsoft.com> wrote in message
> news:8313EE60-9847-42D1-B5A4-22972FE1E9FA(a)microsoft.com...
> > Hi
> >
> > I wrote an application which download a CAB file from the internet and use
> > ShellExecuteEx() to install it.
> > My question is, is there any way to find out if this CAB installation was
> > successful or in whatever state ?
> > I thought that the CAB installer may send out some kind of broadcast
> > message
> > after completion of process - whether it is successful or not -, but so
> > far I
> > couldn't find such message.
> > Any advice?
> >
> > Thank you.
> >
> > With BR,
> > Daniel Kim
>