Get-AppxPackage를 입력하면

깔려있는 앱의 이름과 내역들이 쫘아아악~!! 나옵니다.



만약에

여기있는 ‘빙뉴스’를 지우고 싶다. 이름도 빙구같고 쓸모도 없으죠?

저기 첫째줄 Name에 Microsoft.BingNews라고 나와있는걸 볼 수 있습니다.

Microsoft. 뒤에 있는것만 보시면 됩니다 이제!

 

Get-AppxPackage *bingnews* | Remove-AppxPackage

이렇게 쳐주시면 삭제가 되는 것 이지요!!!



 

Name              : Microsoft.MicrosoftEdge
Name              : Microsoft.XboxGameCallableUI
Name              : Microsoft.Microsoft3DViewer
Name              : Microsoft.MicrosoftEdgeDevToolsClient
Name              : Microsoft.MSPaint
Name              : Microsoft.GetHelp
Name              : Microsoft.MicrosoftStickyNotes
Name              : Microsoft.Messaging

 

 

->

 

Get-AppxPackage *MicrosoftEdge* | Remove-AppxPackage

Get-AppxPackage *XboxGameCallableUI* | Remove-AppxPackage

Get-AppxPackage *Microsoft3DViewer* | Remove-AppxPackage

Get-AppxPackage *MSPaint* | Remove-AppxPackage

Get-AppxPackage *GetHelp* | Remove-AppxPackage

Get-AppxPackage *MicrosoftStickyNotes* | Remove-AppxPackage

Get-AppxPackage *Messaging* | Remove-AppxPackage

 

 

 

 

Get-AppxPackage | Select Name , PackageFullName

This command will show the name of the app and the PackageFullName and omit the undesired information.

 

To remove all built in app from all user accounts in win 10

  • Get-AppxPackage -AllUsers | Remove-AppxPackage

To remove all modern apps from system account

  • Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online

Use the following commands to remove a specific app:

Uninstall Skype app

  • get-appxpackage *messaging* | remove-appxpackage

Uninstall Sway

  • get-appxpackage *sway* | remove-appxpackage

Uninstall Phone:

  • get-appxpackage *commsphone* | remove-appxpackage

Uninstall Phone Companion:

  • get-appxpackage *windowsphone* | remove-appxpackage

Uninstall Phone and Phone Companion apps together:

  • get-appxpackage *phone* | remove-appxpackage

Uninstall Calendar and Mail apps together:

  • get-appxpackage *communicationsapps* | remove-appxpackage

Uninstall People:

  • get-appxpackage *people* | remove-appxpackage

Uninstall Groove Music:

  • get-appxpackage *zunemusic* | remove-appxpackage

Uninstall Movies & TV:

  • get-appxpackage *zunevideo* | remove-appxpackage

Uninstall Groove Music and Movies & TV apps together:

  • get-appxpackage *zune* | remove-appxpackage

Uninstall Money:

  • get-appxpackage *bingfinance* | remove-appxpackage

Uninstall News:

  • get-appxpackage *bingnews* | remove-appxpackage

Uninstall Sports:

  • get-appxpackage *bingsports* | remove-appxpackage

Uninstall Weather:

  • get-appxpackage *bingweather* | remove-appxpackage

Uninstall Money, News, Sports and Weather apps together:

  • get-appxpackage *bing* | remove-appxpackage

Uninstall OneNote:

  • get-appxpackage *onenote* | remove-appxpackage

Uninstall Alarms & Clock:

  • get-appxpackage *alarms* | remove-appxpackage

Uninstall Calculator:

  • get-appxpackage *calculator* | remove-appxpackage

Uninstall Camera:

  • get-appxpackage *camera* | remove-appxpackage

Uninstall Photos:

  • get-appxpackage *photos* | remove-appxpackage

Uninstall Maps:

  • get-appxpackage *maps* | remove-appxpackage

Uninstall Voice Recorder:

  • get-appxpackage *soundrecorder* | remove-appxpackage

Uninstall Xbox:

  • get-appxpackage *xbox* | remove-appxpackage

Uninstall Microsoft Solitaire Collection:

  • get-appxpackage *solitaire* | remove-appxpackage

Uninstall Get Office:

  • get-appxpackage *officehub* | remove-appxpackage

Uninstall Get Skype:

  • get-appxpackage *skypeapp* | remove-appxpackage

Uninstall Get Started:

  • get-appxpackage *getstarted* | remove-appxpackage

Uninstall 3D Builder:

  • get-appxpackage *3dbuilder* | remove-appxpackage

Uninstall Windows Store:

  • get-appxpackage *windowsstore* | remove-appxpackage
2019. 6. 17. 10:13. RSS feed. came from other blogs. Leave a Response.
Posted in etc.. Top