gpt4 book ai didi

windows - 从 Windows 路径变量中删除行

转载 作者:可可西里 更新时间:2023-11-01 09:19:21 25 4
gpt4 key购买 nike

假设这是我的 Windows 系统 PATH 的样子:

C:\oracle\product\11.2.0\32bit\client_1\bin;C:\oracle\product\11.2.0\64bit\client_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\

如何删除第一个条目并将其添加到列表末尾?我知道您可以为此使用 setx,但我宁愿使用 PowerShell 来执行此操作。

最佳答案

# Split the existing path into the 1st entry and the rest.
$first, $rest = $env:Path -split ';'

# Rebuild the path with the first entry appended.
$env:Path = ($rest + $first) -join ';'

# To make this change persistent for the current user,
# an extra step is needed:
[Environment]::SetEnvironmentVariable('Path', $env:Path, 'User')

关于windows - 从 Windows 路径变量中删除行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44223005/

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