Command & Development/PowerShell
[PowerShell] Windows System File Recovery
Richard.Ryu
2022. 5. 23. 11:11
반응형
Windows 사용 중, 불가피하게 악성파일 또는 잘못된 선택으로 삭제를 해버릴 수도 있어,
이에 대한 System File의 복구 방법은 아래와 같다.
먼저 PowerShell 또는 CMD 창을 엽니다.
Dism /online /cleanup-image /restorehealth
위와 같이 진행됩니다.
복구는 완료되었으나, 확인을 위해
sfc /scannow 를 입력하여, 손상된 파일은 없는 지 확인합니다.
최종적으로 완료되었습니다.
반응형