[PowerShell] Windows System File Recovery Windows 사용 중, 불가피하게 악성파일 또는 잘못된 선택으로 삭제를 해버릴 수도 있어, 이에 대한 System File의 복구 방법은 아래와 같다. 먼저 PowerShell 또는 CMD 창을 엽니다. Dism /online /cleanup-image /restorehealth 위와 같이 진행됩니다. 복구는 완료되었으나, 확인을 위해 sfc /scannow 를 입력하여, 손상된 파일은 없는 지 확인합니다. 최종적으로 완료되었습니다. Command & Development/PowerShell 2022.05.23
[PowerShell] 기본 PowerShell은 시스템 관리 차원으로 설계된 작업 기반 명령을 위한 프로그램입니다. 일반적으로 사용하는 CMD 보다 강력한 스크립트를 지원, COM(Component Object Model)과 WMI(Windows Mnagement Instrumentation) 접근이 가능합니다. powershell에서는 cmdlet에 대해 알고 있어야합니다. cmdlet은 동사-명사 형식으로 되어있습니다. 동사 : Get, New, Restart, Resume, Set, Start, Stop, Suspend 등 Get-Verb 로 승인되어 있는 목록 확인 가능. 명사 : Computer, Service, Host, Alias, ChildItem 등 ex) Get-Service 1. powershell 기본 파워쉘.. Command & Development/PowerShell 2022.05.06