Quote:
Originally Posted by mausschieber
@Pakrat2k2
how you have made the list
by hand or by software
|
very easily.
open command prompt ( in folder where you want list )
type in dir /b /s >>C:\list.txt
- the /b is bare list ( no files sizes, type of file etc )
- the /s is all subdirectories
- >> means send to output file+location ( that can be any name or location ) IF not specified it will put the filelist in same dir where command was run. You can also type dir /? for list of all commands. it just old dos commands.
sentinelks
In ScriptS.rar the installerscript.iss [registry] section:
Code:
Root: HKLM; SubKey: "SOFTWARE\{code:GetAppPublisher}\{code:GetAppName}"; ValueName: INSTALL_LANG; ValueData: 1033; ValueType: string; Flags: uninsdeletevalue uninsdeletekeyifempty;
The
BOLD section highlighted will need to be changed for every version of the game that is NOT English.
You will need to add this to first post so that users who install game in another language,
will know to change that value to match what language they installed it in. Otherwise the
game will be in English not what they installed it in.
Setup.ini needs correcting:
Code:
[LauncherSettings]
InstallRedist=1
Launch1=DirectX
Launch164=0
Launch1BeforeInstall=1
LaunchCom1=DVD1\Redist\DirectX\DXSETUP.exe
LaunchArg1=/silent
Change to
Code:
[LauncherSettings]
InstallRedist=1
Launch1=DirectX
Launch164=0
Launch1BeforeInstall=1
LaunchCom1={src}\Redist\DirectX\DXSETUP.exe
LaunchArg1=/silent