Powershell Get-Package 未正确过滤

发布于 2025-01-13 04:24:20 字数 812 浏览 0 评论 0原文

我在使用 Get-Package cmdlet 过滤应用程序时遇到了这个问题

当我使用下面的代码时,

$Cred = Get-Credential

Invoke-Command -ComputerName "server01" -Credential $Cred -ScriptBlock { Get-Package -Name  "Google Chrome"}

,它可以正确地从远程计算机中过滤掉 Chrome。(见下文)

在此处输入图像描述

如果我将 Chrome 分配给变量,如下所示

$Cred = Get-Credential
$app = "Google Chrome"
Invoke-Command -ComputerName "server01" -Credential $Cred -ScriptBlock { Get-Package -Name  $app}

它显示远程计算机中安装的所有应用程序。

输入图片这里的描述

这里似乎有什么问题?这不是分配变量的正确方法吗?

I am having this issue with filtering of application with Get-Package cmdlet

when I use the below code,

$Cred = Get-Credential

Invoke-Command -ComputerName "server01" -Credential $Cred -ScriptBlock { Get-Package -Name  "Google Chrome"}

it is properly filtering out Chrome from the remote machine.(see below)

enter image description here

if I assign Chrome to a variable, like below

$Cred = Get-Credential
$app = "Google Chrome"
Invoke-Command -ComputerName "server01" -Credential $Cred -ScriptBlock { Get-Package -Name  $app}

Its showing all the applications installed in the remote machine.

enter image description here

What seems to be the issue here ? Is it not the proper way to assign variable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那伤。 2025-01-20 04:24:20

我得到了它。必须在变量前面使用 $Using

$Cred = Get-Credential
$app = "Google Chrome"
Invoke-Command -ComputerName "server01" -Credential $Cred -ScriptBlock { Get-Package -Name  $Using:app}

这有效。

I got it. Had to use $Using in front of variable

$Cred = Get-Credential
$app = "Google Chrome"
Invoke-Command -ComputerName "server01" -Credential $Cred -ScriptBlock { Get-Package -Name  $Using:app}

This worked.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文