1. Home
  2. Knowledge Base
  3. Details about Windows Mobile Shortcuts

Details about Windows Mobile Shortcuts

Shortcuts make it easy for users to launch applications. Shortcut files have .lnk extension and they take up very little storage space. Shortcuts contain information about the application to launch along with any parameter information. They are really handy if predetermined values need to be passed to the application as command line parameters.

How to create a Shortcut on the device

– Run Microsoft ActiveSync on your desktop and establish a connection with the PDA.
– Right-click on the ActiveSync icon on the desktop Windows taskbar and Click Explore. This will bring up a window showing the contents of the Mobile Device folder
– Now go to the folder where the executable resides
– Right-click on the file (say ABC.exe) and a menu pops up. Select Create Shortcut menu item
– This will generate a shortcut (.lnk) file with the name like “Shortcut to ABC.exe”
– You can rename the shortcut to anything that you like
– Move or copy the shortcut if you want it anywhere else on the device

How shortcuts work (Tech stuff for developers)

This section describes the format of a shortcut file. Simply copy the .lnk file to the desktop and open it in your favorite text editor. I use Notepad. The content in the .lnk file will have the following format.

xx#”{APPLICATION_PATH}{OPTIONAL PARAMETERS}”

where xx is the number of characters in the above text excluding xx#.

For example, 18#”Windowsabc.exe”

Here, 18 is the count of characters after pound character (#) and Windowsabc.exe is the target application.

To create a shortcut from your application use SHCreateShortcut API.

Sample Code: (Courtesy MSDN)

BOOL SHCreateShortcutExample()
{
// Create a shortcut called myAppShortcut.lnk,
// that links to the target file in \, named myApp.exe.
// Place the shortcut in the folder Windows.
return SHCreateShortcut(TEXT(“\Windows\myAppShortcut.lnk”), TEXT(“\myApp.exe”));
}

For more details on our products, click here 
If you need further assistance, please submit a ticket here 

Was this helpful?
YesNo
Updated on May 2021