PowerShell 技能连载 - 查看 PowerShell 当前的文件系统路径
To find out the path your PowerShell is currently using, simply run Get-Location:
要查看 PowerShell 的当前路径,只要用 Get-Location
命令即可:
1 | PS> Get-Location |
然而,当前路径不一定指向一个文件系统位置。如果您将位置指向注册表,例如这样:
1 | PS> cd hkcu:\ |
如果您想知道 PowerShell 当前使用的文件系统路径,而不管当前使用什么 provider,请使用以下代码:
1 | PS> $ExecutionContext.SessionState.Path |
CurrentFileSystemLocation
总是返回文件系统的当前位置,这可能和 Get-Location
返回的不一样。
PowerShell 技能连载 - 查看 PowerShell 当前的文件系统路径
http://blog.vichamp.com/2017/07/19/finding-powershell-s-current-file-system-path/