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

Co-authored-by: Chooooo <contact@choo.ooo> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
20 lines
764 B
Markdown
20 lines
764 B
Markdown
# Add-AppxPackage
|
|
|
|
> 서명된 앱 패키지(`.appx`, `.msix`, `.appxbundle`, `.msixbundle`)를 사용자 계정에 추가하는 PowerShell 유틸리티.
|
|
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/appx/Add-AppxPackage>.
|
|
|
|
- 앱 패키지 추가:
|
|
|
|
`Add-AppxPackage -Path {{경로\대상\패키지.msix}}`
|
|
|
|
- 의존성과 함께 앱 패키지 추가:
|
|
|
|
`Add-AppxPackage -Path {{경로\대상\패키지.msix}} -DependencyPath {{경로\대상\의존성.msix}}`
|
|
|
|
- 앱 설치 파일을 사용하여 앱 설치:
|
|
|
|
`Add-AppxPackage -AppInstallerFile {{경로\대상\앱.appinstaller}}`
|
|
|
|
- 서명되지 않은 패키지 추가:
|
|
|
|
`Add-AppxPackage -Path {{경로\대상\패키지.msix}} -DependencyPath {{경로\대상\의존성.msix}} -AllowUnsigned`
|