PowerShell에서 특정 형식의 Windows 앱 나열

PowerShell에서 특정 형식의 Windows 앱 나열

설치된 모든 앱 목록을 보려면 관리자 권한 PowerShell 창을 열고 다음을 입력하세요.

Get-AppxPackage -AllUsers | Select Name

그러면 설치된 앱 목록이 생성됩니다. 예:

Microsoft.WindowsCalculator
NAVER.LINEwin8
4DF9E0F8.Netflix

접두어를 표시하지 않는 목록을 가져와야 합니다. 예:

WindowsCalculator
LINEwin8
Netflix

구두점 앞에 오는 접두어 없이 설치된 앱 목록을 어떻게 얻을 수 있나요?

답변1

접근 방식을 리터럴로 사용하면 이름에서 마지막으로 분리된 요소를 얻을 수 있지만 버전 정보와 xaml 유형이 추가된 앱의 .항목이 많이 있습니다 .0,1,2,3,4,6,00,xaml

Get-AppxPackage -AllUsers | Select -Expand Name|%{"{0,-40} {1}" -f $_.split(".")[-1],$_}

샘플 출력:

BrokerPlugin                             Microsoft.AAD.BrokerPlugin
BioEnrollment                            Microsoft.BioEnrollment
LockApp                                  Microsoft.LockApp
MicrosoftEdge                            Microsoft.MicrosoftEdge
PPIProjection                            Microsoft.PPIProjection
ChxApp                                   Microsoft.Windows.Apprep.ChxApp
AssignedAccessLockApp                    Microsoft.Windows.AssignedAccessLockApp
CloudExperienceHost                      Microsoft.Windows.CloudExperienceHost
ContentDeliveryManager                   Microsoft.Windows.ContentDeliveryManager
Cortana                                  Microsoft.Windows.Cortana
ParentalControls                         Microsoft.Windows.ParentalControls
SecondaryTileExperience                  Microsoft.Windows.SecondaryTileExperience
SecureAssessmentBrowser                  Microsoft.Windows.SecureAssessmentBrowser
XboxGameCallableUI                       Microsoft.XboxGameCallableUI
ContactSupport                           Windows.ContactSupport
immersivecontrolpanel                    windows.immersivecontrolpanel
MiracastView                             Windows.MiracastView
PrintDialog                              Windows.PrintDialog
3                                        Microsoft.NET.Native.Runtime.1.3
3                                        Microsoft.NET.Native.Runtime.1.3
3                                        Microsoft.NET.Native.Framework.1.3
3                                        Microsoft.NET.Native.Framework.1.3

관련 정보