Advertisement
jwow22

Inno Template

Aug 9th, 2022
1,325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Script generated by the Inno Setup Script Wizard.
  2. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
  3. #define MyAppName "Rouse"
  4. #define MyAppVersion "1.0"
  5. #define MyAppPublisher "Futuregames"
  6. #define MyAppURL "https://futuregames.itch.io/"
  7. #define MyAppExeName "GP3.exe"
  8. #define MyIconFileName "test.ico"
  9. #define MyAppSetupName "RouseSetup"
  10.  
  11. [Setup]
  12. ; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
  13. ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
  14. AppId={{9B409C34-B13E-488B-B13F-64E4D8870C00}
  15. AppName={#MyAppName}
  16. AppVersion={#MyAppVersion}
  17. ;AppVerName={#MyAppName} {#MyAppVersion}
  18. AppPublisher={#MyAppPublisher}
  19. AppPublisherURL={#MyAppURL}
  20. AppSupportURL={#MyAppURL}
  21. AppUpdatesURL={#MyAppURL}
  22. DefaultDirName={autopf}\{#MyAppName}
  23. DisableProgramGroupPage=yes
  24. ; Uncomment the following line to run in non administrative install mode (install for current user only.)
  25. ;PrivilegesRequired=lowest
  26. OutputDir=.\output\
  27. OutputBaseFilename={#MyAppSetupName}
  28. SetupIconFile=.\Windows\{#MyIconFileName}
  29. Compression=lzma
  30. SolidCompression=yes
  31. WizardStyle=modern
  32.  
  33. [Languages]
  34. Name: "english"; MessagesFile: "compiler:Default.isl"
  35.  
  36. [Tasks]
  37. Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
  38.  
  39. [Files]
  40. Source: ".\Windows\GP3.exe"; DestDir: "{app}"; Flags: ignoreversion
  41. Source: ".\Windows\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
  42. ; NOTE: Don't use "Flags: ignoreversion" on any shared system files
  43.  
  44. [Icons]
  45. Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
  46. Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
  47.  
  48. [Run]
  49. Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement