Information*/알면도움됨

CMD 창에서 MS STORE APP 실행시키는 방법

ch4rli3kop 2022. 4. 29. 16:00
반응형

CMD 창에서 MS STORE APP 실행시키는 방법

Application의 Package Family Name과 App ID를 알아야함.

아는 법 1

  1. Run dialog box using Win + R and
  2. command shell:AppsFolder
  3. Right click and create shortcut
  4. 해당 shortcut properties 확인

아는 법 2

  1. powershell 관리자로 open
  2. Get-AppxPackage 로 확인
  3. Name             : Microsoft.3DBuilder

    Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture     : X64
    ResourceId       :
    Version           : 18.0.1931.0
    PackageFullName   : Microsoft.3DBuilder_18.0.1931.0_x64__8wekyb3d8bbwe
    InstallLocation   : C:\Program Files\WindowsApps\Microsoft.3DBuilder_18.0.1931.0_x64__8wekyb3d8bbwe
    IsFramework       : False
    PackageFamilyName : Microsoft.3DBuilder_8wekyb3d8bbwe
    PublisherId       : 8wekyb3d8bbwe
    IsResourcePackage : False
    IsBundle         : False
    IsDevelopmentMode : False
    NonRemovable     : False
    Dependencies     : {Microsoft.UI.Xaml.2.0_2.1810.18004.0_x64__8wekyb3d8bbwe, Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe, Micro
                      soft.3DBuilder_18.0.1931.0_neutral_split.language-ko_8wekyb3d8bbwe, Microsoft.3DBuilder_18.0.1931.0_neutral_split.scale-
                      125_8wekyb3d8bbwe}
    IsPartiallyStaged : False
    SignatureKind     : Store
    Status           : Ok
  4. PackageFamilyName를 확인하고, InstallLocation 경로에 직접가서 AppManifest.xml 파일 내에 존재하는 Application ID 확인
  5. <Applications>
      <Application Id="App" Executable="Builder3D.exe" EntryPoint="PrintPreview.App">

위 방법들로 PackageFamilyName 과 App ID를 확인했으면,

cmd 상에서 다음과 같이 입력하면 됨.

> explorer.exe shell:appsFolder\Microsoft.3DBuilder_8wekyb3d8bbwe!App

 

Reference:

반응형