バンドル プロジェクトには 2 つの EXE インストーラーがあり、どちらもコンピューターを再起動する必要があります。コードは次のとおりです。
<Chain>
<ExePackage
Id="RDRole"
Cache="no"
Compressed="yes"
PerMachine="yes"
Vital="no"
SourceFile="Resource\ServerManagerCmd.exe"
Permanent="yes"
InstallCommand="-install RDS-RD-Server">
<ExitCode
Behavior="forceReboot"/>
</ExePackage>
<ExePackage
Id="DoNetFull"
Name =".NET Framework 4.0 full runtime"
Cache="yes"
Compressed="yes"
PerMachine="yes"
Vital="yes"
SourceFile="Resource\dotNetFx40_Full_x86_x64.exe"
InstallCommand="/q /norestart"
Permanent="yes">
<ExitCode
Behavior="forceReboot"/>
</ExePackage>
RDRole
との両方DoNetFull
がインストールされている場合、コンピュータを 1 回だけ再起動するにはどうすればよいですか?