home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 July & August / PCWorld_2002-07-08_cd.bin / Software / Vyzkuste / extractnow / extractnow.exe / install_script.iss (.txt)
Encoding:
Inno Setup Script  |  2002-06-03  |  3.4 KB  |  67 lines

  1. ;InnoSetupVersion=2.0.18
  2. [Setup]
  3. AppName=ExtractNow
  4. AppVerName=ExtractNow
  5. AppId=ExtractNow
  6. AppPublisher=Nathan Moinvaziri
  7. AppPublisherURL=http://nmoin.brinkster.net/
  8. AppSupportURL=http://nmoin.brinkster.net/
  9. AppUpdatesURL=http://nmoin.brinkster.net/
  10. DefaultDirName={pf}\ExtractNow
  11. DefaultGroupName=ExtractNow
  12. OutputBaseFilename=extractnow
  13. Compression=zip
  14. PrivilegesRequired=none
  15. DisableProgramGroupPage=yes
  16. InfoBeforeFile=embedded\InfoBefore.txt
  17. WizardImageFile=embedded\WizardImage0.bmp
  18. WizardSmallImageFile=embedded\WizardSmallImage0.bmp
  19. [Files]
  20. Source: "{app}\lng_german.dll"; DestDir: "{app}"; Components: german; 
  21. Source: "{app}\lng_french.dll"; DestDir: "{app}"; Components: french; 
  22. Source: "{app}\lng_spanish (spain).dll"; DestDir: "{app}"; Components: spain; 
  23. Source: "{app}\lng_italian.dll"; DestDir: "{app}"; Components: italian; 
  24. Source: "{app}\lng_romanian.dll"; DestDir: "{app}"; Components: romanian; 
  25. Source: "{app}\en.chm"; DestDir: "{app}"; Components: main; 
  26. Source: "{app}\enfileicon.ico"; DestDir: "{app}"; Components: main; 
  27. Source: "{app}\testarchive.zip"; DestDir: "{app}"; Components: main; 
  28. Source: "{app}\extractnow.exe"; DestDir: "{app}"; Components: main; 
  29. Source: "{app}\unrar.dll"; DestDir: "{app}"; Components: main; 
  30. Source: "{app}\unacev2.dll"; DestDir: "{app}"; Components: main; 
  31. Source: "{app}\unzip32.dll"; DestDir: "{app}"; Components: main; 
  32. [Registry]
  33. Root: HKLM; Subkey: "Software\ExtractNow"; ValueName: "New Install"; ValueType: Dword; ValueData: "$1"; 
  34. [INI]
  35. FileName: "{app}\website.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://nmoin.brinkster.net/en/"; 
  36. [Run]
  37. Filename: "{app}\extractnow.exe"; Description: "Launch ExtractNow"; Flags: shellexec postinstall skipifsilent 
  38. [UninstallRun]
  39. Filename: "{app}\extractnow.exe"; Parameters: "/remreg"; 
  40. [Icons]
  41. Name: "{group}\ExtractNow"; Filename: "{app}\extractnow.exe"; 
  42. Name: "{group}\ExtractNow Help"; Filename: "{app}\en.chm"; 
  43. Name: "{group}\ExtractNow on the Web"; Filename: "{app}\website.url"; 
  44. Name: "{userdesktop}\ExtractNow"; Filename: "{app}\extractnow.exe"; Tasks: desktopicon; 
  45. Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\ExtractNow"; Filename: "{app}\extractnow.exe"; Tasks: quicklaunchicon; 
  46. [Tasks]
  47. Name: "desktopicon"; Description: "Create an icon on the &Desktop"; GroupDescription: "Additional icons:"; 
  48. Name: "quicklaunchicon"; Description: "Create an icon in the &Quick Launch bar"; GroupDescription: "Additional icons:"; 
  49. [Components]
  50. Name: "main"; Description: "Required Files"; Types: "full compact custom"; 
  51. Name: "italian"; Description: "Italian Language Pack"; Types: "custom"; 
  52. Name: "french"; Description: "French Language Pack"; Types: "custom"; 
  53. Name: "spain"; Description: "Spanish (Spain) Language Pack"; Types: "custom"; 
  54. Name: "german"; Description: "German Language Pack"; Types: "custom"; 
  55. Name: "romanian"; Description: "Romanian Language Pack"; Types: "custom"; 
  56. [InstallDelete]
  57. Type: files; Name: "{sendto}\EXTRAC~1.lnk"; 
  58. Type: files; Name: "{sendto}\EXTRAC~2.lnk"; 
  59. [UninstallDelete]
  60. Type: files; Name: "{app}\website.url"; 
  61. Type: files; Name: "{sendto}\EXTRAC~1.lnk"; 
  62. Type: files; Name: "{sendto}\EXTRAC~2.lnk"; 
  63. [Types]
  64. Name: "full"; Description: "Full installation"; 
  65. Name: "compact"; Description: "Compact installation"; 
  66. Name: "custom"; Description: "Custom installation"; 
  67.