0

如何获取当前正在执行的命令或脚本的当前路径?

尝试了以下脚本:

$scriptpath = $MyInvocation.MyCommand.Path
write-host $scriptpath

并这样称呼它:

 invoke-command -computername localhost -filepath .\test.ps1

还尝试了以下但得到一个空行:

invoke-command -scriptblock { write-host $MyInvocation.MyCommand.Path }
4

1 回答 1

0

您是否尝试过使用 $pwd 获取路径?

于 2013-10-04T17:21:02.670 回答