gpt4 book ai didi

variables - 永久 PowerShell 变量

转载 作者:行者123 更新时间:2023-12-04 16:40:48 26 4
gpt4 key购买 nike

有没有办法在 PowerShell 中定义一个变量,这样当我打开一个新的 PowerShell 窗口时,它会保持相同的值?

我需要这个变量来保持它的值,因为我需要时不时地重新启动我的服务器,而且我不想丢失这些值。

最佳答案

储藏:

$variable|export-clixml -path $Location

检索:
$variable = import-clixml -path $Location

如果需要,请将其放入函数中,例如:
function LoadTHEvariable($location)
{
$global:variable = import-clixml -path $Location
}

$location 显然包含文件系统中要存储变量的位置。

关于variables - 永久 PowerShell 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8854831/

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