Inno Setup

最新版本 Inno Setup 5.5.0

Inno Setup 5.5.0

Inno Setup 5.5.0
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.0

檔案名稱 isetup-5.5.0.exe
檔案大小 1.82 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
更新日期 2012-05-30
更新日誌

What's new in this version:

* 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 minimum supported operating system.
* The MinVersion and OnlyBelowVersion directives and parameters now require only a single version number. For example: MinVersion=5.1. For compatibility with previous versions of Inno Setup, separate Windows 95/98/Me and Windows NT version numbers may still be specified, but these aren't used anymore.
* On Windows Vista and newer, Setup now supports the Windows Restart Manager API to close and restart applications using files that need to be updated:
- Added new [Setup] section directive: CloseApplications, which defaults to yes. If set to yes and Setup is not running silently, Setup will now pause on the Preparing to Install wizard page if it detects applications using files that need to be updated by the [Files] or [InstallDelete] section, showing the applications and asking the user if Setup should automatically close the applications and restart them after the installation has completed. If set to yes and Setup is running silently, Setup will always close and restart such applications, unless told not to via the command line (see below).
- Added new [Setup] section directive: CloseApplicationsFilter, which defaults to *.exe,*.dll,*.chm. Controls which files Setup will check for being in use. Setting this to *.* can provide better checking at the expense of speed.
- Added new [Setup] section directive: RestartApplications, which defaults to yes. Note: for Setup to be able to restart an application after the installation has completed, the application needs to be using the Windows RegisterApplicationRestart API function.
- Added new command line parameters supported by Setup: /NOCLOSEAPPLICATIONS and /NORESTARTAPPLICATIONS. These can be used to overide the new CloseApplications and RestartApplications directives.
- Added new [Code] support function: RmSessionStarted.
- TWizardForm: Added new PreparingMemo property.
* The Preparing to Install wizard page now also checks if one or more files specified in the [InstallDelete] section were queued (by some other installation) to be replaced or deleted on the next restart, making Setup stop on the page if it does. Previously it only checked files specified in the [Files] section.
* Setup now additionally hides the Back and Next buttons while the PrepareToInstall [Code] event function is running. Previously it only disabled itself.
* Added new [Setup] section directive: AllowNetworkDrive, which defaults to yes. If set to no, the user will not be allowed to enter a network drive on the Select Destination Location page of the wizard. Note: to fully disallow installation to network locations, you must also set AllowUNCPath to no.
* Windows 7 changes:
- Added new [Icons] section flag: preventpinning. Prevents a Start menu entry from being pinnable to Taskbar or the Start Menu on Windows 7 (or later). This also makes the entry ineligible for inclusion in the Start menu's Most Frequently Used (MFU) list. Ignored on earlier Windows versions. Contributed by Milan Burda via GitHub.
- Windows 7 SP1 fixed the issue with EstimatedSize values in the Uninstall registry key and on Windows 7 SP1 or newer Setup now sets EstimatedSize even for sizes of 4GB or more. 
* Improved the "auto-retry" feature of the [Files] section: it now automatically retries even if the restartreplace [Files] section flag is used.
* Pascal Scripting: Changed the InstallOnThisVersion support function to return a Boolean value. If an invalid version string is passed, an exception will be raised.
* Added 128x128 and 256x256 sizes to the compiler and document icons, created by Motaz.
* Some messages have been added and removed in this version. (View differences in Default.isl)
- New messages: ApplicationsFound, ApplicationsFound2, CannotInstallToNetworkDrive, CannotInstallToUNCPath, CloseApplications, DontCloseApplications, InvalidParameter, SetupAlreadyRunning, ShutdownBlockReasonInstallingApp, ShutdownBlockReasonUninstallingApp, StatusClosingApplications, StatusRestartingApplications, WindowsServicePackRequired, WindowsVersionNotSupported.
- New custom messages: AutoStartProgramGroupDescription, AutoStartProgram, AddonHostProgramNotFound.
- Removed messages: ToUNCPathname.
> Note: only the official English and Dutch translations have been updated for these changes at this moment. See the Inno Setup Translations page for more information.
* Inno Setup Preprocessor (ISPP) changes:
- Added function DirExists.
- The ISPP source code has been moved into the main Inno Setup source code repository.
* Minor tweaks.

Inno Setup 5.5.0 相關參考資料
Download Inno Setup 5.5.0

Supports creation of a single EXE to install your program for easy online distribution. Disk spanning is also supported. Standard Windows 2000/XP-style wizard ...

https://www.filepuma.com

Download Inno Setup 5.5.0 for Windows

Inno Setup 5.5.0 · File Size: 1.82 MB · Date Released: Add info · Works on: Windows 2000 / Windows 7 / Windows 7 x64 / Windows 8 / Windows 8 x64 / Windows Vista ...

http://www.oldversion.com

Download Inno Setup 5.5.3 for Windows

- Added new command line parameter supported by Inno Setup's own installer: /PORTABLE=1. Causes Inno Setup's own installer to not create an uninstaller nor an ...

http://www.oldversion.com

Free Download Inno Setup 5.5.0

Free Download Inno Setup 5.5.0 - Inno Setup is a free installer for Windows programs.

https://inno-setup.apponic.com

Inno Setup

Inno Setup is a free installer for Windows programs by Jordan Russell and Martijn Laan. First introduced in 1997, Inno Setup today rivals and even surpasses ...

https://jrsoftware.org

Inno Setup 5.5.0 Free Download

Inno SetupOverview · Support for all versions of Windows in use today: Vista, XP, 2008, 2003, 2000, Me, 98, 95, and NT 4.0. · Extensive support for installation ...

https://inno-setup.apponic.com

INNO SETUP 5.5.0以上版本中文语言包- IT少年

2014年5月10日 — 142 SelectDirLabel3=安装程序将把[name]安装在下面的文件夹中。 143 SelectDirBrowseLabel=继续安装, 请单击“下一步”。如果需要选择其它目录,请单击“ ...

https://www.cnblogs.com

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

jrsoftware.org Jordan Russell's Software

July 9, 2012 - Inno Setup 5.5.1 released. May 29, 2012 - Inno Setup 5.5.0 released. December 20, 2011 - Inno Setup 5.4.3 released.

https://jrsoftware.org