一、原來一直用clickonce打包發佈,帶了好多不便,此次就想打包一個安裝包,原本想用InstallShield LE2012的,不過安裝完後還得註冊,註冊半天還不行,網上找註冊碼又沒找到,仍是本身笨吧,而後問朋友,說Inno setup還不錯,就試試,挺好使的,純轉載,原文地址:http://blog.csdn.net/ruifangcui7758/article/details/6662646app
原文:工具
前段時間關注了VC6.0自帶的Installshield打包的使用方法,感受繁瑣,如今找到一個比較簡單實用的打包小工具Inno setup,使用方法以下。post
(1)將編寫好的程序生成Release版本,打開Inno setup 5小軟件,彈出以下界面:網站
點擊菜單欄「文件」——「新建」,出現以下界面ui
點擊下一步,出現以下界面.net
這裏要填寫程序的名字,如「My App」,用用版本「1.00」,應用程序的發佈者「 My Company」,及應用程序的網站「XXXXX」,後二者能夠不寫。點擊下一步出現以下界面server
來這裏基本不用更改,點擊下一步,出現以下界面blog
這裏首先要選擇應用程序的這性文件,也就是XXXX.exe文件,點擊右側的瀏覽找到你的執行文件便可。下邊的「容許用戶在安裝完成後啓動應用程序」,勾選前面的對勾,便可,若禁止安裝完成後就運行程序,可不選擇此項。下邊的「其餘應用程序文件」比較重要,通常包含程序用到的一些DLL文件,配置文件(.ini文件),特殊的AxtiveX(.ocx)控件及Readme文件等,點擊下一步,出現以下界面ip
這裏須要哪些功能,在前邊打上對勾便可,點擊下一步出現以下界面文檔
這裏能夠選擇許可文件,安裝前的文件(如Readme文件等),安裝後顯示信息等,點擊下一步,出現以下界面,
在此可選擇語言,固然是「簡體中文」,點擊下一步,出現以下界面,
在這裏選擇編譯文件的輸出文件夾,輸出地文件名等,還能夠加載自定義的安裝程序圖標,填寫完成後,點擊下一步,出現以下界面
點擊下一步,
點擊完成,進入Inno Setup的編譯器,以下圖,
點擊是,出現以下界面
點擊是,出現以下界面
選擇編譯文本(.iss文件)的輸出文件夾,以後即可見變得代碼,以下
; 腳本由 Inno Setup 腳本嚮導 生成!
; 有關建立 Inno Setup 腳本文件的詳細資料請查閱幫助文檔!
#define MyAppName "3G NVS Viewer"
#define MyAppVersion "1.00"
#define MyAppExeName "LAUMp4Test.exe"
[Setup]
; 注: AppId的值爲單獨標識該應用程序。
; 不要爲其餘安裝程序使用相同的AppId值。
; (生成新的GUID,點擊 工具|在IDE中生成GUID。)
AppId={{140AF0C5-52A5-4ECD-AF8B-0037036B0549}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
InfoAfterFile=E:\MyProject\3G\modify\08060900\Client\bin\Readme.txt
OutputDir=E:\MyProject\3G\setup\Output
OutputBaseFilename=3G NVS Viewer setup_V1.00
Compression=lzma
SolidCompression=yes
[Languages]
Name: "chinesesimp"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked; OnlyBelowVersion: 0,6.1
[Files]
Source: "E:\MyProject\3G\modify\08060900\Client\bin\LAUMp4Test.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\config.ini"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\en_resource.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\hi_h264dec_w.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\lang.ini"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\LUSerParamX.ocx"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\LUSerParamXEn.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\NetClient.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\NetHostSDK.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\Readme.txt"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\RegOCX.bat"; DestDir: "{app}"; Flags: ignoreversion
Source: "E:\MyProject\3G\modify\08060900\Client\bin\LUSerParamX.ocx";DestDir: {app}; Flags: regserver
;最後一句在安裝程序時自動註冊LUSerParamX.ocx控件
; 注意: 不要在任何共享系統文件上使用「Flags: ignoreversion」
[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}";WorkingDir: "{app}" ;
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}";WorkingDir: "{app}" ;
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon ;WorkingDir: "{app}" ;
;紅色部分的代碼實如今安裝目錄下讀取.ini文件
[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, "&", "&&")}}"; Flags: nowait postinstall skipifsilent
至此簡單的就打包完成了。