desktop6:RepairActions
指定當使用者在傳統型應用程式的 [設定] 頁面中選取修復或重設選項時執行的安裝程式檔案(.exe 或 .msi]。
注意
此元素目前僅供封裝在 MSIXVC 容器中的桌面電腦遊戲使用。 它需要 customInstallActions受限制的功能。
元素階層
<desktop6:RepairActions>
語法
<desktop6:RepairActions>
<!-- Child elements -->
desktop6:RepairAction{0,100}
</desktop6:RepairActions>
鑰匙
{}
特定發生的範圍
屬性和元素
屬性
沒有。
子專案
子專案 | 描述 |
---|---|
RepairAction | 指定當使用者在傳統型應用程式的 [設定] 頁面中選取修復或重設選項時所執行的安裝程式檔案 (.exe 或 .msi]。 |
父元素
父元素 | 描述 |
---|---|
desktop6:CustomInstall | 可讓您的桌面應用程式指定隨傳統型應用程式一起安裝的其他一或多個安裝程式檔案(.exe 或 .msi)。 |
言論
此元素需要 customInstallActions受限制的功能。
例子
<Package
xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="rescap desktop6">
<!-- ... -->
<!-- Other entries omitted for brevity. -->
<!-- ... -->
<Extensions>
<desktop6:Extension Category="windows.customInstall">
<desktop6:CustomInstall Folder="MyInstallers">
<desktop6:InstallActions>
<desktop6:InstallAction File="Setup_AntiCheat.exe" Name="AC_1" Arguments="/add /silent" />
</desktop6:InstallActions>
<desktop6:RepairActions>
<desktop6:RepairAction File="Setup_AntiCheat.exe" Name="AC_1" Arguments="/add /silent /force" />
</desktop6:RepairActions>
<desktop6:UninstallActions>
<desktop6:UninstallAction File="Setup_AntiCheat.exe" Name="AC_1" Arguments="/remove /silent" />
</desktop6:UninstallActions>
</desktop6:CustomInstall>
</desktop6:Extension>
</Extensions>
<Capabilities>
<rescap:Capability Name="customInstallActions"/>
</Capabilities>
</Package>
要求
專案 | 價值 |
---|---|
Namespace | http://schemas.microsoft.com/appx/manifest/desktop/windows10/6 |
最低 OS 版本 | Windows 10 版本 1903 (組建 18362) |