1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/windows/add-appxpackage.md
Vedant Yadav 9538a12740
add-appxpackage: add Hindi translation; pages.*: remove locale from Microsoft links ()
* add-appxpackage: add Hindi translation

* pages.*: remove locale from Microsoft links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-10-26 23:59:28 +05:30

694 B

add-appxpackage

A PowerShell utility to add a signed app package (.appx, .msix, .appxbundle and .msixbundle) to a user account. More information: https://learn.microsoft.com/powershell/module/appx/add-appxpackage.

  • Add an app package:

add-appxpackage -Path {{path\to\package.msix}}

  • Add an app package with dependencies:

add-appxpackage -Path {{path\to\package.msix}} -DependencyPath {{path\to\dependencies.msix}}

  • Install an app using the app installer file:

add-appxpackage -AppInstallerFile {{path\to\app.appinstaller}}

  • Add an unsigned package:

add-appxpackage -Path {{path\to\package.msix}} -DependencyPath {{path\to\dependencies.msix}} -AllowUnsigned