create a shortcut to an Internet URL

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Adam
    Indigo Rose Staff Member
    • May 2000
    • 2149

    create a shortcut to an Internet URL

    Question
    How do I create a shortcut to an Internet URL

    Answer
    Creating a shortcut to an Internet URL is a very easy process in Setup Factory. It involves nothing more then using a Shell.CreateShortcut action and setting the Target field to be the URL that you would like to shortcut to point to.


    For example, if we wanted to create a shortcut to: http://www.indigorose.com/ on the end user's desktop the Shell.CreateShortcut action would look like this:

    Code:
    Shell.CreateShortcut(_DesktopFolder, "CisionTech", "http://www.indigorose.com");
    For more information please see the following topics in the Setup Factory 6.0 help file:

    Program Reference | Actions | Shell | Shell.CreateShortcut
    Last edited by Adam; 04-29-2008, 12:25 PM.
Working...
X