반응형
PowerShell 변수 설정 / 활용
PowerShell 변수 설정
$psVal=11
#Integer
[int]$psInt=11
#Boolean (0: False / 1: True)
[bool]$psBoolean=0
#String
[string]$psString="ssd"
PowerShell 변수 사용
[string]$dirPath="C:\vault"
Get-Item $dirPath
반응형
'Develop > PowerShell' 카테고리의 다른 글
[PowerShell] ps1 파일 실행 오류 : 이 시스템에서 스크립트를 실행할 수 없으므로 ~ (0) | 2022.02.22 |
---|---|
[PowerShell] ForEach문 활용 (0) | 2022.02.22 |
[PowerShell] 현재 경로 확인 (0) | 2022.02.22 |
[PowerShell] 특정 폴더 용량 확인 (0) | 2022.02.22 |