diff --git a/pages/windows/add-appxpackage.md b/pages/windows/add-appxpackage.md new file mode 100644 index 000000000..bd0b99f9b --- /dev/null +++ b/pages/windows/add-appxpackage.md @@ -0,0 +1,20 @@ +# add-appxpackage + +> A PowerShell utility to add a signed app package (`.appx`, `.msix`, `.appxbundle` and `.msixbundle`) to a user account. +> More information: . + +- 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`