Windows 10에는 시작 메뉴, Cortana, Microsoft Edge 브라우저, Xbox, Microsoft Store, 사진, 그림판 3D, OneNote, Skype 등 다양한 기본 제공 유니버설 앱이 포함되어 있습니다. 이러한 앱들은 Windows 10을 설치하거나 업그레이드할 때 자동으로 함께 설치됩니다.
그런데 최근 Windows 10 업데이트 이후 일부 앱이 사라지거나, 설치된 앱이 제대로 작동하지 않고 충돌하거나 응답하지 않는 경우가 종종 발생합니다. 여러 앱이 동시에 고장 나는 경우도 있습니다.
1단계: 설정에서 앱 초기화 시도
앱에 문제가 생겼다면 가장 먼저 아래 방법으로 해당 앱을 초기화해 보세요.
- Windows + I 키를 눌러 설정 앱을 엽니다.
- 앱 → 앱 및 기능 메뉴로 이동합니다.
- 문제가 있는 앱을 선택하고 고급 옵션을 클릭합니다.
- 아래로 스크롤하여 초기화 버튼을 클릭합니다.
- 확인 창에서 다시 초기화를 누르면 앱이 기본 상태로 복원됩니다.

2단계: PowerShell로 기본 앱 재등록하기
초기화로도 문제가 해결되지 않거나, Windows 10 1903 업데이트 후 앱이 사라졌다면 Windows PowerShell에서 몇 가지 명령어를 실행하여 기본 앱을 다시 설치(재등록)할 수 있습니다.
모든 기본 제공 앱 한 번에 재설치하기
- 관리자 권한으로 PowerShell을 실행합니다. Win + X 키를 누른 후 PowerShell(관리자)을 선택하세요.
- 아래 명령어를 복사하여 붙여넣고 Enter 키를 눌러 실행합니다.
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

이 명령은 현재 로그인한 계정에 대해 Windows 10의 모든 기본 앱을 다시 설치하려고 시도합니다. 모든 사용자 계정에 적용하려면 아래 명령어를 사용하세요.
Get-AppxPackage -Allusers | Foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}
명령 실행 중 이미 설치되어 있는 앱이 있으면 빨간색 오류 메시지가 표시될 수 있는데, 이는 무시해도 됩니다. 명령 실행이 끝나면 PC를 재시작한 후 앱 관련 문제가 해결되었는지 확인하세요.

특정 앱만 골라서 재등록하기
특정 앱 하나에만 문제가 있고 다른 앱은 정상적으로 작동한다면, 위의 전체 재등록 명령 대신 아래 명령어로 해당 앱만 다시 등록하는 것이 효율적입니다.
- Win + X를 누르고 PowerShell(관리자)을 다시 실행합니다.
- 관리자 PowerShell 창에 해당 앱의 명령어를 복사해 붙여넣고 Enter 키를 누릅니다.
주요 기본 앱별 재등록 명령어는 다음과 같습니다.
3D Builder
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *3DBuilder*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
알람 및 시계 (Alarms & Clock)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *WindowsAlarms*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
앱 커넥터 (App Connector)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *AppConnector*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
계산기 (Calculator)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *WindowsCalculator*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
캘린더 및 메일 (Calendar and Mail)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *windowscommunicationsapps*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
카메라 (Camera)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *WindowsCamera*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Candy Crush Soda Saga
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *CandyCrushSodaSaga*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
연결 (Connect)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *PPIProjection*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Contact Support
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *ContactSupport*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Cortana
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *Windows.Cortana*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
피드백 허브 (Feedback Hub)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *WindowsFeedbackHub*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Office 받기 (Get Office)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *MicrosoftOfficeHub*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
시작하기 (Get Started)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *GetStarted*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
메일 및 캘린더 (Mail and Calendar)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *windowscommunicationsapps*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
지도 (Maps)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *WindowsMaps*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
메시징 (Messaging)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *Messaging*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Microsoft Edge
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *MicrosoftEdge*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Microsoft Solitaire Collection
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *MicrosoftSolitaireCollection*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Money
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *BingFinance*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
영화 및 TV (Movies & TV)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *ZuneVideo*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
뉴스 (News)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *BingNews*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
OneNote
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *Office.OneNote*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
그림판 3D (Paint 3D)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *MSPaint*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
사람 (People)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *People*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
전화 (Phone)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *CommsPhone*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
휴대폰 도우미 (Phone Companion)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *WindowsPhone*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
사진 (Photos)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *Photos*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
설정 (Settings)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *immersivecontrolpanel*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Skype
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *SkypeApp*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
스포츠 (Sports)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *BingSports*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
스티커 메모 (Sticky Notes)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *MicrosoftStickyNotes*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Microsoft Store
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *microsoftStore*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Sway
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *Office.Sway*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *Twitter*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
녹음기 (Voice Recorder)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *WindowsSoundRecorder*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
날씨 (Weather)
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *BingWeather*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Xbox
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *XboxApp*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Xbox One SmartGlass
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *XboxOneSmartGlass*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
목록에 없는 앱 재등록하는 방법
Microsoft는 새로운 앱을 꾸준히 추가하고 있으므로, 문제가 되는 앱이 위 목록에 없을 수도 있습니다. 이 경우 아래 절차를 따르면 어떤 앱이든 직접 재등록할 수 있습니다.
- 관리자 PowerShell에서 Get-AppxPackage -AllUsers | Select Name, PackageFullName 을 입력하고 Enter 키를 누릅니다. 그러면 컴퓨터에 설치 가능한 패키지 목록이 표시됩니다.
- 재설치하려는 앱을 찾아 패키지 이름을 선택한 후 Ctrl + C로 복사하고 메모장에 붙여넣어 둡니다. (예: Microsoft.SkypeApp_11.8.204.0_x64__kzf8qxf38zg5c)
- 아래 명령어 형식에 맞춰 PackageFullName 부분을 방금 복사한 이름으로 바꿔 입력합니다.
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\PackageFullName\appxmanifest.xml" -DisableDevelopmentMode}
예를 들어 Skype를 재설치한다면 명령어는 다음과 같습니다.
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "C:\ProgramFiles\WindowsApps\Microsoft.SkypeApp_11.8.204.0_x64__kzf8qxf38zg5c\appxmanifest.xml" -DisableDevelopmentMode}
Enter 키를 누른 후 명령 실행이 완료될 때까지 기다립니다. 이후 PC를 재시작하고 해당 앱이 정상적으로 작동하는지 확인하세요.
마지막 수단: PC 초기화로 Windows 10 복구
위 방법들로도 문제가 해결되지 않는다면 PC 초기화 기능을 활용해 보세요. 파일과 폴더는 그대로 유지하면서 Windows 10을 다시 설치할 수 있습니다.
- 설정 앱을 엽니다.
- 업데이트 및 보안을 클릭합니다.
- 복구 메뉴로 이동합니다.
- '초기화' 항목에서 시작하기 버튼을 클릭합니다.

내 파일 유지 옵션을 선택한 후 화면의 안내에 따라 진행하면 파일을 삭제하지 않고 Windows 10을 초기화할 수 있습니다.

이 가이드가 Windows 10 사전 설치 앱을 복구하는 데 도움이 되었기를 바랍니다. 성공 여부나 추가 질문은 댓글로 알려주세요. 함께 읽으면 좋은 글:
- Windows 10 정품 인증 워터마크 영구 제거 방법
- 노트북이 절전 모드에서 깨어나지 않을 때 해결 방법
- Windows 10 오류 0xc000012f 잘못된 이미지(Bad Image) 오류 수정
- Windows 10 '이 앱은 보호를 위해 차단되었습니다' 오류 해결
- Windows 10 장치 드라이버 업데이트, 재설치, 롤백 방법