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:
parent
30a45ac431
commit
9e39879ca5
1 changed files with 20 additions and 0 deletions
20
pages.fr/windows/add-appxpackage.md
Normal file
20
pages.fr/windows/add-appxpackage.md
Normal 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`
|
Loading…
Add table
Reference in a new issue