Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过powershell更改环境变量(系统)的值?我只能手动更改值并在重新启动 powershell 后查看更改。上下文:我们正在尝试动态设置间接 SSIS 配置的值,并且每个环境的配置文件都不同。
要在系统级别设置环境变量(并使它们持久化),您需要使用 .Net Framework 方法[Environment]::SetEnvironmentVariable()
[Environment]::SetEnvironmentVariable()
在当前会话中,您可以通过$env:NAME = VALUE.
$env:NAME = VALUE
请参阅http://technet.microsoft.com/en-us/library/ff730964.aspx