1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.fr/windows/add-appxpackage.md
Laykon4 9e39879ca5
add-appxpackage: add French translation (#14806)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com>
2024-11-17 21:28:33 +05:30

839 B

Add-AppxPackage

Un utilitaire PowerShell pour ajouter un paquet d'applications signé (.appx, .msix, .appxbundle, .appxbundle et .msixbundle) à un compte utilisateur. Plus d'informations : https://learn.microsoft.com/powershell/module/appx/Add-AppxPackage.

  • Ajoute un paquet d'application :

Add-AppxPackage -Path {{chemin\vers\paquet.msix}}

  • Ajoute un paquet d'application avec ses dependences :

Add-AppxPackage -Path {{chemin\vers\paquet.msix}} -DependencyPath {{chemin\vers\dependences.msix}}

  • Installe une application en utilisant le fichier d'installation de l'application :

Add-AppxPackage -AppInstallerFile {{chemin\vers\application.appinstaller}}

  • Ajoute un paquet non signé :

Add-AppxPackage -Path {{chemin\vers\paquet.msix}} -DependencyPath {{chemin\vers\dependences.msix}} -AllowUnsigned