|
#1
|
||||
|
||||
|
Your help to create this!
Hello,
For games update, I'm trying to create a script for inno (like codex (that just has the update files) Below is the Setup.exe file edited with innoex : Code:
;InnoSetupVersion=5.5.0 (Unicode)
[Setup]
AppName=RAID World War II The Countdown Raid Update 15.1
AppVerName=RAID World War II The Countdown Raid Update 15.1
DefaultDirName={code:DefDirWiz}
DefaultGroupName=RAID World War II The Countdown Raid
OutputBaseFilename=Setup
Compression=zip
Uninstallable=Unnin
AllowNoIcons=yes
WizardImageFile=embedded\WizardImage.bmp
WizardSmallImageFile=embedded\WizardSmallImage.bmp
[Files]
Source: "{tmp}\ISDone.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\english.ini"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\Style.vsf"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\VclStylesinno.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\styles.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\BASS.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\bp.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\wintb.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\Music.ogg"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\Play1.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\Play2.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\Play3.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\Pause1.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\Pause2.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\Pause3.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\trackBkg.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\trackbtn1.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\trackbtn2.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\trackbtn3.bmp"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\unarc.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\ISMD5.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\ISCRC32c.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{tmp}\XDelta3.dll"; DestDir: "{tmp}"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
[UninstallDelete]
Type: filesandordirs; Name: "{app}";
[CustomMessages]
English.NameAndVersion=%1 version %2
English.AdditionalIcons=Additional icons:
English.CreateDesktopIcon=Create a &desktop icon
English.CreateQuickLaunchIcon=Create a &Quick Launch icon
English.ProgramOnTheWeb=%1 on the Web
English.UninstallProgram=Uninstall %1
English.LaunchProgram=Launch %1
English.AssocFileExtension=&Associate %1 with the %2 file extension
English.AssocingFileExtension=Associating %1 with the %2 file extension...
English.AutoStartProgramGroupDescription=Startup:
English.AutoStartProgram=Automatically start %1
English.AddonHostProgramNotFound=%1 could not be located in the folder you selected.%n%nDo you want to continue anyway?
ErrDir=Install path contains bad characters!
ErrBro=They are bad characters in a «Startup» menu directory!
DirInstall=Install directory
IconDest=&Create desktop shortcut
IconGroup=Directory at «Startup» menu
CreateIconGroup=&Create a Start Menu folder
NoUninstall=Don't create uninstaller and do not write any specific system info
ExitBtn=&Exit
CopyCrack=Copy contents of CODEX directory to installdir
ExDir=Directory for copying is wrong or it is empty!
ErrCopy=Auto copying of CODEX folder is blocking by a system or AV! You need to copy CODEX folder yourself.
FreeSpace1=At least
FreeSpace2=of free space required
ErrSize=There is not enough of free space on selected disk!
MemoReady=Waiting for Input...
InteProc=Cancel extraction?
Success=Successfully Installed
Fail=Installation Failed
MD5text1=Verification of install archives
MD5text2=Please wait while install archives verification is performing
MD5text3=Hash sum of a file Setup-1.cdx is not valid, errors can occur, do you want to proceed?
MD5text4=Setup-1.cdx file not found, errors can occur, do you want to proceed?
MD5text5=Cancel
MD5text6=Setup-1.cdx does have a null size, errors can occur during installation process, do you want to proceed?
CurHashText1=Scanning updated files
CurHashText2=Please wait for install wizard to scan updated files in a selected directory...
CurHashText3=Processing file:
CurHashText4=File not found!
CurHashText5=Null file size!
CurHashText6=Hash sum mismatch! Required MD5:
CurHashText7=Hash sum is valid.
CurHashText8=An error has occured while initial scan in a selected directory! Error details are listed above. Installing of this Update to the selected directory is not possible, this Update is originally designed for RAID.World.War.II.The.Countdown.Raid-CODEX
[Languages]
; These files are stubs
; To achieve better results after recompilation, use the real language files
Name: "English"; MessagesFile: "embedded\English.isl";
Greetings Edit: add attachment Last edited by Titeuf; 10-02-2018 at 22:54. |
| Sponsored Links |
|
#3
|
||||
|
||||
|
Quote:
Sorry, edited message and attachment added! |
|
#4
|
||||
|
||||
|
Hi,
Up please, thank |
|
#5
|
||||
|
||||
|
rather then just providing exe, that doesnt work ( Setup-1.cdx file not found, errors can occur, do you want to proceed? ) error message that comes up
due to missing file/s. Archive entire folder of what your using so those who can help might be more likely too, if source files are provided. Last edited by pakrat2k2; 13-02-2018 at 21:20. |
|
#6
|
||||
|
||||
|
What you want to know ? What is the problem ?
Provide the script you wrote so far so you can get the better help. Or you can customize this script to do the same. (Credit goes to the script owner)
|
| The Following 3 Users Say Thank You to unarc 125 For This Useful Post: | ||
|
#7
|
||||
|
||||
|
Hello,
I'm sorry for my late response! I say a big thank you for this code, Yes I can adapt this to my script! |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Nero PMA Update failure | angelosbg | CD/DVD Software & Utilities | 9 | 24-09-2008 03:40 |
| I need create Protection Fix Patches | trastornaki | PSX Games | 2 | 16-01-2007 15:35 |
| Cant copy or create to F Drive on XBOX | pluupy | XBox Games | 3 | 27-10-2002 09:28 |
| how to create backup to hard drive | fasttoon | PC Games | 2 | 02-06-2002 11:56 |