Inno Setup

最新版本 Inno Setup 5.5.7

Inno Setup 5.5.7

Inno Setup 5.5.7
Inno Setup 是一個工具,專為創建專業安裝程序而設計,可以在 Windows 2000 和 Windows 8 之間的所有 Windows 平台上運行(包括此操作系統的業務版本,32 位和 64 位版本也完全支持)。雖然這個開放源代碼程序可以被任何人免費使用,但是 Inno Setup 是非常穩定的,並且提供比其他大多數類似的付費選擇更多的功能。  這使得它非常受歡迎,他們需要訪問完美的工具,廣泛的操作系統支持和先進的功能,如完整的卸載工具,磁盤跨越,單個 EXE 安裝程序,單個包內的多個二進製文件的支持,INI / 註冊表管理,集成腳本引擎(基於 Pascal),密碼和加密軟件包,支持多種壓縮算法,多語言安裝界面等等.

Inno Setup 的第一個版本是由開發人員 Jordan Russell 在 IDE 軟件包 Embarcadero Delphi 於 1997 年創建的。從那一刻起,這個免費軟件獲得了無數的更新和簡化的可視化界面,今天可以很容易地被那些對軟件開發和經驗豐富的專業人員很少技術知識的用戶使用。用 Inno 創建的安裝程序可以是傳統的“嚮導”類型,可以創建快捷方式,啟動或刪除文件,並可以密碼保護或加密。界面並不是非常直觀,但各種前端已經開發出來,使這個產品的工作更容易.

Inno Setup 是一個 100%免費的應用程序,甚至可以用於商業,雖然它的原始開發者是開放的接受捐贈資金活躍這個受歡迎的開發工具的開發.

Inno Setup 功能:
支持自 2000 年以來的每個 Windows 版本,包括:Windows 8,Windows Server 2012,Windows 7,Windows Server 2008 R2,Windows Vista,Windows Server 2008,Windows XP,Windows Server 2003,和 Windows 2000.(不需要服務包)。在 64 位版本的 Windows 上安裝 64 位應用程序的廣泛支持。支持 x64 和 Itanium 體系結構。 (在 Itanium 體系結構上,Windows Server 2003 需要 Service Pack 1 或更高版本才能以 64 位模式進行安裝。)支持創建單個 EXE 以安裝程序,以便於在線分發。磁盤跨越也支持。標準的 Windows 2000 / XP 風格的嚮導界面。可定制的設置類型,例如完整,最小,自定義。完整的卸載功能。安裝文件:包括對“deflate”,bzip2 和 7 -Zip LZMA / LZMA2 文件壓縮的集成支持。安裝程序能夠比較文件版本信息,替換正在使用的文件,使用共享文件計數,註冊 DLL / OCX 和類型庫,並安裝字體。在任何地方創建快捷方式,包括在“開始”菜單和桌面上。創建註冊表和.INI 條目。在安裝之前,之中或之後運行其他程序。支持多語言安裝,包括從右向左的語言支持。支持 passworded 和加密的安裝。支持數字簽名的安裝和卸載。無提示安裝和卸載。 Unicode 安裝。集成預處理器選項,用於高級編譯時自定義。集成的 Pascal 腳本引擎選項,用於高級運行時安裝和卸載定制。完整的源代碼可用(Borland Delphi 2.0-5.0 和 2009)。

ScreenShot

軟體資訊
檔案版本 Inno Setup 5.5.7

檔案名稱 isetup-5.5.7.exe
檔案大小 1.85 MB
系統 Windows XP / Vista / Windows 7 / Windows 8 / Windows 10 / XP64 / Vista64 / Windows 7 64 / Windows 8 64 / Windows 10 64
軟體類型 開源軟體
作者 Jordan Russell
官網 http://www.jrsoftware.org/isinfo.php
更新日期 2016-01-04
更新日誌

What's new in this version:

- Changes in default behavior:
  - As recommended by Microsoft's desktop applications guideline, DisableWelcomePage now defaults to yes. Additionally DisableDirPage and DisableProgramGroupPage now default to auto. The defaults in all previous versions were no.
  - The Setup and Uninstall programs are now marked as DEP and ASLR compatible. This can be disabled by setting the new DEPCompatible and ASLRCompatible [Setup] section directives to no. Doing this for DEP compatibility might be needed if you're using a buggy third-party DLL from [Code], like isxdl.dll.
- The Compiler IDE's New Script Wizard now offers to create a shortcut to the main executable in the common Start Menu Programs folder instead of creating a new Start Menu folder especially for the application. This option is enabled by default and is recommended by Microsoft unless you install a suite of applications rather than a single application.
- The WizardImageFile and WizardSmallImageFile [Setup] section directives now support 32 bit bitmap files with an alpha channel. Use the new WizardImageAlphaFormat [Setup] section directive to specify if the bitmap file has its red, green and blue channel values premultiplied with the alpha channel value or not. Contributed by Honza Rameš via GitHub.
- The WizardImageBackColor [Setup] section directive is now deprecated and ignored, just like the similar WizardSmallImageBackColor directive already was. Any unused space around the wizard image is now filled with the standard window color (usually white).
- [Setup] section directive CloseApplications can now be set to force. If it is, Setup will force close when closing applications. Use with care since this may cause the user to lose unsaved work.
- Added new command line parameters supported by Setup: /FORCECLOSEAPPLICATIONS and /NOFORCECLOSEAPPLICATIONS. These can be used to override the CloseApplications directive.
- The Attribs parameter of a [Files] or [Dir] entry may now also include notcontentindexed to specify that the file or directory is not to be indexed by the content indexing service.
- Pascal Scripting changes:
  - Function RegQueryBinaryValue can now be used to query any type of registry value and not just REG_BINARY-type values.
  - Class TBitmapImage now supports 32 bit bitmap files with an alpha channel. Make sure to set the Bitmap.AlphaFormat property before loading the bitmap file.
  - Added new functions GetOpenFileNameMulti and SelectNewDisk.
  - Added C# version of the MyDll.dll example DLL showing how to call .NET assemblies from [Code] without requiring COM or other DLLs. Uses Unmanaged Exports by Robert Giesecke.
- Unicode [Code] based on RemObjects Pascal Script Git commit bfc1255636eb959f102d0279721b05ba85fbe7da.
- Minor tweaks

Inno Setup 5.5.7 相關參考資料
Download Inno Setup 5.5.0 for Windows

Non-Unicode Inno Setup OS requirements change: Windows 95, 98, Me, and NT 4.0 are no longer supported. Like the Unicode version, Windows 2000 is now the ...

http://www.oldversion.com

Download Inno Setup 5.5.7

Support for passworded and encrypted installs. Support for digitally signed installs and uninstalls. Silent install and uninstall. Unicode installs. Integrated ...

https://www.filepuma.com

Download Inno Setup 5.5.7 for windows

2016年1月5日 — Integrated Pascal scripting engine option for advanced run-time install and uninstall customization. Full source code is available (Borland ...

https://www.filepuma.com

Downloading Inno Setup 5.5.7 from FileHorse.com

Tool that helps you to create windows installers · Inno Setup 5.5.7 · Key details about this download. The file will be downloaded from secure FileHorse servers ...

https://www.filehorse.com

Inno Setup 5.5.7

2015年12月28日 — Supports creation of a single EXE to install your program for easy online distribution. Disk spanning is also supported. Standard Windows wizard ...

https://www.neowin.net

Inno Setup Downloads

Inno Setup 6 introduced a number of significant enhancements including: 6.0: Improved support for administrative vs. non administrative install mode. 6.0: ...

https://jrsoftware.org

Inno-All-in-One-SetupWhat's new.txt at master

... Inno Setup 至5.5.7 版本Inno_555_140714_WLDNA(2014-07-14) 更新: 1、更新Inno Setup 至5.5.5 版本2、更新SkyGz 增强版至5.5.5 版本3、Itd插件,增加中文语言文件 ...

https://github.com

jrsoftware.org Jordan Russell's Software

December 28, 2015 - Inno Setup 5.5.7 released. July 16, 2015 - Inno Setup 5.5.6 released. July 9, 2014 - Inno Setup 5.5.5 released.

https://jrsoftware.org

Old Inno Setup Downloads

Old Inno Setup Downloads · Version 6.x · Version 5.x (previous major version and last version to support Windows XP) · Version 4.x (old version) · Version 3.0.7 ( ...

https://jrsoftware.org