Develop/PowerShell

[PowerShell] 변수 설정 / 활용

Codit Develop 2022. 2. 22. 13:54
반응형

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
반응형