cmd.exe powershell 哈希表

发布于 2024-10-18 11:46:40 字数 189 浏览 1 评论 0原文

PowerShell 中是否有一种方法可以在使用 cmd.exe 调用时将哈希表作为参数传递?

我想调用这样的脚本:

powershell "& 'C:\path\to\file.ps1 arg1 arg2 arg3 arg4'"

其中 arg4 是一个哈希表。这可能吗?

Is there a way in PowerShell to pass a HashTable as an argument when being invoked with cmd.exe?

I want to invoke a script like this:

powershell "& 'C:\path\to\file.ps1 arg1 arg2 arg3 arg4'"

Where arg4 is a HashTable. Is this possible?

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

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

发布评论

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

评论(2

喜爱纠缠 2024-10-25 11:46:40

给定一个如下所示的脚本 (foo.ps1):

param($a1, $a2, $a3, [hashtable]$a4)

"a1 is $a1"
"a2 is $a2"
"a3 is $a3"
"a4 is "
$a4

您可以从 cmd.exe 调用它,就像指定哈希表作为第四个参数一样:

C:\> powershell -command "& {c:\foo.ps1 1 2 three @{name='John';age=45}}"
a1 is 1
a2 is 2
a3 is three
a4 is

Name                           Value
----                           -----
name                           John
age                            45

Given a script (foo.ps1) like this:

param($a1, $a2, $a3, [hashtable]$a4)

"a1 is $a1"
"a2 is $a2"
"a3 is $a3"
"a4 is "
$a4

You can invoke it from cmd.exe like so specifying a hashtable as the fourth parameter:

C:\> powershell -command "& {c:\foo.ps1 1 2 three @{name='John';age=45}}"
a1 is 1
a2 is 2
a3 is three
a4 is

Name                           Value
----                           -----
name                           John
age                            45
云胡 2024-10-25 11:46:40

唯一想到的是将哈希表保存为 xml,并将文件名传递给它。

The only thing that comes to mind is to save the hash table as xml, and pass it the file name.

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