如何在Powershell命令中设置变量

时间:2018-11-15 07:28:15

标签: windows powershell

我正在尝试在powershell命令中声明并设置变量。那可能吗?

我希望做这样的事情:

"$name" = "I219" | Get-NetAdapter | where Name -Match "$name"

这是可能的还是只能在.ps脚本中完成?

1 个答案:

答案 0 :(得分:1)

只需在声明变量后在控制台中按Enter键即可轻松完成此操作:

$name = "I219" # now hit enter

要访问该变量,请在控制台中将其键入,然后再次按Enter键:

$name # hit enter => returns I219

现在将其与您的命令一起使用:

Get-NetAdapter | where { $_.Name -Match $name }

或者作为单线:

$name = "I219"; Get-NetAdapter | where { $_.Name -Match $name }