Command & Development/PowerShell

[PowerShell] 기본

Richard.Ryu 2022. 5. 6. 12:27
반응형

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 기본

 

파워쉘 버전 확인

$psversiontable -> Get-psversiontable

시스템 변수

$host

Get-Command, Get-Help를 사용해 더 넓은 범위의 명령어를 작성 할 수 있습니다.

 

반응형

'Command & Development > PowerShell' 카테고리의 다른 글

[PowerShell] Windows System File Recovery  (0) 2022.05.23