Home » Questions » Computers [ Ask a new question ]

different types of shortcuts

different types of shortcuts

Let's say I have two shortcuts for Microsoft Word; the first shortcut was created during the Office installation, the second shortcut I have created myself via right click on winword.exe > Send to > Desktop (create shortcut).

Asked by: Guest | Views: 195
Total answers/comments: 1
Guest [Entry]

"I was actually wondering the same thing recently, and I decided to investigate. It turns out that those shortcuts are special, called Windows Installer Shortcuts. The stub executables are really only there for the icon, nothing else.

Basically, programs can create these shortcuts through Windows Installer during the installation, and they're special because they don't link directly to the file but instead use a bunch of Win API functions to get to the destination. You can find an official explanation here. I'm not exactly sure of the reason they were implemented, though, other than to annoy you. :)

Anyway, to answer your question: No, you cannot create your own. You can do so programmatically, but I'm sure that's not what you were thinking of. :)"