WiX/バンドル
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(WiX/バンドル);
*目次 [#k40bd576]
#contents
*関連ページ [#g1036fac]
-[[WiX]]
*参考情報 [#c8b2e4a7]
-[[Working with WiX Standard Bootstrapper Application:htt...
*概要 [#ja7634b7]
-Bootstrapperと呼ばれるexeファイルから、個別のmsiを呼び出...
-必要なライブラリやランタイムを本体とは別個にインストール...
-またインストーラーのGUIを多言語化するときもこの方法を使...
-WixUI_ja-jp.wxlをダウンロードして使わないといけない。
*基本 [#za460032]
-[[Working with WiX Standard Bootstrapper Application:htt...
-example.wxsを以下の内容で作成。実際はLicenseUrlで正しい...
#pre{{
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Bundle Version="1.0.0" UpgradeCode="229a81d7-7a70-4492...
<BootstrapperApplicationRef Id="WixStandardBootstrapp...
<bal:WixStandardBootstrapperApplication
LicenseUrl=""
xmlns:bal="http://schemas.microsoft.com/wix/BalEx...
</BootstrapperApplicationRef>
<Chain>
<MsiPackage SourceFile="sample.msi" DisplayInternal...
</Chain>
</Bundle>
</Wix>
}}
-sample.msiを適当に準備し(空ファイルでもよい)、以下のコマ...
#pre{{
candle.exe example.wxs -ext WixBalExtension
light.exe example.wixobj -ext WixBalExtension
}}
*多言語化 [#ma1742d1]
**参考情報 [#jbd70062]
-[[Wix 3.8 Standard Bootstrapper HyperLinkLicense - Full ...
-[[wix-users - Using burn for installer localization:http...
-[[wix-users - My experiences making a multi-language bun...
-UserLanguageID、SystemLanguageID などを使ってMsiを呼び出...
-[[Burn Built-in Variables:http://wixtoolset.org/document...
--SystemLanguageIDはGetSystemDefaultLangIDで決定される。
--UserLanguageIdはGetUserDefaultLangIDで決定される。
終了行:
&tag(WiX/バンドル);
*目次 [#k40bd576]
#contents
*関連ページ [#g1036fac]
-[[WiX]]
*参考情報 [#c8b2e4a7]
-[[Working with WiX Standard Bootstrapper Application:htt...
*概要 [#ja7634b7]
-Bootstrapperと呼ばれるexeファイルから、個別のmsiを呼び出...
-必要なライブラリやランタイムを本体とは別個にインストール...
-またインストーラーのGUIを多言語化するときもこの方法を使...
-WixUI_ja-jp.wxlをダウンロードして使わないといけない。
*基本 [#za460032]
-[[Working with WiX Standard Bootstrapper Application:htt...
-example.wxsを以下の内容で作成。実際はLicenseUrlで正しい...
#pre{{
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Bundle Version="1.0.0" UpgradeCode="229a81d7-7a70-4492...
<BootstrapperApplicationRef Id="WixStandardBootstrapp...
<bal:WixStandardBootstrapperApplication
LicenseUrl=""
xmlns:bal="http://schemas.microsoft.com/wix/BalEx...
</BootstrapperApplicationRef>
<Chain>
<MsiPackage SourceFile="sample.msi" DisplayInternal...
</Chain>
</Bundle>
</Wix>
}}
-sample.msiを適当に準備し(空ファイルでもよい)、以下のコマ...
#pre{{
candle.exe example.wxs -ext WixBalExtension
light.exe example.wixobj -ext WixBalExtension
}}
*多言語化 [#ma1742d1]
**参考情報 [#jbd70062]
-[[Wix 3.8 Standard Bootstrapper HyperLinkLicense - Full ...
-[[wix-users - Using burn for installer localization:http...
-[[wix-users - My experiences making a multi-language bun...
-UserLanguageID、SystemLanguageID などを使ってMsiを呼び出...
-[[Burn Built-in Variables:http://wixtoolset.org/document...
--SystemLanguageIDはGetSystemDefaultLangIDで決定される。
--UserLanguageIdはGetUserDefaultLangIDで決定される。
ページ名: