This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: InstallScript start menu shortcut
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 03, 2008
08:09 PM
InstallScript start menu shortcut
I have been looking for a way to rename or edit the shortcut that is created in the startmenu for the Application for an InstallScript Project.
I have my installation doing multiple instances so I want to have a shortcut placed based on the instance.
Current Setup:
Start Menu > MyCompany > MyProduct > MyApp
always points to last instance that was installed.
Example Needed:
Start Menu > MyCompany > MyProduct > MyApp_1
Start Menu > MyCompany > MyProduct > MyApp_2
Start Menu > MyCompany > MyProduct > MyApp_3
and each shortcut points to the corresponding location and executable
I have my installation doing multiple instances so I want to have a shortcut placed based on the instance.
Current Setup:
Start Menu > MyCompany > MyProduct > MyApp
always points to last instance that was installed.
Example Needed:
Start Menu > MyCompany > MyProduct > MyApp_1
Start Menu > MyCompany > MyProduct > MyApp_2
Start Menu > MyCompany > MyProduct > MyApp_3
and each shortcut points to the corresponding location and executable
(8) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 04, 2008
12:33 PM
Depending on how you're creating the shortcut, perhaps append IFX_MULTI_INSTANCE_SUFFIX (or the like) to its display name?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 04, 2008
02:31 PM
Thank you, I am using the shortcuts options to install and setup the shortcut, I had the displayed name set to the application I changed this to be and am now doing a TextSubSetValue to set the name and this works great for changing the name and adding the instance to it.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 04, 2008
04:15 PM
The one thing that I like about install shield, it has multiple ways of doing the same thing. If you would like to know more, check these out in the help.
AddFolderIcon
LongPathToQuote
ProgDefGroupType
CreateDir
Is use the above IS functions calls to create my windows shortcuts.
AddFolderIcon
LongPathToQuote
ProgDefGroupType
CreateDir
Is use the above IS functions calls to create my windows shortcuts.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 05, 2008
12:06 PM
jchristman wrote:
Thank you, I am using the shortcuts options to install and setup the shortcut, I had the displayed name set to the application I changed this to beand am now doing a TextSubSetValue to set the name and this works great for changing the name and adding the instance to it.
Hello I am new here and new to Installshield. Dealing with a Installscript.
I am trying to do something very similar and I am letting the Assistant and or Install Designer help me create this shortcut. This method you describe, does this also change where your application is placed in the directories. I want to do something similar as I want to be able to offer the rename of the shortcut (I planned on using SdSelectFolder for the prompt) but I do not want to change the TARGETDIR. Trying to learn this and understand how you are accomplishing this. Thanks for any help!!!
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 05, 2008
12:14 PM
Here is a small example of what you could do.
///////////////////////////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////////////////////////
function OnFirstUIAfter()
STRING strTemp;
STRING strValue;
STRING strFileName;
STRING strPath;
begin
.
.
.
///////////////////////////////////////////////////////////////////////////
// This will place the program group for all users to see...
///////////////////////////////////////////////////////////////////////////
ProgDefGroupType(COMMON);
strPath = FOLDER_PROGRAMS ^ "My Program Group";
CreateDir(strPath);
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
strTemp = TARGETDIR ^ "MyOtherDirectory";
strValue = strTemp;
LongPathToQuote( strValue, TRUE );
strFileName = strTemp ^ "MyProgram.exe";
LongPathToQuote( strFileName, TRUE );
AddFolderIcon(strPath, "MyProgram", strFileName, strValue, "", 0, "", REPLACE);
.
.
.
end;
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 05, 2008
12:15 PM
No, it only changes the name that is displayed in the menu.
you do this by going into the Installation Designer
System Configuration
Shortcuts
then create the shortcut.
now with the shortcut created click on it to hightlight and on the right side Click in the field for "Display Name" and enter in "" then in you installscript code do something like
TextSubSetValue("",svShortCutName,False); this does the text replacement and sets up the new name. This will need to be done before the install starts.
you do this by going into the Installation Designer
System Configuration
Shortcuts
then create the shortcut.
now with the shortcut created click on it to hightlight and on the right side Click in the field for "Display Name" and enter in "
TextSubSetValue("
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 05, 2008
03:30 PM
Thanks for the guidance and suggestions!! I will experiment with these shortly.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 05, 2008
04:46 PM
AddFolderIcon doesn't just replace text in an already existing short-cut. It will add or replace a windows short-cut. I have been using this function for years and I don't have any short-cuts defined anywhere in the IDE. It is all done in Install Shield Script code.