Results 1 to 15 of 15

Thread: Deploying on Pocket PC

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Location
    South Africa
    Posts
    123

    Deploying on Pocket PC

    Hi Guys,

    I have an application that runs on a Pocket PC, I'm curently deploying to the device using .Net, the problem is if the the client requires updates then deploying would be a problem(we cant give them .Net or the source code).

    How can I create a package that would install on the device?
    Any 1 have any experience and suggestions deploying on Pocket Pc's - need advice.

    Thanks
    Beware of the Dog

  2. #2
    Member
    Join Date
    Feb 2005
    Posts
    62

    Re: Deploying on Pocket PC

    either we can copy cab file and run it on device or create a msi file for self deployment/installation.

    Beware: when you want to copy cab files, you need to select appropriate CAB file for you device precessor...its important

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Location
    South Africa
    Posts
    123

    Re: Deploying on Pocket PC

    How can I create an msi file that would allow me to deploy on the device?
    Beware of the Dog

  4. #4
    Member
    Join Date
    Feb 2005
    Posts
    62

    Re: Deploying on Pocket PC

    there are few links for help

    1. http://www.pocketpcdn.com/articles/ezsetup.html
    2. http://www.codeproject.com/netcf/Pac...ployingPPC.asp
    3. there is one article in MSDN website... search site for pocket pc setup file

  5. #5

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Location
    South Africa
    Posts
    123

    Re: Deploying on Pocket PC

    Thanks alot, i'm going to look into these apps...will let you know if it works.
    Beware of the Dog

  6. #6
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Deploying on Pocket PC

    if you use opennetcf's desktop.communction you can create your own application that will copy the cab to the device and launch the cab file then all the user has to do is hit ok on the device and the application will be installed..... check it out
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  7. #7

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Location
    South Africa
    Posts
    123

    Re: Deploying on Pocket PC

    Hi

    I've tried the apps, the 1 from codeproject - cant get it to work, I got very far with the ezsetup,its very easy to use but I cant get it to include other files - have you used it?

    My project requires sqlce.ppc3.arm.CAB, I included it in the ini file but it still doesnt install any idea how I can do this

    Thanks for all the help
    Beware of the Dog

  8. #8

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Location
    South Africa
    Posts
    123

    Re: Deploying on Pocket PC

    opennetcf's desktop.communction seems complicated - really strapped for time, theres not much help on it - How do you use it?
    Beware of the Dog

  9. #9
    Fanatic Member
    Join Date
    Oct 2000
    Location
    Reading, UK
    Posts
    870

    Re: Deploying on Pocket PC

    Hi,
    I've just created my first pocket pc application and created an .msi installation file for it. I also had to include an extra file, and so add the necessary lines to the ini file. What lines did you add?

    I stumbled through quite a few problems with the creation of the .msi file so am pretty confident I can help

    Cheers
    Nick
    www.vb-tech.com
    .Net Freelance Development
    http://weblog.vb-tech.com/nick
    My blog

  10. #10

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Location
    South Africa
    Posts
    123

    Re: Deploying on Pocket PC

    This is the Cabfiles section from my install.ini file

    CabFiles = MyApp_PPC.ARM.CAB,OpenNETCF.SDF.PPC3.ARM.CAB,symbol.all.arm.cab,sqlce.ppc3.arm.CAB

    MyApp_PPC.ARM.CAB is the only file that installs, after that the installation(PocketPc) tells me that the remainder of the files are required.

    My understanding is that all cab files specified in that section will be installed - am i right?

    So what do you think?

    Thanks
    Beware of the Dog

  11. #11
    Fanatic Member
    Join Date
    Oct 2000
    Location
    Reading, UK
    Posts
    870

    Re: Deploying on Pocket PC

    no it's not that simple i don't think.

    unfortunately my .net cf work is at home. I'll have a look at it later and let you know.
    www.vb-tech.com
    .Net Freelance Development
    http://weblog.vb-tech.com/nick
    My blog

  12. #12
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: Deploying on Pocket PC

    i wrote a nice application that allows the user to select a folder on a server where the cab files are...then its copies these to the device and launches the installer for each cab
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  13. #13
    Fanatic Member
    Join Date
    Oct 2000
    Location
    Reading, UK
    Posts
    870

    Re: Deploying on Pocket PC

    when i came round to creating the .msi i was suprised and disappointed how difficult it seemed, and how little info there was out there. As MS are pushing Smart Clients and CF a bit now, hopefully they will come up with an easier way to install the applications on devices soon.
    www.vb-tech.com
    .Net Freelance Development
    http://weblog.vb-tech.com/nick
    My blog

  14. #14

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Location
    South Africa
    Posts
    123

    Re: Deploying on Pocket PC

    I found a piece of sofware call NSIS, its available free from null soft, it uses a scripting language to build an installer. Seems to be doing the job for now.

    I also want to know if its possible to combine multiple cab files into 1 cab file?

    Thanks
    Beware of the Dog

  15. #15

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Location
    South Africa
    Posts
    123

    Re: Deploying on Pocket PC

    Now it does'nt work anymore! got really far with it.

    Is there anything out there that will work?
    Beware of the Dog

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width