home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 November / PCWorld_2005-11_cd.bin / software / vyzkuste / mindful / mf1.exe / install_script.iss (.txt)
Encoding:
Inno Setup Script  |  2005-10-03  |  4.4 KB  |  82 lines

  1. ;InnoSetupVersion=5.0.4
  2. [Setup]
  3. AppName=Mindful
  4. AppVerName=Mindful version 1.2
  5. AppId=Mindful
  6. AppVersion=1.2
  7. AppPublisher=Felitec Inc.
  8. AppPublisherURL=http://www.felitec.com
  9. AppSupportURL=http://www.felitec.com/support.html
  10. AppUpdatesURL=http://www.felitec.com/mindful.html
  11. AppMutex=MindfulMutex
  12. DefaultDirName={pf}\Felitec\Mindful
  13. DefaultGroupName=Mindful
  14. OutputBaseFilename=setup
  15. Compression=lzma
  16. PrivilegesRequired=poweruser
  17. LicenseFile=embedded\License.txt
  18. InfoBeforeFile=embedded\InfoBefore.txt
  19. WizardImageFile=embedded\WizardImage0.bmp
  20. WizardSmallImageFile=embedded\WizardSmallImage0.bmp
  21. [Files]
  22. Source: "{app}\Mindful.exe"; DestDir: "{app}"; Flags: ignoreversion promptifolder 
  23. Source: "{app}\Mindful.exe.manifest"; DestDir: "{app}"; Flags: promptifolder 
  24. Source: "{app}\Mindful.bin"; DestDir: "{app}"; Flags: onlyifdoesntexist 
  25. Source: "{app}\Mindful.hlp"; DestDir: "{app}"; Flags: promptifolder 
  26. Source: "{app}\Mindful.cnt"; DestDir: "{app}"; Flags: promptifolder 
  27. Source: "{app}\ReadMe.txt"; DestDir: "{app}"; Flags: ignoreversion promptifolder 
  28. Source: "{app}\License.txt"; DestDir: "{app}"; Flags: ignoreversion promptifolder 
  29. [Registry]
  30. Root: HKLM; Subkey: "Software\Microsoft\Windows\CurrentVersion\Run"; ValueName: "Mindful"; ValueType: String; ValueData: "{app}\Mindful.exe"; Flags: uninsdeletevalue 
  31. Root: HKCU; Subkey: "Software\Felitec\Mindful"; Flags: uninsdeletekey 
  32. Root: HKCU; Subkey: "Software\Felitec"; Flags: uninsdeletekeyifempty 
  33. [INI]
  34. FileName: "{app}\Mindful.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.felitec.com/mindful.html"; 
  35. FileName: "{app}\LAM.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.felitec.com/lam.html"; 
  36. FileName: "{app}\AX.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.felitec.com/ax.html"; 
  37. FileName: "{app}\Felitec.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.felitec.com"; 
  38. FileName: "{app}\Order.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.felitec.com/order.html"; 
  39. FileName: "{app}\Support.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.felitec.com/support.html"; 
  40. FileName: "{app}\Contact.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.felitec.com/contact.html"; 
  41. FileName: "{app}\NewsLetter.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.felitec.com/newsletter.php"; 
  42. [Run]
  43. Filename: "{app}\mindful.exe"; Description: "Launch Mindful"; Flags: postinstall skipifsilent nowait
  44. [Icons]
  45. Name: "{group}\Mindful"; Filename: "{app}\mindful.exe"; WorkingDir: "{app}"; 
  46. Name: "{group}\Mindful Help"; Filename: "{app}\mindful.hlp"; 
  47. Name: "{group}\Mindful on the Web"; Filename: "{app}\mindful.url"; 
  48. Name: "{group}\Felitec home page"; Filename: "{app}\felitec.url"; 
  49. Name: "{group}\Uninstall Mindful"; Filename: "{uninstallexe}"; 
  50. Name: "{commondesktop}\Mindful"; Filename: "{app}\mindful.exe"; WorkingDir: "{app}"; Tasks: desktopicon; 
  51. Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\Mindful"; Filename: "{app}\mindful.exe"; WorkingDir: "{app}"; Tasks: quicklaunchicon; 
  52. [Tasks]
  53. Name: "desktopicon"; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:"; 
  54. Name: "quicklaunchicon"; Description: "Create a &Quick Launch icon"; GroupDescription: "Additional icons:"; 
  55. [InstallDelete]
  56. Type: files; Name: "{app}\Forums.url"; 
  57. [UninstallDelete]
  58. Type: files; Name: "{app}\Mindful.url"; 
  59. Type: files; Name: "{app}\LAM.url"; 
  60. Type: files; Name: "{app}\AX.url"; 
  61. Type: files; Name: "{app}\Felitec.url"; 
  62. Type: files; Name: "{app}\Order.url"; 
  63. Type: files; Name: "{app}\Support.url"; 
  64. Type: files; Name: "{app}\Contact.url"; 
  65. Type: files; Name: "{app}\NewsLetter.url"; 
  66. Type: dirifempty; Name: "{app}"; 
  67. Type: dirifempty; Name: "{app}\.."; 
  68. [CustomMessages]
  69. default.NameAndVersion=%1 version %2
  70. default.AdditionalIcons=Additional icons:
  71. default.CreateDesktopIcon=Create a &desktop icon
  72. default.CreateQuickLaunchIcon=Create a &Quick Launch icon
  73. default.ProgramOnTheWeb=%1 on the Web
  74. default.UninstallProgram=Uninstall %1
  75. default.LaunchProgram=Launch %1
  76. default.AssocFileExtension=&Associate %1 with the %2 file extension
  77. default.AssocingFileExtension=Associating %1 with the %2 file extension...
  78. [Languages]
  79. ; These files are stubs
  80. ; To achieve better results after recompilation, use the real language files
  81. Name: "default"; MessagesFile: "embedded\default.isl"; 
  82.