상세 컨텐츠

본문 제목

[윈도우] 윈도우 10 기본 앱 삭제 및 복구

1. 소프트웨어/1.3. 윈도우

by 창민 2019. 1. 23. 18:27

본문

윈도우 10 기본 앱 삭제

    1. PowerShell 관리자 권한으로 실행
    2. 아래 목록 중 삭제하고 싶은 프로그램의 명령어를 복붙한다.
3D Builder(3D빌더)
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 Office(오피스)
Get-AppxPackage *officehub* | Remove-AppxPackage


Get Skype(스카이프)
Get-AppxPackage *skypeapp* | Remove-AppxPackage


Get Started
Get-AppxPackage *getstarted* | Remove-AppxPackage


Groove Music(그루브 뮤직)
Get-AppxPackage *zunemusic* | Remove-AppxPackage


Maps(지도)
Get-AppxPackage *windowsmaps* | Remove-AppxPackage


Microsoft Solitaire Collection
Get-AppxPackage *solitairecollection* | Remove-AppxPackage


Money
Get-AppxPackage *bingfinance* | Remove-AppxPackage


Movies & TV(영화 및 TV)
Get-AppxPackage *zunevideo* | Remove-AppxPackage


News(뉴스)
Get-AppxPackage *bingnews* | Remove-AppxPackage


OneNote(원노트)
Get-AppxPackage *onenote* | Remove-AppxPackage


People(피플)
Get-AppxPackage *people* | Remove-AppxPackage


Phone Companion(폰 컴패니언)
Get-AppxPackage *windowsphone* | 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


Your Phone
Get-AppxPackage *Microsoft.YourPhone* -AllUsers | Remove-AppxPackage

 

윈도우 10 기본 앱 복구하기

  1. PowerShell 관리자 권한으로 실행
  2. 아래 명령어 입력(모든 앱이 복구됨)
    Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}

 

참고 자료

  • https://prolite.tistory.com/1303
  • https://jun7222.tistory.com/268
  • https://livingreason.tistory.com/298

관련글 더보기

댓글 영역