IT박스

현재 실행중인 powershell 스크립트의 경로

itboxs 2020. 11. 21. 14:21
반응형

현재 실행중인 powershell 스크립트의 경로


PowerShell에서이 작업을 수행하는 방법. 배치 파일에서는 다음을 수행합니다. % ~ d0 % ~ p0


에 대한 PowerShell 3.0사용자 - 두 모듈 및 스크립트 파일에 대한 작업 다음 :

function Get-ScriptDirectory {
    Split-Path -parent $PSCommandPath
}

에서 가져 오기 - 스크립트 디렉토리 구조대에 블로그 항목 ...

function Get-ScriptDirectory
{
  $Invocation = (Get-Variable MyInvocation -Scope 1).Value
  Split-Path $Invocation.MyCommand.Path
}

Split-Path $MyInvocation.MyCommand.Path -Parent

powershell 2.0에서

분할 경로 $ pwd

참고 URL : https://stackoverflow.com/questions/1183183/path-of-currently-executing-powershell-script

반응형