1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

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>
This commit is contained in:
Laykon4 2024-11-17 16:58:33 +01:00 committed by GitHub
parent 30a45ac431
commit 9e39879ca5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,20 @@
# 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`