윈도우10

윈도우 10에서 사용하지 않는 앱을 삭제하려면..

sungtg 2017. 2. 28. 15:14

윈도우 10이 설치 되면서 기본적으로 설치되는 앱들을 삭제하려 합니다.


날씨, 3d builder, 뉴스 등 용량을 많이 차지 하고, 사용을 거의 하지 않는 다면 파워쉘을 이용해서 삭제를 하셔도 됩니다.


1. 먼저, 사용 중인 모든 프로그램을 닫으세요


2. 시작메뉴에서  powershell를 검색합니다.


3. windows powershell 를 찾고 나서, 관리자 권한으로 실행을 시키세요




4. 파워쉘을 처음 사용한다면 

맨 먼저 

파워쉘 창에


Set-ExecutionPolicy bypass  라고 치고 엔터키를 누르세요..   



파워쉘은 정책이 있어서 정책을 바꾼 다음에 명령어를 넣어야 합니다.

정책을 바꾸지 않으면 빨간 색의 에러를 보게 됩니다.


 Set-ExecutionPolicy 다음에 넣은 명령어를 파라미터라고 하는데...

주로 사용하는 파라미터의 명령어 사용법입니다.


Bypass

– 아무 것도 차단되지 않으며 경고나 메시지가 표시되지 않습니다.


Unrestricted

-서명되지 않은 스크립트를 실행할 수 있습니다. 


RemoteSigned

- 스크립트를 실행할 수 있습니다.



5. 다음에 파워쉘 창에서 삭제하고 싶은 앱을 삭제하는 명령어을 복사해서 붙여넣기 해서 삭제를 하시면 됩니다.




3D 빌더        Get-AppxPackage *3dbuilder* | Remove-AppxPackage

알람 및 시계 Get-AppxPackage *windowsalarms* | Remove-AppxPackage

계산기        Get-AppxPackage *windowscalculator* | Remove-AppxPackage

카메라        Get-AppxPackage *windowscamera* | Remove-AppxPackage

오피스     Get-AppxPackage *officehub* | Remove-AppxPackage

그루브   Get-AppxPackage *zunemusic* | Remove-AppxPackage

메일 / 캘린더 Get-AppxPackage *windowscommunicationapps* | Remove-AppxPackage

지도        Get-AppxPackage *windowsmaps* | Remove-AppxPackage

Solitaire Get-AppxPackage *solitairecollection* | Remove-AppxPackage

영화 및 TV Get-AppxPackage *zunevideo* | Remove-AppxPackage

뉴스        Get-AppxPackage *bingnews* | Remove-AppxPackage

OneNote        Get-AppxPackage *onenote* | Remove-AppxPackage

피플        Get-AppxPackage *people* | Remove-AppxPackage

전화     Get-AppxPackage *windowsphone* | Remove-AppxPackage

사진     Get-AppxPackage *photos* | Remove-AppxPackage

Skype   Get-AppxPackage *skypeapp* | Remove-AppxPackage

저장     Get-AppxPackage *windowsstore* | Remove-AppxPackage

팁       Get-AppxPackage *getstarted* | Remove-AppxPackage

녹음기   Get-AppxPackage *sound recorder* | Remove-AppxPackage

날씨        Get-AppxPackage *bingweather* | Remove-AppxPackage

Xbox            Get-AppxPackage *xboxapp* | Remove-AppxPackage




=========================================


다시 복원하고 싶으면 아래와 같이 명령어를 치면 됩니다. 


1. 기본적으로 설치되는 앱을 전체 복원이 재설치 합니다. 시간은 많이 걸릴 수 있겠지요


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



2. 설치 과정에서 파워쉘 창에 빨간색으로 된 에러가 무수히 떨어 질 겁니다.  

   신경쓰지 말고, 끝날 때까지 기다리면 됩니다.

   그런 후 재부팅 해서 다시 사용하면 됩니다. 

    


   

3. 사용하지 않아서 삭제를 했으니까, 굳이 다시 모두 설치 할 필요는 없겠네요..

   스토어에서 원하는 앱만 설치를 하는 것이 좋겠습니다.