소프트웨어 자동 폴더 삭제 배치 파일 문의 드립니다.
2017.06.10 21:07
예전에 Suk님이 만들어 주신 앱삭제 배치 내용중에 일부분 입니다..
윈도우10 상태에서만 앱이 삭제가 되지..
앱 폴더는 그대로 남아 있더라구요.. 그래서 USB로 Win10 PE를 통해서 폴더를 하나하나
지정 해서 지우고 있습니다... 이걸 편하게 배치 파일로 지정 해주면 될듯 한데...
어렵더라구요..
그래서 배치 파일 잘 만드시는분 도움좀 얻고 싶어서요..
PE로 부팅해서 폴더명을 지정하면 자동으로 삭제 할수 있게 만들어 주실수 있는지요..
하나하나 지우려니 시간이 너무 오래 걸려서요..
C:\Program Files\WindowsApps
C:\Windows\InfusedApps\Applications
C:\Windows\InfusedApps\Packages
숨긴 폴더로 되어 있습니다..
여기 있는 App폴더만 지워도 C드라이브 용량을 많이 확보 할수 있거 깨끗하더라구요..
위에 적은 폴더명만 찾아서 지우기 너무 힘들어서 문의 드려 봅니다..
:: Facebook (Facebook)
powershell "Get-AppxPackage *Facebook* | Remove-AppxPackage"
:: Twitter (Twitter)
powershell "Get-AppxPackage *Twitter* | Remove-AppxPackage"
:: Netflix(Netflix)
powershell "Get-AppxPackage *Netflix* | Remove-AppxPackage"
:: Keeper Password Manager(Keeper Password Manager)
powershell "Get-AppxPackage *Keeper* | Remove-AppxPackage"
:: Phototastic Collage(Phototastic Collage)
powershell "Get-AppxPackage *PhototasticCollage* | Remove-AppxPackage"
:: 아스팔트8 (ParadiseBay)
powershell "Get-AppxPackage *Asphalt8Airborne* | Remove-AppxPackage"
:: CandyCrushSodaSaga (CandyCrushSodaSaga)
powershell "Get-AppxPackage *CandyCrushSodaSaga* | Remove-AppxPackage"
:: 마치 오브 엠파이어스 (MarchofEmpires)
powershell "Get-AppxPackage *MarchofEmpires* | Remove-AppxPackage"
:: Sudoku (Sudoku)
powershell "Get-AppxPackage *Sudoku* | Remove-AppxPackage"
:: 마인크레프트 (MinecraftUWP)
powershell "Get-AppxPackage *MinecraftUWP* | Remove-AppxPackage"
:: 파라다이스베이 (ParadiseBay)
powershell "Get-AppxPackage *ParadiseBay* | Remove-AppxPackage"
:: Wallet (Wallet)
powershell "Get-AppxPackage *Wallet* | Remove-AppxPackage"
:: 유료 Wi-Fi & 셀룰러 (OneConnect)
powershell "Get-AppxPackage *OneConnect* | Remove-AppxPackage"
:: 3D빌더 (3D Builder)
powershell "Get-AppxPackage *3DBuilder* | Remove-AppxPackage"
:: Messaging (메시지)
powershell "Get-AppxPackage *Messaging* | Remove-AppxPackage"
:: Get Office (Get Office)
powershell "Get-AppxPackage *MicrosoftOfficeHub* | Remove-AppxPackage"
:: One Note (OneNote)
powershell "Get-AppxPackage *Onenote* | Remove-AppxPackage"
댓글 [4]
-
suk 2017.06.10 22:51
-
그린보이 2017.06.11 00:00
와~~정말 정말 감사 합니다.. Suk님은 정말 천재 이신듯..
이제 PE부팅 해서 하나하나 찾아가며 파일 삭제 할필요 없겠네요..
윈도우10이 새롭게 나오면 앱삭제_리스트.TXT에 추가만 하면 자동으로 앱도 지우고 파일만 지워 지는거죠?
2개의 파일이 한몸이 되어 작동을 하는거고요.. 제가 이해를 잘했는지 모르겠네요..
저는 총 이렇해 지우고 사용 해요.. 그럼 이제 전에 주신 앱만 지우는 배치 파일은 필요가 없는거죠?
@prompt $s
@color 1f
@cd /d %~dp0
@title 앱 제거하기
@mode con cols=150 lines=1000
@setlocal enabledelayedexpansion@echo 관리자권한 확인용 >%windir%\admin.confirm || @(
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\admin.vbs"
echo UAC.ShellExecute "%~0", "", "", "runas", 1 >> "%temp%\admin.vbs"
wscript.exe "%temp%\admin.vbs" & del "%temp%\admin.vbs" & exit)
@del %windir%\admin.confirm@echo.
@echo.
@echo. ===== 지정된 앱을 제거합니다 =====
@echo.
@pause:: Facebook (Facebook)
powershell "Get-AppxPackage *Facebook* | Remove-AppxPackage":: Twitter (Twitter)
powershell "Get-AppxPackage *Twitter* | Remove-AppxPackage":: Netflix(Netflix)
powershell "Get-AppxPackage *Netflix* | Remove-AppxPackage":: Keeper Password Manager(Keeper Password Manager)
powershell "Get-AppxPackage *Keeper* | Remove-AppxPackage":: Phototastic Collage(Phototastic Collage)
powershell "Get-AppxPackage *PhototasticCollage* | Remove-AppxPackage":: 아스팔트8 (ParadiseBay)
powershell "Get-AppxPackage *Asphalt8Airborne* | Remove-AppxPackage":: CandyCrushSodaSaga (CandyCrushSodaSaga)
powershell "Get-AppxPackage *CandyCrushSodaSaga* | Remove-AppxPackage":: 마치 오브 엠파이어스 (MarchofEmpires)
powershell "Get-AppxPackage *MarchofEmpires* | Remove-AppxPackage":: Sudoku (Sudoku)
powershell "Get-AppxPackage *Sudoku* | Remove-AppxPackage":: 마인크레프트 (MinecraftUWP)
powershell "Get-AppxPackage *MinecraftUWP* | Remove-AppxPackage":: 파라다이스베이 (ParadiseBay)
powershell "Get-AppxPackage *ParadiseBay* | Remove-AppxPackage":: Wallet (Wallet)
powershell "Get-AppxPackage *Wallet* | Remove-AppxPackage":: 유료 Wi-Fi & 셀룰러 (OneConnect)
powershell "Get-AppxPackage *OneConnect* | Remove-AppxPackage":: 3D빌더 (3D Builder)
powershell "Get-AppxPackage *3DBuilder* | Remove-AppxPackage":: Messaging (메시지)
powershell "Get-AppxPackage *Messaging* | Remove-AppxPackage":: Get Office (Get Office)
powershell "Get-AppxPackage *MicrosoftOfficeHub* | Remove-AppxPackage":: One Note (OneNote)
powershell "Get-AppxPackage *Onenote* | Remove-AppxPackage":: 피플 (People)
powershell "Get-AppxPackage *People* | Remove-AppxPackage":: Skype (Skype)
powershell "Get-AppxPackage *SkypeApp* | Remove-AppxPackage":: 카드게임 (Microsoft Solitaire Collection)
powershell "Get-AppxPackage *solitairecollection* | Remove-AppxPackage":: 카메라 (Camera)
powershell "Get-AppxPackage *windowscamera* | Remove-AppxPackage":: XBOX (Xbox)
powershell "Get-AppxPackage *XboxApp* | Remove-AppxPackage":: XboxGameOverlay (XboxGameOverlay)
powershell "Get-AppxPackage *XboxGameOverlay* | Remove-AppxPackage":: XboxIdentityProvider (XboxIdentityProvider)
powershell "Get-AppxPackage *XboxIdentityProvider* | Remove-AppxPackage":: XboxSpeechToTextOverlay (XboxSpeechToTextOverlay)
powershell "Get-AppxPackage *XboxSpeechToTextOverlay* | Remove-AppxPackage":: Groove 뮤직 (Groove Music)
powershell "Get-AppxPackage *zunemusic* | Remove-AppxPackage":: 영화와 TV (Film and TV)
powershell "Get-AppxPackage *zunevideo* | Remove-AppxPackage"
@echo.
@echo. ===== 모든 작업을 완료했습니다 =====
@echo.
@pause
@exit -
suk 2017.06.11 00:52
네, 맞습니다. 2개가 같이 움직입니다. 리스트를 읽어서 반복 작업을 하게 됩니다
파워쉘도 포함이 되어 있어서 별도로 하지 않으셔도 됩니다.
리스트가 제일 중요한 것 같습니다
검색어 뒤에 빈칸 생기지 않도록 하세요. [빈칸=띄어쓰기, 리스트 뒤에 클릭해보시면 느낌이 다릅니다]
빈칸 때문에 검색이 되지 않습니다. 빈칸까지 포함하여 검색을 하기 때문입니다
그리고 처음과 끝에 * 표시는 bat 파일에서 하기 때문에 역시 생략하셔야 됩니다. 이 2가지만 주의하시면 되실 듯 합니다
위에 댓글에 추가한 짧고 특징적인 검색어...이것은 이미 파워쉘에서 하고 계시네요. 그렇게 하시면 됩니다
위에 댓글에 있는 것을 리스트로 만들어서 테스트 해보니까 1.1GB 줄어드네요. 앱삭제_리스트.txt
근데 파워쉘로 시작화면에 앱이 삭제 되지 않는 것도 많네요. 파워쉘 리스트에 나오지 않아서 그런 것 같습니다
-
그린보이 2017.06.11 09:51
제가 수정 할려고 했는데.. 또 수정까지 해주셨네요..
정말 감사 합니다..
그리고 앱중
Facebook
Twitter
Netflix
Keeper
PhototasticCollage
Asphalt8Airborne
CandyCrushSodaSaga
MarchofEmpires
Sudoku이 앱들은 자동으로 깔리거나 안깔리거나 하더라구요.. 그래서 폴더 없다고 나오는경우가 있네요..
아주~~~ 완벽히 잘되네요.. 신기 하네요..
윈도우10 앱이 허락없이 자기 맘대로 겜과 이상한 앱들 쓰지도 않은걸 자동으로 설치가 되고
또 새 윈도우가 나올때마다 새로운앱을 기본으로 탑재를 하는 바람에 짜증 났었거든요..
Suk님 덕분에 정말 편안히 사용 할수 있겠네요..
다른 유저분들도 많이 활용 해보셨으면 좋겠네요.. 물론 사용자 입맛대로 수정 하셔서 사용 하세요.. ^^
근데.. 궁금한게 윈도우 상에서는 숨은 폴더이고 숨은 폴더를 해제 한다해도 폴더 자체도 열어볼수도
없던데.. 이렇해 관리자 권한 실행 만으로도 삭제가 가능 하다니 신기할 따름이네요..
다시 한번 감사 인사 드립니다.. ^^
번호 | 제목 | 글쓴이 | 조회 | 등록일 |
---|---|---|---|---|
[공지] | 질문과 답변 게시판 이용간 유의사항 | gooddew | - | - |
69299 | 소프트웨어| 파이어폭스 PJP 확장자 [2] | 나랑21 | 181 | 06-16 |
69298 | 기 타| suk님 구글 공유드라이브 [2] | 고독남 | 758 | 06-16 |
69297 | 윈 도 우| 윈도우 인증 종류 확인법 [2] | 이거니 | 1003 | 06-16 |
69296 | 윈 도 우| 윈도우 업데이트 [1] | 솔모로 | 397 | 06-16 |
69295 | 하드웨어| 무한 잉크젯 프린터 구매문의 [10] | 한스 | 1019 | 06-15 |
69294 | 윈 도 우| 인증에 관해서.... [5] | 시체 | 642 | 06-15 |
69293 | 하드웨어| CD롬이 어디든 나타나지 않습니다. [4] | 초코신 | 478 | 06-15 |
69292 | 하드웨어| 한성컴퓨터 EX74 노트북을 사용한지 2년 되었습니다 [5] | 행복사랑 | 890 | 06-15 |
69291 | 소프트웨어| 마우스임프 대체 소프트가 있을까요 ? | 플라즈마 | 194 | 06-15 |
69290 | 하드웨어| 마우스 좌,우클릭 이외의 버튼들 비활성화 할 수 있나요? [4] | 아재재로베 | 379 | 06-15 |
69289 | 윈 도 우| 혹시 windows10 어제 업데이트후에 이상 없으신가요? [3] | 크카카 | 808 | 06-15 |
69288 | 소프트웨어| 폴더 내 파일 갯수 [1] | 고북 | 451 | 06-15 |
69287 | 윈 도 우| 윈도우10 앱 자동설치 문제 [2] | 축구곰 | 1472 | 06-15 |
69286 | 하드웨어| 외장 USB3.0 하드 Unallocated 상태 데이터 복구를.. [1] | 알렉스 | 352 | 06-15 |
69285 | 윈 도 우| 윈도우10 FPP 두 시스템 사용 [2] | Sting | 549 | 06-15 |
69284 | 윈 도 우| Win10PE 부팅시에요... | 나이쑤가이 | 301 | 06-15 |
69283 | 윈 도 우| OS를 윈도우10으로 바꾸려 합니다. [4] | 전직백수 | 545 | 06-15 |
69282 | 윈 도 우| 윈도우 iso > wim 변경 가능한가요? [1] | 영화의삶 | 612 | 06-15 |
69281 | 윈 도 우| 윈도우 10 업데이트 중 컴을 껐습니다. [1] | kimssine | 448 | 06-15 |
69280 | 기 타| 인터넷 속도 테스트 관렪해서요 [3] | tuzki | 446 | 06-15 |
저도 이쪽은 그렇게 연구하지 않습니다.
윈도상에서 파워쉘 명령 포함하여, 폴더까지 바로 삭제하는 bat 파일 만들어봤습니다
500MB 가량 C: 용량이 줄어들었네요. 앱 삭제 리스트에 따라서 삭제 되는 용량은 달라질 겁니다
삭제하실 리스트는 cmd를 관리자권한으로 실행하셔서 powershell "Get-AppxPackage | Select PackageFullName" 붙여넣기 하시면 나옵니다
예를 들어서 이런 이름이 있으면 Microsoft.3DBuilder_14.1.1302.0_x64__8wekyb3d8bbwe
3DBuilder 이것만 삭제 리스트에 넣으시면 됩니다. 검색으로 찾는 방식이라서 찾게 됩니다
[제가 여러가지 테스트 해보니까 파일 이름을 잘 지어야 하는군요. 파워쉘과 폴더 이름에 공통으로 들어갈 것이라서....길게 하면 오히려 역효과
짧게 특징적으로 지어야 하네요. 현재 파워쉘에 하신 것처럼 하시면 문제가 없습니다]
이 중에 삭제 조심하셔야 될 것이 WindowsStore 포함되는 앱 Microsoft.NET 포함되는 앱 Microsoft.VCLibs 포함되는 앱들이라고 합니다만..
예전에 전해 들은 것을 기록해놓은 것으로 삭제해도 무방한지 확실치 않습니다.
앱삭제.iso 보통 2개 이상 파일은 압축파일로 1개파일로 올리는데요. iso로 된 사연은?
가상머신에 테스트하는데 iso로 하면 바로 가상머신의 dvd 장치로 테스트할 파일을 넣을 수 있어서 입니다
어차피 가상머신이라서 망가져도 상관없기에 한번 검색된 모든 리스트를 삭제해봤습니다. 그러니까 2.1GB 정도 줄어드네요
그리고 시작화면에는 엣지만 남습니다. 이렇게 전부 삭제 후에는 시작버튼 먹통되는데요. 재부팅 하면 시작버튼은 작동합니다.
그외 부작용은 모르겠습니다