Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T15:31:31Z http://stackoverflow.com/feeds/question/145440 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005 0 Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) Mitch Wheat 2008-09-28T07:56:21Z 2009-07-01T09:55:05Z <p>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.</p> <p>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. </p> <p>What I've done is:</p> <ul> <li>Add the "Windows Folder" node to the File System</li> <li>Created a folder underneath that named "Desktop"</li> <li>Created a shortcut to the Applications Primary Output and placed that in the "Desktop" folder</li> </ul> <p>What am I missing?</p> http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005/145478#145478 0 Answer by MusiGenesis for Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) MusiGenesis 2008-09-28T08:23:57Z 2008-09-28T15:01:41Z <p>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.</p> <p>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:</p> <blockquote> <p>46#\Program Files\My Application\MyApplication.exe (the # should be the full path length)</p> </blockquote> <p>or whatever full path your application has on the Windows CE device.</p> <p>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.</p> http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005/145979#145979 3 Answer by ctacke for Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) ctacke 2008-09-28T14:45:11Z 2008-09-28T14:45:11Z <p>A Windows CE shortcut (CE of any version or flavor, including WinMo) uses a ASCII-text based file. They are in the form:</p> <p>{XX}#{PATH}</p> <p>Where:</p> <ul> <li>XX = the number of the characters in the path, to include the number a # sign</li> <li>PATH = fully qualified path to the file to run</li> </ul> <p>For example:</p> <p>20#\Windows\calc.exe</p> <p>The other option is to use the CEShortcuts section of the INF file used to generate your CAB.</p> <p>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 <a href="http://msdn.microsoft.com/en-us/library/ms938387.aspx" rel="nofollow">details it here</a>.</p> <p>MSDN also has an article on creating a deployment project to generate the cab (<a href="http://msdn.microsoft.com/en-us/library/aa446504.aspx" rel="nofollow">available here</a>), 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.</p> http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005/146088#146088 1 Answer by MusiGenesis for Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) MusiGenesis 2008-09-28T15:29:30Z 2008-09-28T15:29:30Z <p>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. <strong>I think</strong> this will work.</p> http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005/377749#377749 0 Answer by neomorfeo for Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) neomorfeo 2008-12-18T12:56:52Z 2008-12-18T12:56:52Z <p>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):</p> <p>SHORTCUT = XX#"\Program Path..."?\Icon File Path...,-Icon Number</p> <p>Where:</p> <p>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.</p> <p>Ex: 86#"\Storage Card\Logical Sky CEdit\cedit.exe"?\Storage Card\Logical Sky CEdit\cedit.exe,-101</p> <p>I had test it, and works fine.</p> http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005/378549#378549 0 Answer by Coda for Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) Coda 2008-12-18T17:22:34Z 2008-12-18T17:22:34Z <p>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.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005/625375#625375 0 Answer by Jeudy for Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) Jeudy 2009-03-09T08:23:17Z 2009-03-09T08:23:17Z <p>Maybe a little late, but just for the record, it's really simple:</p> <p><a href="http://www.innovation-hut.com/Articles/CF/Deploying%20a%20Smart%20Device%20Applications/DeployingaSmartDeviceApp.aspx" rel="nofollow">http://www.innovation-hut.com/Articles/CF/Deploying%20a%20Smart%20Device%20Applications/DeployingaSmartDeviceApp.aspx</a></p> <p>(Check Figure 6)</p> http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005/1068289#1068289 0 Answer by Wael Dalloul for Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) Wael Dalloul 2009-07-01T09:55:05Z 2009-07-01T09:55:05Z <p>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"</p>