gpt4 book ai didi

powershell - 相当于 PowerShell 中的 "cd %programfiles%"?

转载 作者:行者123 更新时间:2023-12-03 09:01:44 26 4
gpt4 key购买 nike

在传统的cmd中,我们可以使用cd %programfiles%切换目录,通常是 C:\Program Files .

在PowerShell中,我们如何通过环境变量转到目录?

最佳答案

原则是:

$Env:variablename
所以你可以试试:
cd $Env:Programfiles
或暂时将工作目录切换到 %Programfiles%\MyApp :
Push-Location -Path "$Env:Programfiles\MyApp"
#
# command execution here
#
Pop-Location
要列出您可以执行的所有环境变量:
Get-ChildItem Env:
或使用方便的别名:
ls env:

关于powershell - 相当于 PowerShell 中的 "cd %programfiles%"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20138054/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com