본문 바로가기

컴퓨터 관련 정보/강좌 & 사용Tip

윈도우10 2004에서 코타나 삭제하는 방법 알아보기.

윈도우10 2004에서 코타나 삭제하는 방법 알아보기.

한글 윈도우에서 삭제 불가능한 코타나(Cortana)를 삭제 하는 방법을 알아 보겠습니다. 이 글은 윈도우 버전 2004에 해당 하는 글 입니다.


영문 윈도우를 사용하신다면 유용하게 사용할수도 있는 코타나(Cortana)가 한글 윈도우에서는 애물단지일겁니다. 그래서 한글 윈도우에서 코타나(Cortana)를 삭제하는 방법을 알아 보겠습니다.


윈도우 키 + X키를 누르시면 위 메뉴가 뜨는데 "Windows PowerShell(관리자)(A)"를 선택 하세요.


Windows PowerShell이 열리면 아래 명령어를 입력하고 엔터를 누르시면 코타나(Cortana)가 삭제 됩니다.


Get-AppxPackage -allusers Microsoft.549981C3F5F10 | Remove-AppxPackage

위 명령어를 마우스로 드래그, 복사 하셔서 Windows PowerShell에서 마우스 우클릭 하시면 붙혀넣기 됩니다.


간단하게 코타나가 삭제 되었습니다. 삭제된 코타나를 다시 설치 하시려면 아래 링크를 이용하세요.


Microsoft Store에서 패키지 를 다운로드 하여 Cortana 앱을 다시 설치할 수 있습니다 .


Windows PowerShell 명령어를 이용해서 기본설치되는 프로그램 삭제가 가능한데 목록은 아래와 같습니다.


To uninstall 3D Builder:

get-appxpackage *3dbuilder* | remove-appxpackage


To uninstall Alarms & Clock:

get-appxpackage *alarms* | remove-appxpackage


To uninstall App Connector:

get-appxpackage *appconnector* | remove-appxpackage


To uninstall App Installer:

get-appxpackage *appinstaller* | remove-appxpackage


To uninstall Calendar and Mail apps together:

get-appxpackage *communicationsapps* | remove-appxpackage


To uninstall Calculator:

get-appxpackage *calculator* | remove-appxpackage


To uninstall Camera:

get-appxpackage *camera* | remove-appxpackage


To uninstall Feedback Hub:

get-appxpackage *feedback* | remove-appxpackage


To uninstall Get Office:

get-appxpackage *officehub* | remove-appxpackage


To uninstall Get Started or Tips:

get-appxpackage *getstarted* | remove-appxpackage


To uninstall Get Skype:

get-appxpackage *skypeapp* | remove-appxpackage


To uninstall Groove Music:

get-appxpackage *zunemusic* | remove-appxpackage


To uninstall Groove Music and Movies & TV apps together:

get-appxpackage *zune* | remove-appxpackage


To uninstall Maps:

get-appxpackage *maps* | remove-appxpackage


To uninstall Messaging and Skype Video apps together:

get-appxpackage *messaging* | remove-appxpackage


To uninstall Microsoft Solitaire Collection:

get-appxpackage *solitaire* | remove-appxpackage


To uninstall Microsoft Wallet:

get-appxpackage *wallet* | remove-appxpackage


To uninstall Microsoft Wi-Fi:

get-appxpackage *connectivitystore* | remove-appxpackage


To uninstall Money:

get-appxpackage *bingfinance* | remove-appxpackage


To uninstall Money, News, Sports and Weather apps together:

get-appxpackage *bing* | remove-appxpackage


To uninstall Movies & TV:

get-appxpackage *zunevideo* | remove-appxpackage


To uninstall News:

get-appxpackage *bingnews* | remove-appxpackage


To uninstall OneNote:

get-appxpackage *onenote* | remove-appxpackage


To uninstall Paid Wi-Fi & Cellular:

get-appxpackage *oneconnect* | remove-appxpackage


To uninstall Paint 3D:

get-appxpackage *mspaint* | remove-appxpackage


To uninstall People:

get-appxpackage *people* | remove-appxpackage


To uninstall Phone:

get-appxpackage *commsphone* | remove-appxpackage


To uninstall Phone Companion:

get-appxpackage *windowsphone* | remove-appxpackage


To uninstall Phone and Phone Companion apps together:

get-appxpackage *phone* | remove-appxpackage


To uninstall Photos:

get-appxpackage *photos* | remove-appxpackage


To uninstall Sports:

get-appxpackage *bingsports* | remove-appxpackage


To uninstall Sticky Notes:

get-appxpackage *sticky* | remove-appxpackage


To uninstall Sway:

get-appxpackage *sway* | remove-appxpackage


To uninstall View 3D:

get-appxpackage *3d* | remove-appxpackage


To uninstall Voice Recorder:

get-appxpackage *soundrecorder* | remove-appxpackage


To uninstall Weather:

get-appxpackage *bingweather* | remove-appxpackage


To uninstall Windows Holographic:

get-appxpackage *holographic* | remove-appxpackage


To uninstall Xbox:

get-appxpackage *xbox* | remove-appxpackage 


위 과정을 프로그램을 이용해서 삭제하는 방법도 있는데 방법은 아래 링크 글 참고 하세요.



프로그램에서는 코타나가 삭제안되니 코타나는 이 글대로 하셔야 삭제가 가능합니다.^^

 

참고로 삭제된 기본앱을 모두 살리는 방법은 Windows PowerShell 명령어 한줄로 가능합니다.


Get-AppXPackage -allusers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}


위 명령어를 Windows PowerShell에서 입력하고 엔터를 누르시면 삭제한 모든 앱을 재설치 해 줍니다.