desktop6:UninstallActions
묘사
사용자가 데스크톱 애플리케이션을 제거할 때 실행되는 설치 관리자 파일(.exe
또는 .msi
)을 지정합니다.
메모
이 요소는 현재 MSIXVC 컨테이너에 패키지된 데스크톱 PC 게임에서만 사용됩니다. customInstallActions제한된 기능필요합니다.
요소 계층 구조
<desktop6:UninstallActions>
통사론
<desktop6:UninstallActions>
<!-- Child elements -->
desktop6:UninstallAction{0,100}
</desktop6:UninstallActions>
열쇠
특정 발생 범위 {}
특성 및 요소
특성
없음.
자식 요소
자식 요소 | 묘사 |
---|---|
uninstallAction |
사용자가 데스크톱 애플리케이션을 제거할 때 실행되는 설치 관리자 파일(.exe 또는 .msi)을 지정합니다. |
부모 요소
Parent 요소 | 묘사 |
---|---|
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) |