Results 1 to 6 of 6

Thread: [RESOLVED] Need some help with my InnoSetup script

Threaded View

  1. #3

    Thread Starter
    Frenzied Member
    Join Date
    Nov 2005
    Posts
    1,834

    Re: Need some help with my InnoSetup script

    The only things I removed from the script were the internet shortcut parts. The original script includes an internet shortcut in the apps folder and Start Menu that points to nothing. It's like adding an empty text file for no reason.

    Code:
    Filename: {app}\Basic.url; Section: InternetShortcut; Key: URL; String:
    Name: {group}\{cm:ProgramOnTheWeb, Basic}; Filename: {app}\Basic.url
    I did add/copy some things but apparently I didn't add/copy enough. I made a script with the Inno Setup Wizard that gave me the option to add a Desktop Icon and QuickLaunch Icon, something I couldn't find in the ********** program, but maybe I'm blind.

    So I copied the code below from the Inno Setup Script to the ********** script.

    Code:
    [Tasks]
    Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
    Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
    I forgot to copy this as well, so the Desktop and QuickLaunch Icon problem has been resolved.

    Code:
    Name: "{commondesktop}\Basic"; Filename: "{app}\Basic.exe"; Tasks: desktopicon
    Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\Basic"; Filename: "{app}\Basic.exe"; Tasks: quicklaunchicon

    About MSXML 4.0... On this page there are several downloads listed, but which one do I need?

    http://www.microsoft.com/downloads/d...f2b42#filelist

    I sure hope I don't have to include a 5mb msxml.msi installer for files that aren't even 150kB together.
    Last edited by Chris001; Oct 12th, 2007 at 03:21 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width