반응형
PowerShell 현재 경로 확인
pwd
$nowPath = (pwd).Path
Write-Host $nowPath
# or
$nowPath = ${pwd}
Write-Host $nowPath
# or
Write-Host ${pwd}
반응형
'Develop > PowerShell' 카테고리의 다른 글
[PowerShell] ps1 파일 실행 오류 : 이 시스템에서 스크립트를 실행할 수 없으므로 ~ (0) | 2022.02.22 |
---|---|
[PowerShell] ForEach문 활용 (0) | 2022.02.22 |
[PowerShell] 변수 설정 / 활용 (0) | 2022.02.22 |
[PowerShell] 특정 폴더 용량 확인 (0) | 2022.02.22 |