Including .net cf 2.0 with Custom Installer

G

Guest

Having a problem installing the .net cf 2.0 along with my PPC application.

I have 2 setup.ini files, Setup.ini and Setup2.ini. The following is what
they look like :

SETUP.INI

[ceAppManager]
Version = 1.0
Component = QuantifiSetup

[QuantifiSetup]
Description = Quantifi
Uninstall = Quantifi
CabFiles = QuantifiSetup.cab

SETUP2.INI

[ceAppManager]
Version = 1.0
Component = DotNet20

[DotNet20]
Description = DotNet20
Uninstall = DotNet20
CabFiles = NETCFv2.ppc.armv4


I have the following code executing the CustomInstaller.dll that I thought
would run the cabs:

Dim iniPath As String = GetIniPath()
Process.Start(ceAppPath, iniPath)

Dim ini2Path As String = GetIni2Path()
Process.Start(ceAppPath, ini2Path)


What happens is this :

The PPC application file gets copied and run on the device. I see a shortcut
generated also.. But the .net cf 2.0 cab copies over, but does not run on the
device.

Do I have the Custom Installer set up right? Can anyone please help?

Thanks
 
I

Ilya Tumanov [MS]

You might want to wait for the first installation to complete before
starting next one.

Or register all INIs and then install, see MSDN on how to do it.

Also your Uninstall entry seems to be invalid and probably won't work.


--
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).
 
G

Guest

Thank you Ilya. I will try that.

Ilya Tumanov said:
You might want to wait for the first installation to complete before
starting next one.

Or register all INIs and then install, see MSDN on how to do it.

Also your Uninstall entry seems to be invalid and probably won't work.


--
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).

Trafalgar said:
Having a problem installing the .net cf 2.0 along with my PPC application.

I have 2 setup.ini files, Setup.ini and Setup2.ini. The following is what
they look like :

SETUP.INI

[ceAppManager]
Version = 1.0
Component = QuantifiSetup

[QuantifiSetup]
Description = Quantifi
Uninstall = Quantifi
CabFiles = QuantifiSetup.cab

SETUP2.INI

[ceAppManager]
Version = 1.0
Component = DotNet20

[DotNet20]
Description = DotNet20
Uninstall = DotNet20
CabFiles = NETCFv2.ppc.armv4


I have the following code executing the CustomInstaller.dll that I thought
would run the cabs:

Dim iniPath As String = GetIniPath()
Process.Start(ceAppPath, iniPath)

Dim ini2Path As String = GetIni2Path()
Process.Start(ceAppPath, ini2Path)


What happens is this :

The PPC application file gets copied and run on the device. I see a
shortcut
generated also.. But the .net cf 2.0 cab copies over, but does not run on
the
device.

Do I have the Custom Installer set up right? Can anyone please help?

Thanks
 

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