You are not logged in.

Dynaletik

Win 7 & WPI Junkie :>

  • "Dynaletik" started this thread

Posts: 144

Date of registration: Sep 23rd 2008

  • Send private message

1

Sunday, October 19th 2008, 6:15pm

Inno Setup 5.3.10 Bundle

So, damit interessierte Leute sich selber einfach InnoSetups erstellen können, habe ich nun auch das Inno Bundle hochgeladen und hier verlinkt. Ein Tutorial zum Umgang mit dem ISTool und der Erstellung von Setups werde ich in den nächsten Tagen noch ins Forum stellen.

Zur unbeaufsichtigten Installation des InnoSetup Installers sind die Switches /SILENT oder /VERYSILENT nötig.
Wer nicht alle enthaltenen Komponenten installieren möchte, kann mit dem Switch /COMPONENTS="" bestimmen, welche Komponenten installiert werden sollen. (Die verfügbaren Komponenten sind durch Kommata zu trennen und unten aufgelistet.)

Inno Setup 5.3.10 Bundle

Das Paket enthält:
- Inno Setup 5.3.10 Unicode
- Die Inno Setup Script Includes (ISSI) 5.1.9
- Das ISTool 5.3.0.1
- Verknüpfung von .iss Dateien mit ISTool/Kompilierer

Verfügbare Komponenten:

Source code

1
2
issi - Inno Setup Script Includes (ISSI)
istool - ISTool

Download Inno-5.3.10_bundle.exe
Pimp my Windows - Updatepack & Addons - Guides & Lite Installer

This post has been edited 8 times, last edit by "Dynaletik" (Feb 19th 2010, 4:34pm)


nLukas

...wartet auf 7lite...

Posts: 215

Date of registration: Sep 23rd 2008

Thanks: 3 / 0

  • Send private message

2

Wednesday, August 5th 2009, 10:30pm

vielen dank dynaletik! sehr nützlich =)

Dynaletik

Win 7 & WPI Junkie :>

  • "Dynaletik" started this thread

Posts: 144

Date of registration: Sep 23rd 2008

  • Send private message

3

Thursday, August 6th 2009, 12:26pm

Gibt es denn hier im Forum mehrere Nutzer, die das InnoSetup für Ihre Installer oder Programme verwenden? Weil dann könnte man ja ne kleine Source Ecke machen, wo willige User Ihre .iss Dateien posten können und Erfahrungen austauschen können.
Pimp my Windows - Updatepack & Addons - Guides & Lite Installer

Posts: 60

  • Send private message

4

Thursday, August 6th 2009, 4:51pm

Ich würde deinen Vorschlag begrüßen. Und „indyjones “ hat doch bestimmt auch gefallen an „Inno Setup“ bekommen.

Da habe ich gleich mal eine frage: Die Integration von 32 Bit und 64 Bit Dateien in einem Setup. Welche Variante ist richtig, oder funktionieren beide?
"Check: not IsWin64() oder Check: IsWin32()" bei 32 bit

Source code

1
2
3
4
5
6
7
8
9
10
11
12
[Files]
;x86 Version
Source: {app}\TEST32.dll; DestDir: {app}; Check: not IsWin64(); DestName: TEST.dll; Flags: 32bit regserver
;x64 Version
Source: {app}\TEST64.dll; DestDir: {app}; Check: IsWin64(); DestName: TEST.dll; Flags: 64bit regserver

;oder so

;x86 Version
Source: {app}\TEST32.dll; DestDir: {app}; Check: IsWin32(); DestName: TEST.dll; Flags: 32bit regserver
;x64 Version
Source: {app}\TEST64.dll; DestDir: {app}; Check: IsWin64(); DestName: TEST.dll; Flags: 64bit regserver

Und wie ist das mit den Ordnern {pf32} und {pf64}?

Gruß WASSER

This post has been edited 2 times, last edit by "WASSER" (Aug 6th 2009, 5:28pm)


indyjones

Peitschenmann

Posts: 1,961

Date of registration: Sep 23rd 2008

Thanks: 72 / 69

  • Send private message

5

Sunday, August 9th 2009, 11:30pm

Na aber! Selbstverständlich habe ich Gefallen gefunden. Werde demnächst auch mehr mit Inno machen.

Habe hier mal einen Thread dazu aufgemacht. Falls er nicht hier her paßt, können wir immer noch verschieben.
Wenn 3 Leute in einen leeren Raum gehen und 5 wieder heraus kommen, dann müssen 2 wieder rein gehen, damit der Raum leer ist.

Posts: 45

Date of registration: Sep 23rd 2008

Thanks: 0 / 2

  • Send private message

6

Wednesday, August 26th 2009, 1:59pm

danke für dein Bundle!!

falls du es noch nicht gesehen hast: 5.3.4 ist raus ;)

Dynaletik

Win 7 & WPI Junkie :>

  • "Dynaletik" started this thread

Posts: 144

Date of registration: Sep 23rd 2008

  • Send private message

7

Saturday, June 19th 2010, 10:52am

Update auf InnoSetup 5.3.10, da dies nun die Unicode Variante ist, werden die Setups minimal größer. :)

Changelog:

Quoted

•Added .NET Framework 4.0 support:
◦Added constants {dotnet40}, {dotnet4032}, and {dotnet4064}. An exception will be raised if an attempt is made to expand these constants on a system with no .NET Framework version 4.0 present.
◦[Files] section flag gacinstall can now be used on .NET Framework 4.0 assemblies too.
•Windows 7 changes:
◦[Icons] section flag foldershortcut is now ignored when running on Windows 7 (or later), as folder shortcuts do not expand properly on the Start Menu anymore.
•[Setup] section directive changes:
◦When SignedUninstaller is set to yes, any temporary self-copies used by Setup are now digitally signed too.
◦Uninstallable may now be set to a boolean expression, which may contain calls to check functions. For example: Uninstallable=not IsTaskSelected('portablemode'). See the Uninstallable documentation for details.
◦AppVerName is no longer required if AppVersion is specified. It will now effectively default to: {cm:NameAndVersion,[AppName],[AppVersion]}. The Compiler IDE's New Script Wizard now also asks for an AppVersion instead of an AppVerName.
◦If a text VersionInfo* directive is set to an empty string (as opposed to not being specified), then the version info field is really set to an empty string now, instead of forcing a default value.
◦VersionInfoProductTextVersion now defaults to VersionInfoProductVersion if set, else AppVersion if AppVersion is set and does not include constants, else VersionInfoTextVersion.
•Unicode Inno Setup: an issue with the taskbar button re-appearing on /VERYSILENT installs has been fixed.
•Unicode [Code] based on RemObjects Pascal Script SVN code revision 228.
•Minor tweaks.
Pimp my Windows - Updatepack & Addons - Guides & Lite Installer