desktop6:UninstallAction
ユーザーがデスクトップ アプリケーションをアンインストールするときに実行されるインストーラー ファイル (.exe
または .msi
) を指定します。
手記
この要素は現在、MSIXVC コンテナーにパッケージ化されたデスクトップ PC ゲームでのみ使用することを目的としています。 これには、制限された機能
要素階層
<desktop6:UninstallAction>
構文
<desktop6:UninstallAction
File = 'A string with a value between 1 and 256 characters in length that cannot contain these characters: <, >, :, ", |, ?, or *.'
Name = 'A string with a value between 1 and 32767 characters in length with a non-whitespace character at its beginning and end.'
Arguments = 'A string with a value between 1 and 32767 characters in length with a non-whitespace character at its beginning and end.' />
属性と要素
属性
属性 | 形容 | データ型 | 必須 | 既定値 |
---|---|---|---|---|
ファイルの | 実行するファイルの名前 (.exe または .msi)。 このファイルはパッケージに存在する必要があります。
desktop6 の Folder 属性に対する相対パスを指定できます。CustomInstall 要素。 絶対パスを指定することはできません。相対パスは、\ 文字で始めることはできません。 |
< 、> 、: 、" 、| 、? 、または * の文字を含むことができない長さが 1 ~ 256 文字の文字列。 |
はい | |
名の | アンインストール アクションの名前。 この名前はアンインストール アクションを識別するために使用され、OS はこの名前を使用して、正常に実行されたアクションを追跡します。 この値が、対応する |
長さが 1 ~ 32767 文字の文字列で、先頭と末尾に空白文字以外の文字が含まれます。 | はい | |
引数 | インストーラー ファイルに渡す省略可能な引数。 | 長さが 1 ~ 32767 文字の文字列で、先頭と末尾に空白文字以外の文字が含まれます。 | いいえ |
子要素
何一つ
親要素
Parent 要素 | 形容 |
---|---|
desktop6:UninstallActions | ユーザーがデスクトップ アプリケーションをアンインストールしたときに実行されるインストーラー ファイル (.exe または .msi) を指定します。 |
備考
この要素には、制限された機能
例
<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>
必要条件
アイテム | 価値 |
---|---|
名前空間 | http://schemas.microsoft.com/appx/manifest/desktop/windows10/6 |
最小 OS バージョン | Windows 10 バージョン 1903 (ビルド 18362) |