powershell기초

PowerShell

Windows Powershell 4.0과 5.1의 커맨드 비교(커맨드 타입 Function편)

Windows PowerShell 5.1의 Get-Command -CommandType Function명령을 실행해서 나온 결과를 소개합니다. Windows Powershell 4.0과 5.1의 커맨드 비교 Wind...
0
PowerShell

Windows Powershell 4.0과 5.1의 커맨드 비교(커맨드 타입 Alias편)

Windows PowerShell 5.1의 Get-Command -CommandType Alias 명령을 실행해서 표시된 Alias일람을 소개합니다. -> 기호 앞쪽이 Alias명이고 뒤쪽이 실제 cmdlet 명령입...
0
PowerShell

Windows Powershell 4.0과 5.1의 커맨드 비교(커맨드 타입 Cmdlet편) 

Windows PowerShell 5.1의 Get-Command -CommandType cmdlet 명령을 실행해서 나온 결과를 소개합니다. 각 명령의 대한 도움말은 help 명령으로 확인할 수 있습니다. 예)hel...
0
PowerShell

Windows PowerShell 예외처리

Try-Catch-Finally Try{ Exception Test }Catch{ Write-Host"에러가 발생했습니다." Write-Host $_ }Finally{ Write-Host"실행종료" } Try 블록에...
0
PowerShell

Windows PowerShell 조건문

PowerShell의 비교연산자 기호 대신 키워드를 사용합니다. -eq 같다는 의미로, ==의 용법과 동일합니다. -ne 다르다는 의미로, !=의 용법과 동일합니다. -lt 작다는 의미로, <의 용법과 동일합니다. ...
0
PowerShell

Windows PowerShell 배열

배열 선언 배열은 아래와 같은 방식으로 선언할 수 있습니다. #배열 array1에 값 1, 2, 3을 지정 $array1 = 1, 2, 3 #배열 array2에 4부터 6까지의 값을 지정 $array2 = 4..6 ...
0
PowerShell

Windows PowerShell 반복문

For문 0부터 1씩 증가하는 변수 i가 3과 같아지거나 커지면(-lt) 종료하는 반복문입니다. For($i=0; $i -it 3; $i++){ Write-Host $i } == 0 1 2 While문 0부터 1씩 ...
0
PowerShell

Windows PowerShell 다루기

파일 입력 $[변수명] = Read-Host "[입력 내용]" 예제 $var1 = Read-Host "변수1" 변수1 파일 출력 Write-Host "[출력 내용]" 예제 Write-Host "출력 결과" 출력 결과...
0
PowerShell

Windows PowerShell 기초

PowerShell에서 사용되는 파일 확장자 ps1 파워쉘 스크립트 파일 psm1 파워쉘 스크립트 모듈 psd1 모듈 메니페스트 format.ps1xml 뷰 정의 ps1xml 타입 확장을 포함한 xml 파일 dsc ...
0
PowerShell

PowerShell ISE(Integrated Scripting Environment) 명령 창과 도움말 사용하기

PowerShell ISE(Integrated Scripting Environment) 통합 개발 환경을 사용하여 스크립트 파일(확장자 ps1)을 작성하고자 할 경우 사용하고자 하는 명령을 한번 테스트 해 보고 싶을...
0