귀차니즘

윈10 모든 앱 제거 PowerShell
Remove all apps Win10 PowerShell
How to remove all bundled apps in Windows 10

Run as administrator open PowerShell
관리자 권한으로 PowerShell을 실행

Type the following command to remove all Modern apps from the system account:
시스템 계정에서 모든 현대적인 응용 프로그램을 제거하려면 다음 명령을 입력 :
Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online

Type the following command to remove all Modern apps from your current user accountstrong>:
현재 사용자 accountstrong>에서 모든 현대적인 응용 프로그램을 제거하려면 다음 명령을 입력 :
Get-AppXPackage | Remove-AppxPackage

remove Metro apps for all user accounts:
모든 User <username> 계정에 대해 메트로 앱을 제거 :
Get-AppXPackage -User <username> | Remove-AppxPackage

remove Metro apps for all user accounts:
모든 사용자 계정에 대해 메트로 앱을 제거 :
Get-AppxPackage -AllUsers | Remove-AppxPackage

영어를 못하는 관계로 번역이 안되요..사이트 참고..

 

출처 : http://manian.com/index.php?mid=lecture&search_keyword=10&search_target=title&page=4&division=-7267025&last_division=0&document_srl=6679169