[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 기본 파워쉘..