반응형
윈도우를 사용하다 보면 환경변수를 사용하게 되는 경우가 있습니다.
linux에선 자주 사용해서 익숙하지만 윈도우에서는 어떻게 사용할지 궁금하여 한번 알아보겠습니다.
사용방법은 간단합니다.
환경변수
설정
$env:"환경변수명 = "환경변수 값"
출력
$env:환경변수
추가
$Env:Path += ';C:\Tools'
복사, 설정, 출력, 삭제
Copy-Item -Path Env:\Foo -Destination Env:\Foo2 -PassThru
Set-Item -Path Env:\Foo2 -Value 'BAR'
Get-Item -Path Env:\Foo*
Remove-Item -Path Env:\Foo* -Verbose
변수 사용
변수 사용은 거~~의 사용 안하지만 환경변수 알아보는 김에 알아보았습니다.
현재 열려있는 세션에서만 활용 가능합니다.
설정
$변수명 = 변수값
출력
$변수명
삭제
Remove-Variable -Name MyVariable
Remove-Item -Path Variable:\MyVariable
Clear-Variable -Name MyVariable
Reference
about_Environment_Variables
about_Variables
반응형
'Windows' 카테고리의 다른 글
chrome 새탭 새창 무한로딩으로 안될때 (0) | 2023.01.21 |
---|---|
윈도우 터미널 단축키 (0) | 2023.01.05 |
[에러]/bin/sh^M: bad interpreter: No such file or directory (0) | 2022.12.16 |
powershell 시작 위치 설정 (0) | 2022.12.16 |
windows 에러: The system cannot find the file specified. (0) | 2022.12.01 |
댓글