vote up 0 vote down star
1

I have an application written using VS2005 in C# targeting the Compact Framework 2.0 SP2. As part of the solution, I have CAB deploy project which deploys to the device without a problem. What I can't do is create a shortcut to my application on the devices desktop.

I have spent several hours reading various bits of documentation (why is the search at the MSDN site so bad?), followed the instructions but no joy.

What I've done is:

  • Add the "Windows Folder" node to the File System
  • Created a folder underneath that named "Desktop"
  • Created a shortcut to the Applications Primary Output and placed that in the "Desktop" folder

What am I missing?

flag
This question was downvoted as part of a childish revenge downvote on 1st June. Nice one. – Mitch Wheat Jun 1 at 10:24
1  
downvoting a valid question ruins it for everyone +1 – Makach Jun 8 at 5:31
@ Makach : it was a case of revenge downvoting; someone did not like my answer to another question, so they downvoted 6 of my answers/questions (!) – Mitch Wheat Jun 8 at 5:49
It seems this question is a favorite for 'punishments votes. Thx – Mitch Wheat Sep 26 at 7:09
That's funny, you revenge voted me down just the other day, Mitch (by the way this wasnt me who downvoted u, i wouldn't stoop to that) – cbp Sep 28 at 6:27

7 Answers

vote up 3 vote down check

A Windows CE shortcut (CE of any version or flavor, including WinMo) uses a ASCII-text based file. They are in the form:

{XX}#{PATH}

Where:

  • XX = the number of the characters in the path, to include the number a # sign
  • PATH = fully qualified path to the file to run

For example:

20#\Windows\calc.exe

The other option is to use the CEShortcuts section of the INF file used to generate your CAB.

In the [DefaultInstall] section of the INF, set the CEShortcuts to a section name of your choice (something like "Shortcuts"), then add that section with your shortcut descriptor. MSDN details it here.

MSDN also has an article on creating a deployment project to generate the cab (available here), but in all honesty, the project capabilities are limited and IMO the tool just generally sucks. To this day we still use direct calls to CABWIZ (which also sucks, but it's our only choice) with hand-written INF files.

link|flag
vote up 0 vote down

The Simplest way is to go into the Application folder in Cab Project(setup), right click on your EXE Program(Application exe that you want to make shortcut for) and chose "Create Shortcut to" and move that file to any folder you want such as "Start Menu Folder"

link|flag
vote up 0 vote down

Maybe a little late, but just for the record, it's really simple:

http://www.innovation-hut.com/Articles/CF/Deploying%20a%20Smart%20Device%20Applications/DeployingaSmartDeviceApp.aspx

(Check Figure 6)

link|flag
This is not a solution to creating a shortcut on the desktop. Thanks for the effort though. – Coda Mar 16 at 1:39
vote up 0 vote down

Can someone please post a sample Inf file for installing to the desktop? I've tried everything in the post (inf method) and nothing works.

Thanks in advance.

link|flag
vote up 0 vote down

Hey, Assuming that you use Windows Mobile (5.0 or 6.x) you could use that syntax to create a file as a shourtcut(*,lnk):

SHORTCUT = XX#"\Program Path..."?\Icon File Path...,-Icon Number

Where:

XX = Count of characters to be included in arguments after the Program Path to process. Program Path = Target exe file location. Icon File Path = If exe file does not contain an icon image or you want to use another, this is the location of the file containing the icon image. Icon number = Index of icon image within the file, it starts with 0.

Ex: 86#"\Storage Card\Logical Sky CEdit\cedit.exe"?\Storage Card\Logical Sky CEdit\cedit.exe,-101

I had test it, and works fine.

link|flag
vote up 1 vote down

Mitch: create the LNK file as before, but give it a name like "shortcut.lnkx" (note the "x" on the end). You can then add it to the "Desktop" folder in your CAB project. Once the file is added, change the TargetName property to "shortcut.lnk" and compile. I think this will work.

link|flag
vote up 0 vote down

I assume that you're working with a "Smart Device CAB Project"? I don't think this project creates shortcuts in the correct manner for Windows CE 4.2. I think you can download an SDK from Microsoft that after installation will show you something like "Windows CE CAB Project" as a project option.

I think you can do this manually, though. A Windows CE shortcut is a file with a *.lnk extension, so if you want a shortcut labeled "My Application", create a text file on your PC named "My Application.lnk". The file's contents should be:

46#\Program Files\My Application\MyApplication.exe (the # should be the full path length)

or whatever full path your application has on the Windows CE device.

In your CAB project, continue with adding the "Windows" folder and then the "Desktop" folder as you were. In the Desktop folder, right-click and add the LNK file that you created. You may have to soft-reset the device in order to have the shortcut show up after installation.

link|flag
I did as you suggested, but when I try to add it to the Desktop folder, VS complains: "Cannot resolve this link. This file may not be a shortcut." – Mitch Wheat Sep 28 '08 at 13:21
I did say "I think" a lot. Are you running Pocket PC 2003 or Windows Mobile, or are you actually running the old Windows CE 4? – MusiGenesis Sep 28 '08 at 14:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.