C/S软件打包部署神器InnoSetup
概述
我们都知道做客户端软件,一般交付给客户的都是exe的安装包。那么我们平常开发完成之后,如何把程序进行打包呢。找了下发现inno setup是个不错的选择。
innosetup 是一个免费的 windows 安装程序制作软件。第一次发表是在 1997 年,inno setup 今天在功能设置和稳定性上的竞争力可能已经超过一些商业的安装程序制作软件。
能做什么
1.支持现在所有正在使用的 windows 版本: 7, 2008 r2, vista, xp, 2008,2003, 2000, me, 98, 95, 和 nt 4.0 (不需要服务包)。
2.广泛支持在 64 位 的 windows xp and windows server2003 版本的操作系统中的 64 位应用程序安装。支持 x64 和 itanium 两个结构。(在 itanium 结构中,必须在 64 位模式安装 service pack 1。)
3.支持创建单个exe 格式的安装程序,使你的程序可以很方便地在网络上发表。同时也支持磁盘延伸。
4.标准的windows 2000/xp 样式向导界面。
5.定制安装类型,例如:完整安装,最小安装,自定义安装。
6.完整的卸载功能。
7.文件安装:
包括完全的“压缩”支持,bzip2 和 7-zip lzma 文件压缩。安装程序可以比较文件版本信息,替换正在使用的文件,使用共享文件计数,注册dll/ocx 和类型库,以及安装字体。
8.可以在任意地方创建快捷方式,包括开始菜单和桌面。
9.创建注册表 和.ini 条目。
10.在安装之前、之中或之后可运行其他程序。
11.支持多语言安装。
12.支持密码和加密安装。
13.支持数字签名 、安装和卸载。
14.后台安装和后台卸载。
15.unicode安装。(windows 2000/xp 或更高)
16.完整的pascal 脚本 引擎选项于运行期高级自定义安装和卸载。
17.全部源代码公开(borland delphi 2.0-5.0 和 2009)。
创建安装程序的方式:脚本
安装程序用编译脚本的方式创建,脚本其实就是一个类似.ini 文件格式的 ascii 码文本文件。(它不象你想象的那么复杂!)。unicode inno setup支持 utf-8 编码文本文件。
脚本用一个“.iss”(表示 inno setup script脚本) 的扩展名。脚本控制着安装程序的所有方面。由它指定哪些文件将被安装到什么地方,在哪里创建快捷方式,且被命名为什么。
脚本文件一般可以用安装程序编译器程序内置的编辑器进行编辑。在你编写完脚本后,下一个最终步骤就是选择安装程序编译器中的“编译”。创建完成后,就可以运行根据你脚本编译的安装程序了。按默认,这个安装程序创建在包含脚本文件目录下的名为“输出”目录中。
如果你想看看它是怎样工作的,启动安装程序编译器,单击“文件 | 打开”,并选择位于 inno setup 安装目录下的examples 子目录中的一个脚本文件。(你也可以将这些示例脚本作为你自己编写脚本的模板。)
以下是我之前的项目的脚本
; script generated by the inno setup script wizard. ; see the documentation for details on creating inno setup script files! #define myappname "主机助手" #define myappversion "1.1.1.7" #define myapppublisher "点击网络, 技术部." #define myappurl "http://yroot.bidns.net/" #define myappexename "主机助手.exe" [setup] ; note: the value of appid uniquely identifies this application. ; do not use the same appid value in installers for other applications. ; (to generate a new guid, click tools | generate guid inside the ide.) appid={{cd9818e0-fee2-418e-9775-15f50ae2229e} appname={#myappname} appversion={#myappversion} ;appvername={#myappname} {#myappversion} apppublisher={#myapppublisher} apppublisherurl={#myappurl} appsupporturl={#myappurl} appupdatesurl={#myappurl} defaultdirname={pf}\zhugassistant disableprogramgrouppage=yes outputdir=c:\users\admin\desktop outputbasefilename=主机助手安装包 setupiconfile=c:\users\admin\documents\visual studio 2010\projects\yroot-10-24\yroot\bin\debug\images\title.ico compression=lzma solidcompression=yes [languages] name: "english"; messagesfile: "compiler:default.isl" [tasks] name: "desktopicon"; description: "{cm:createdesktopicon}"; groupdescription: "{cm:additionalicons}"; flags: exclusive name: "quicklaunchicon"; description: "{cm:createquicklaunchicon}"; groupdescription: "{cm:additionalicons}"; flags: unchecked [files] source: "d:\debug\主机助手.exe"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\accesssetup.exe"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\conf\*"; destdir: "{app}\conf\"; flags: ignoreversion recursesubdirs createallsubdirs source: "d:\debug\data\*"; destdir: "{app}\data\"; flags: ignoreversion recursesubdirs createallsubdirs source: "d:\debug\images\*"; destdir: "{app}\images\"; flags: ignoreversion recursesubdirs createallsubdirs source: "d:\debug\tools\*"; destdir: "{app}\tools\"; flags: ignoreversion recursesubdirs createallsubdirs source: "d:\debug\cskin.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\diskquotatypelibrary.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\dmskin.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\form_data_path.txt"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\interop.adodb.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\interop.adox.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\interop.fsrmlib.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\interop.iisole.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\interop.taskscheduler.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\metroframework.design.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\metroframework.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\metroframework.fonts.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\microsoft.web.administration.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\microsoft.win32.taskscheduler.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\mysql.data.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\simpleupdater.dll"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\yroot.vshost.exe"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\yroot.vshost.exe.config"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\yroot.vshost.exe.manifest"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\yroot_beta.vshost.exe"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\yroot_beta.vshost.exe.config"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\yroot_beta.vshost.exe.manifest"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\主机助手.exe"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\主机助手.exe.config"; destdir: "{app}"; flags: ignoreversion source: "d:\debug\主机助手.pdb"; destdir: "{app}"; flags: ignoreversion ; note: don't use "flags: ignoreversion" on any shared system files [icons] name: "{commonprograms}\{#myappname}"; filename: "{app}\{#myappexename}" name: "{commondesktop}\{#myappname}"; filename: "{app}\{#myappexename}"; tasks: desktopicon name: "{group}\{cm:uninstallprogram,主机助手}"; filename: "{uninstallexe}" ;[components] ;name: access; description: "access支持" ; types: full [messages] ;卸载对话框说明 confirmuninstall=您真的想要从电脑中卸载主机助手吗?%n%n按 [是] 将会删除 %1 以及它的组件;%n按 [否] 则让软件继续留在您的电脑上. [run] filename: "{app}\{#myappexename}"; description: "{cm:launchprogram,{#stringchange(myappname, '&', '&&')}}"; flags: nowait postinstall skipifsilent [registry] root: hklm ;subkey:"software\zhugassistant";valuetype:dword;valuename:config;valuedata:10 ;flags: uninsdeletekey [code] //init setup function initializesetup(): boolean; //var var istoken: boolean; //avoid setup again begin istoken := true; if regvalueexists(hkey_local_machine, 'software\zhugassistant', 'config') then begin msgbox('程序已安装,请卸载后再尝试安装!',mbconfirmation, mb_ok); istoken := false; end else begin istoken := true; end; result := istoken; end; //next button function nextbuttonclick(curpageid: integer): boolean; //var var resultcode: integer; var issetup : boolean; begin issetup := true ; case curpageid of wpready: begin if not regvalueexists(hkey_local_machine, 'software\classes\clsid\{6f3dd387-5af2-492b-bde2-30ff2f451241}\inprocserver32\12.0.0.0', 'runtimeversion') then begin if msgbox('程序执行需要access数据库的支持,是否现在安装?', mbconfirmation, mb_yesno) = idyes then begin extracttemporaryfile('accesssetup.exe'); extracttemporaryfile('dmskin.dll'); if not exec(expandconstant('{tmp}\accesssetup.exe'), '', '', sw_shownormal, ewwaituntilterminated, resultcode) then msgbox('access安装出错:' #13#13 ' ' + syserrormessage(resultcode) + '.', mberror, mb_ok); end else begin issetup := false ; end ; bringtofrontandrestore(); end; end; end; result := issetup; end;
上一篇: asp防范跨站点脚本攻击的的方法
下一篇: rustysun同学ASP代码书写规范