InnoSetup/dotnetframework
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(InnoSetup/dotnetframework);
*目次 [#rae62553]
#contents
*関連ページ [#v700e139]
-[[InnoSetup]]
*参考情報 [#i08dd412]
-[[Modular InnoSetup Dependency Installer - CodeProject:h...
*概要 [#u056389c]
-Modular InnoSetup Dependency Installerを使うのがいいらし...
*Modular InnoSetup Dependency Installerの使用方法 [#x942f...
**とりあえずの手順 [#had9e74f]
-[[Modular InnoSetup Dependency Installer - CodeProject:h...
-setup.issをコンパイルすればとりあえずデモインストーラー...
-ただしそのままのsetup.issには不用なコードがたくさん含ま...
**自分のissに組み込む方法 [#v7f021ed]
-[[Downloading and Installing .NET 4.0 with Inno Setup:ht...
#pre{{
// dotnet_Passive enabled shows the .NET/VC2010 installat...
#define dotnet_Passive
#define use_dotnetfx40
[Languages]
Name: "en"; MessagesFile: "compiler:Default.isl"
[Run]
#include "scripts\products.iss"
#include "scripts\products\winversion.iss"
#include "scripts\products\fileversion.iss"
#ifdef use_dotnetfx40
#include "scripts\products\dotnetfx40client.iss"
#include "scripts\products\dotnetfx40full.iss"
#endif
[CustomMessages]
win2000sp3_title=Windows 2000 Service Pack 3
winxpsp2_title=Windows XP Service Pack 2
winxpsp3_title=Windows XP Service Pack 3
[Code]
function InitializeSetup(): Boolean;
begin
//init windows version
initwinversion();
if not minwinspversion(5, 1, 3) then begin
MsgBox(FmtMessage(CustomMessage('depinstall_missi...
[CustomMessage('winxpsp3_title')]), mbError, MB_OK);
exit;
end;
// If no .NET 4.0 framework found, download and install
#ifdef use_dotnetfx40
if not dotnetfx40client(true) then
if not dotnetfx40full(true) then
dotnetfx40client(false);
#endif
Result := true;
end;
}}
**日本語化して使用 [#q3a67587]
- 日本語化して使いたい場合、product.iss、各モジュールのis...
**トラブルシューティング [#g1744e16]
***.NET Framework 4.5がインストールできない。 [#w51dcd7f]
-ダイアログが表示されてしまう。
-AddProductの第2引数がおかしいのかもしれない。
終了行:
&tag(InnoSetup/dotnetframework);
*目次 [#rae62553]
#contents
*関連ページ [#v700e139]
-[[InnoSetup]]
*参考情報 [#i08dd412]
-[[Modular InnoSetup Dependency Installer - CodeProject:h...
*概要 [#u056389c]
-Modular InnoSetup Dependency Installerを使うのがいいらし...
*Modular InnoSetup Dependency Installerの使用方法 [#x942f...
**とりあえずの手順 [#had9e74f]
-[[Modular InnoSetup Dependency Installer - CodeProject:h...
-setup.issをコンパイルすればとりあえずデモインストーラー...
-ただしそのままのsetup.issには不用なコードがたくさん含ま...
**自分のissに組み込む方法 [#v7f021ed]
-[[Downloading and Installing .NET 4.0 with Inno Setup:ht...
#pre{{
// dotnet_Passive enabled shows the .NET/VC2010 installat...
#define dotnet_Passive
#define use_dotnetfx40
[Languages]
Name: "en"; MessagesFile: "compiler:Default.isl"
[Run]
#include "scripts\products.iss"
#include "scripts\products\winversion.iss"
#include "scripts\products\fileversion.iss"
#ifdef use_dotnetfx40
#include "scripts\products\dotnetfx40client.iss"
#include "scripts\products\dotnetfx40full.iss"
#endif
[CustomMessages]
win2000sp3_title=Windows 2000 Service Pack 3
winxpsp2_title=Windows XP Service Pack 2
winxpsp3_title=Windows XP Service Pack 3
[Code]
function InitializeSetup(): Boolean;
begin
//init windows version
initwinversion();
if not minwinspversion(5, 1, 3) then begin
MsgBox(FmtMessage(CustomMessage('depinstall_missi...
[CustomMessage('winxpsp3_title')]), mbError, MB_OK);
exit;
end;
// If no .NET 4.0 framework found, download and install
#ifdef use_dotnetfx40
if not dotnetfx40client(true) then
if not dotnetfx40full(true) then
dotnetfx40client(false);
#endif
Result := true;
end;
}}
**日本語化して使用 [#q3a67587]
- 日本語化して使いたい場合、product.iss、各モジュールのis...
**トラブルシューティング [#g1744e16]
***.NET Framework 4.5がインストールできない。 [#w51dcd7f]
-ダイアログが表示されてしまう。
-AddProductの第2引数がおかしいのかもしれない。
ページ名: