Advertisement
Guest User

Nothing

a guest
Mar 31st, 2013
2,084
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1.  
  2.  
  3.  
  4. #define MyAppName "Duken Nukem Forever"
  5. #define MyAppVersion "1.0"
  6. #define MyAppPublisher "2K Games"
  7. #define MyAppURL "http://www.dukenukem.com/"
  8. #define MyAppExeName "DukeForever.exe"
  9.  
  10. [Setup]
  11. AppID={{E0725E3D-9870-4930-9529-72EACCF379A9}
  12. AppName={#MyAppName}
  13. AppVersion={#MyAppVersion}
  14. ;AppVerName={#MyAppName} {#MyAppVersion}
  15. AppPublisher={#MyAppPublisher}
  16. AppPublisherURL={#MyAppURL}
  17. AppSupportURL={#MyAppURL}
  18. AppUpdatesURL={#MyAppURL}
  19. DefaultDirName={pf}\Gearbox Software\Duken Nukem Forever
  20. DefaultGroupName=Gearbox Software\Duken Nukem Forever
  21. AllowNoIcons=true
  22. OutputBaseFilename=setup
  23. SetupIconFile=Files\icon.ico
  24. Compression=none
  25. SolidCompression=true
  26. WizardImageFile=Files\WizardImage.bmp
  27. WizardSmallImageFile=Files\WizardSmallImage.bmp
  28. DiskSpanning=true
  29. DiskSliceSize=1566000000
  30. SlicesPerDisk=3
  31.  
  32. [Languages]
  33. Name: "spanish"; MessagesFile: "compiler:Languages\Spanish.isl"
  34.  
  35. [Tasks]
  36. Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
  37. Name: task1; Description: Software Adicional:
  38. Name: task1\task2; Description: DirectX
  39. Name: task1\task3; Description: Visual C++ Runtime
  40.  
  41. [Files]
  42. Source: "E:\Games\DUKE NUMEN FOREVER\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
  43.  
  44. [Icons]
  45. Name: "{group}\{#MyAppName}"; Filename: "{app}\System\{#MyAppExeName}"
  46. Name: "{group}\{cm:ProgramOnTheWeb,{#MyAppName}}"; Filename: "{#MyAppURL}"
  47. Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
  48. Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\System\{#MyAppExeName}"; Tasks: desktopicon
  49.  
  50. [Run]
  51. Filename: {src}\Soft\DirectX\DXSETUP.exe; Parameters: /silent; StatusMsg: Instalando Microsoft DirectX...; Tasks: task1\task2
  52. Filename: {src}\Soft\vcredist_x86.exe; Parameters: /q; StatusMsg: Instalando Visual C++ Runtime...; Tasks: task1\task3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement