programing

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

newstyles 2023. 8. 7. 22:23

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

PowerShell에서 어떻게 해야 합니까?배치 파일에서 수행할 작업: %~d0%~p0

위해서PowerShell 3.0users - 모듈 및 스크립트 파일 모두에 대해 다음 작업을 수행합니다.

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

Get-Script Directory에서 Rescue 블로그 항목으로...

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

파워셸 2.0

분할 경로 $pwd

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