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.
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.Code:Filename: {app}\Basic.url; Section: InternetShortcut; Key: URL; String: Name: {group}\{cm:ProgramOnTheWeb, Basic}; Filename: {app}\Basic.url
So I copied the code below from the Inno Setup Script to the ********** script.
I forgot to copy this as well, so the Desktop and QuickLaunch Icon problem has been resolved.Code:[Tasks] Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
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.




Reply With Quote