윈도우11을 설치할 때 같이 설치되는 기본 앱은 설정의 설치된 앱에서 초기화만 가능할 뿐 삭제는 불가능하게 되어있다.
때문에 이러한 앱들을 삭제하기 위해서는 파워쉘 명령어를 사용해서 삭제를 진행해야 하는 데 명령어를 사용한다고는 하지만 방법 자체는 그리 어렵지 않다.
윈도우11 기본 설치 앱 삭제 방법
1. 파워쉘 실행.
시작에서 [Windows PowerShell]을 검색 후 관리자 권한으로 실행하자.
2. 설치된 앱 목록 확인.
파워쉘 창이 나타나면 아래의 명령어를 입력하여 AppxPackage를 통해 설치된 앱의 이름 확인하자.
Get-AppxPackage | Sort-Object Name | ft Name, PackageFullName -AutoSize
3. 기본 설치 앱 삭제하기.
기본 설치 앱을 확인했다면 이름을 확인한 뒤 아래의 명령어에 삭제할 앱의 이름을 넣고 실행하면 앱을 삭제할 수 있다.
(앱과 관련된 패키지가 많다면 *같은 와일드카드를 사용해서 한 번에 삭제도 할 수 있다)
Get-AppxPackage -AllUsers 앱이름 | Remove-AppxPackage
이름이 영어로 되어있어 찾기 힘들다면 아래의 명령어를 참고하자.
다만 패키지 이름은 업데이트로 인하여 변경되는 경우가 있기 때문에 명령어가 실행되지 않는다면 목록을 확인하고 찾는 것이 좋다.
Get-AppxPackage -AllUsers *3DViewer* | Remove-AppxPackage #3D 뷰어
Get-AppxPackage -AllUsers *windowsalarms* | Remove-AppxPackage #알람 및 시계
Get-AppxPackage -AllUsers *windowscalculator* | Remove-AppxPackage #계산기
Get-AppxPackage -AllUsers *windowscommunicationsapps* | Remove-AppxPackage #메일 및 달력
Get-AppxPackage -AllUsers *windowscamera* | Remove-AppxPackage #카메라
Get-AppxPackage -AllUsers *zunemusic* | Remove-AppxPackage #Groove 음악
Get-AppxPackage -AllUsers *windowsmaps* | Remove-AppxPackage #지도
Get-AppxPackage -AllUsers *zunevideo* | Remove-AppxPackage #영화 & TV
Get-AppxPackage -AllUsers *mspaint* | Remove-AppxPackage #Paint 3D
Get-AppxPackage -AllUsers *photos* | Remove-AppxPackage #사진
Get-AppxPackage -AllUsers *skypeapp* | Remove-AppxPackage #스카이프
Get-AppxPackage -AllUsers *ScreenSketch* | Remove-AppxPackage #스크린 스케치
Get-AppxPackage -AllUsers *Microsoft.StickyNotes* | Remove-AppxPackage #스티키 메모
Get-AppxPackage -AllUsers *soundrecorder* | Remove-AppxPackage #음성 녹음기
Get-AppxPackage -AllUsers *bingweather* | Remove-AppxPackage #날씨
Get-AppxPackage -AllUsers *Microsoft.People* | Remove-AppxPackage #사람
Get-AppxPackage -AllUsers *Microsoft.Soliataire* | Remove-AppxPackage #마이크로소프트 솔리테어
Get-AppxPackage -AllUsers *Microsoft.Office.OneNote* | Remove-AppxPackage #원노트
Get-AppxPackage -AllUsers *YourPhone* | Remove-AppxPackage #휴대폰과 연결
그 외 내용
삭제한 앱은 윈도우 스토어를 통해서 다시 설치하는 것이 가능하며 어렵지 않다고는 해도 파워쉘에서 명령어의 사용 자체가 어렵거나 불편하다면 Revo Uninstaller 같은 프로그램 삭제 앱을 사용하면 조금 더 편하게 앱을 삭제할 수 있을 것이다.