참고: https://docs.microsoft.com/en-us/windows/application-management/apps-in-windows-10
- Provisioned Windows apps
Get-AppxProvisionedPackage -Online | Format-Table DisplayName, PackageName - System apps
Get-AppxPackage -PackageTypeFilter Main | ? { $_.SignatureKind -eq “System” } | Sort Name | Format-Table Name, InstallLocation - Installed Windows apps
<기본 앱 삭제하기>
1.PowerShell을 관리자 모드로 실행한다
Get-AppxPackage
3D 빌더(3D Builder)
Get-AppxPackage 3dbuilder | Remove-AppxPackage
알람과 시계(Alarms and Clock)
Get-AppxPackage windowsalarms | Remove-AppxPackage
계산기(Calculator)
Get-AppxPackage windowscalculator | Remove-AppxPackage
캘린더와 메일(Calendar and Mail)
Get-AppxPackage windowscommunicationsapps | Remove-AppxPackage
카메라(Camera)
Get-AppxPackage windowscamera | Remove-AppxPackage
기본 제공된 오피스
Get-AppxPackage officehub | Remove-AppxPackage
스카이프(Get Skype)
Get-AppxPackage skypeapp | Remove-AppxPackage
기본 제공 음악 재생(그루브 뮤직-Groove Music)
Get-AppxPackage zunemusic | Remove-AppxPackage
지도(Maps)
Get-AppxPackage windowsmaps | Remove-AppxPackage
무비 앤 TV(Movies & TV)
Get-AppxPackage zunevideo | Remove-AppxPackage
뉴스(News)
Get-AppxPackage bingnews | Remove-AppxPackage
원노트(OneNote)
Get-AppxPackage onenote | Remove-AppxPackage
피플(People)
Get-AppxPackage people | Remove-AppxPackage
사진관리 프로그램(Photos)
Get-AppxPackage photos | Remove-AppxPackage
앱스토어(Store)
Get-AppxPackage windowsstore | Remove-AppxPackage
스포츠(Sports)
Get-AppxPackage bingsports | Remove-AppxPackage
보이스 레코더(Voice Recorder)
Get-AppxPackage soundrecorder | Remove-AppxPackage
날씨(Weather)
Get-AppxPackage bingweather | Remove-AppxPackage
엑스박스(Xbox)
Get-AppxPackage xboxapp | Remove-AppxPackage
Get Started
Get-AppxPackage getstarted | Remove-AppxPackage
Microsoft Solitaire Collection
Get-AppxPackage solitairecollection | Remove-AppxPackage
Money
Get-AppxPackage bingfinance | Remove-AppxPackage
Phone Companion
Get-AppxPackage windowsphone | Remove-AppxPackage
<기본 앱 전체 다시 설치하기>
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}