InnoSetup에서 .Net framework 및 vs2005, vs2008 runtime redistributable package 배포하기

Windows 2009/08/20 17:17
InnoSetup 설치 스크립트의 [Run] 영역내에 아래에서 적절한 것을 삽입한다.
해당 runtime 설치 파일은 innosetup 설치 파일에 같이 포함시켜야 한다.

[Run]
; vc 재배포패키지 2008 sp1 (silent install)
Filename: {tmp}\vcredist_x86_sp1.exe; Parameters:"/q";  StatusMsg: "Installing Visual Studio 2008 redistributable package sp1..."

;.Net framework 1.0  ~ 2.0
Filename: {tmp}\dotnetfx.exe; Parameters:"/q:a /c:""install /l/q""";  StatusMsg: "Installing .Net Framework..."

;.Net framework 3.0 ~ 3.5
Filename: {tmp}\Dotnetfx3setup.exe; Parameters:"/q /norestart";  StatusMsg: "Installing .Net Framework 3.0..."

Trackback 0 : Comment 0
◀ PREV : [1] : ... [84] : [85] : [86] : [87] : [88] : [89] : [90] : [91] : [92] : ... [125] : NEXT ▶