3단계로 PowerShell을 사용하여 Windows 10 앱을 제거하는 방법

Windows 10에는 캘린더, 메일, 카메라(Calendar, Mail, Camera,) 또는 사진(Photos) 과 같은 몇 가지 사전 설치된 범용 앱이 함께 제공됩니다 . 어떤 사람들은 그것들을 좋아하고 유용하다고 생각하지만 다른 사람들은 그렇지 않습니다. Windows 10 장치에서 이러한 번들 앱 중 일부를 원하지 않는 경우 시스템에서 제거할 수 있는지 궁금할 수 있습니다. 기본 제공 앱 중 일부는 마우스 오른쪽 버튼으로 클릭하고 제거(Uninstall) 옵션을 선택하여 제거할 수 있지만 일부는 이 옵션을 제공하지 않습니다. Microsoft 는 (Microsoft)Windows 10 에서 (Windows 10)Microsoft 의 의도된 사용자 경험(user experience) 을 제공하는 데 필요한 핵심 앱으로 간주하기 때문 입니다. PowerShell 을 사용하여 제거 하는 방법은 다음과 같습니다 .(Windows 10)원하지 않는 Windows 10 앱:

1단계(Step 1) . PowerShell 을 관리자로 엽니 다.

먼저 (First)PowerShell 을 관리자로 실행해야 합니다 . 그러나 바쁘고 다른 기사를 읽고 싶지 않다면 관리자 권한으로 PowerShell 을 시작하는 빠른 방법 은 Cortana검색 상자 에 (search box)"powershell" 을 입력 하고 마우스 오른쪽 버튼을 클릭하거나 "Windows PowerShell" 을 길게 누르는 것입니다. 그런 다음 (tap and hold)"관리자 권한으로 실행"("Run as administrator.") 을 클릭하거나 누릅니다 .

Windows 10에서 PowerShell î 검색 및 시작

사용자 계정 컨트롤 알림(User Account Control notification) 이 표시 되면 (Yes) 를 클릭하거나 탭하여 PowerShell 실행을 승인합니다 .

PowerShell을 관리자로 실행하기 위한 사용자 계정 컨트롤 알림

PowerShell 이 ​​실행 되면 아래 이미지(image below) 와 유사한 창이 표시되어야 합니다 .

Windows 10의 PowerShell

2단계(Step 2) . 제거하려는 Windows 10 앱 의 전체 패키지 이름(package name) 찾기

Windows 10 기본 제공 앱(built-in apps) 을 제거하려면 이러한 각 앱에 대해 특정 명령을 실행해야 합니다.

문제는 이 명령을 제대로 실행 하려면 제거하려는 앱 의 전체 패키지 이름 을 알아야 한다는 것입니다. (package name)이름을 찾으려면 먼저 Windows 10 컴퓨터에 설치된 모든 앱을 나열해야 합니다. PowerShell 에서 이 목록을 표시 하려면 다음 명령을 실행하고 Enter (command and press) (Enter) 를 누릅니다 . Get_-AppxPackage_."

PowerShell의 Get-AppxPackage 명령

PowerShell 은 Windows 10 컴퓨터에 설치된 앱을 표시하기 시작합니다.

PowerShell에서 Get-AppxPackage 명령의 출력

PowerShell 을 스크롤하여 제거하려는 앱을 찾습니다. 목록에서 각 앱의 이름(Name) 필드 를 보면 빠르게 식별할 수 있습니다 . 예를 들어 카메라(Camera) 앱의 이름은 "Microsoft.WindowsCamera"입니다.("Microsoft.WindowsCamera.")

Windows 10의 Microsoft Windows 카메라 앱

또는 PowerShell 에서 (PowerShell)찾기(Find) 도구를 사용하여 앱 이름을 검색할 수 있습니다 . Powershell 창의 제목 표시줄(title bar) 을 마우스 오른쪽 버튼으로 클릭하고 "Edit -> Find."

PowerShell의 찾기 명령

앱 이름의 일부인 텍스트(이 경우 " 카메라(camera) ")를 입력 하고 검색하는 앱의 이름을 얻을 때까지 다음 찾기(Find Next) 를 클릭하거나 탭 합니다.

PowerShell에서 앱 이름 찾기

그러나 제거 명령을 실행하려면 앱 의 이름 이 아니라 (Name)PackageFullName이 필요합니다. (PackageFullName.)클립보드에 복사하거나 적어두고 이 튜토리얼의 다음 섹션으로 이동합니다.

Windows 10 앱의 PackageFullName

3단계(Step 3) . PowerShell 을 사용하여 (PowerShell)Windows 10 앱 제거

Windows 10 앱 을 제거하기 위해 실행해야 하는 PowerShell 명령 은 " (PowerShell)Remove-AppxPackage [앱 이름](Remove-AppxPackage [App Name]) 입니다."

위의 명령 모델 에서 (command model)"[앱 이름]"("[App Name]") 을 제거하려는 앱 의 전체 패키지 이름(package name) 으로 바꿔야 합니다 . 예를 들어 카메라 앱을 제거하려면 " (Camera)Remove-AppxPackage Microsoft.WindowsCamera_5.54.3002.0_x64__8wekyb3d8bbwe " 와 유사한 명령을 실행해야 합니다.

PowerShell의 Remove-AppxPackage 명령

다행히도 일을 더 간단하게 하기 위해 Powershell 을 사용하면 앱 이름에 키워드를 사용할 수 있으며 이것이 다음 섹션에서 보여드릴 것입니다. Windows 10 과 함께 제공되는 앱을 제거하기 위해 실행해야 하는 PowerShell 명령을 나열합니다 .

Windows 10 핵심 앱(core apps) 에 대한 제거 명령

다음은 Windows 10(Windows 10) 에 사전 설치된 범용 앱을 제거하기 위해 실행해야 하는 PowerShell 명령 목록입니다 .

  • 3D 빌더(3D Builder) 제거 : Get_-AppxPackage *3dbuilder* | 제거-AppxPackage_
  • ACG 플레이어(ACG Player:) 제거 : Get-AppxPackage *acg * | Remove-AppxPackage
  • 알람 및 시계(Alarms and Clock) 제거 : Get-AppxPackage * alarms* | 제거-AppxPackage
  • 계산기(Calculator) 제거 : Get-AppxPackage *계산기 * | Remove-AppxPackage
  • 일정 및 메일(Calendar and Mail) 제거 : Get-AppxPackage * 통신* | 제거-AppxPackage
  • 카메라(Camera) 제거 : Get-AppxPackage *camera * | Remove-AppxPackage
  • Dolby Access 제거 : Get-AppxPackage *dolbyaccess * | Remove-AppxPackage
  • Fitbit Coach 제거 : Get-AppxPackage *fitbitcoach * | 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 * maps* | 제거-AppxPackage
  • Microsoft Solitaire Collection 제거 : Get-AppxPackage *solitairecollection * | Remove-AppxPackage
  • (Money) 제거 : Get-AppxPackage *bingfinance * | Remove-AppxPackage
  • 영화 및 TV(Movies & TV) 제거 : Get-AppxPackage *zunevideo * | Remove-AppxPackage
  • 제거 뉴스(News) : Get-AppxPackage * bingnews* | 제거-AppxPackage
  • OneNote 제거 : Get-AppxPackage *onenote * | Remove-AppxPackage
  • 사람(People) 제거 : Get-AppxPackage * 사람* | 제거-AppxPackage
  • 전화 도우미(Phone Companion) 제거 : Get-AppxPackage *windowsphone * | Remove-AppxPackage
  • Phototastic 콜라주(Phototastic Collage:) 제거 : Get-AppxPackage *phototastic * | Remove-AppxPackage
  • 사진(Photos) 제거 : Get-AppxPackage * 사진* | 제거-AppxPackage
  • PicsArt 제거 : Get-AppxPackage *picsart * | Remove-AppxPackage
  • Plex 제거 : Get-AppxPackage *plex * | Remove-AppxPackage
  • 스토어(Store) 제거 : Get-AppxPackage * windowsstore* | 제거-AppxPackage
  • 스포츠(Sports) 제거 : Get-AppxPackage * bingsports* | 제거-AppxPackage
  • 음성 녹음기(Voice Recorder) 제거 : Get-AppxPackage *soundrecorder * | Remove-AppxPackage
  • 날씨(Weather) 제거 : Get-AppxPackage *bingweather * | Remove-AppxPackage
  • Xbox 제거 : Get-AppxPackage * xbox* | 제거-AppxPackage

제거 명령을 실행할 때마다 PowerShell 은 아래와 유사한 진행률 표시줄 을 표시합니다.(progress bar)

PowerShell에서 Remove-AppxPackage 명령 사용

프로세스가 완료되면 PowerShell 창은 화면에서 제거 진행 정보(progress information) 를 제거하고 컨트롤을 명령줄(command line) 로 반환합니다 .

Remove-AppxPackage를 사용하여 PowerShell에서 앱 제거

어떤 Windows 10 기본 앱(default apps) 을 제거했습니까?

보시다시피 몇 가지 고급 PowerShell 명령 이 필요한 경우에도 Windows 10 기본 제공 범용 앱을 모두 제거할 수 있습니다. (Windows 10)이러한 앱이 필요하지 않거나 필요하지 않은 경우 몇 분 안에 제거할 수 있습니다. 마음이 바뀌고 다시 원하면 이 자습서를 읽으십시오 . PowerShell 을 사용하여 모든 (PowerShell)Windows 10 기본 앱(default apps) 을 다시 설치하는 방법 . 어떤 (Which)Windows 10 기본 앱(default apps) 을 제거하시겠습니까? 아래에 의견을 남겨 알려주십시오.



About the author

저는 소프트웨어 리뷰어이자 생산성 전문가입니다. Excel, Outlook 및 Photoshop과 같은 다양한 소프트웨어 응용 프로그램에 대한 소프트웨어 리뷰를 검토하고 작성합니다. 내 리뷰는 충분한 정보를 제공하며 애플리케이션 품질에 대한 객관적인 통찰력을 제공합니다. 2007년부터 소프트웨어 리뷰를 작성해 왔습니다.



Related posts