gpt4 book ai didi

powershell - 如何在powershell中使用带有空格的$ScriptDir传递msi ArgumentList?

转载 作者:行者123 更新时间:2023-12-04 01:55:27 25 4
gpt4 key购买 nike

我下载了 Powerbi 32 bit64 bit来自 https://powerbi.microsoft.com/en-us/downloads/ 的 msi 文件

并在下面创建脚本。

$ScriptDir = (Split-Path $MyInvocation.MyCommand.Path)


$MSIArguments = @(
"/i"
"$ScriptDir\PBIDesktop.msi"
"/qn"
# "/norestart"
"ACCEPT_EULA=1"
)

$MSIArguments2 = @(
"/i"
"$ScriptDir\PBIDesktop_x64.msi"
"/qn"
# "/norestart"
"ACCEPT_EULA=1"
)

$architecture=gwmi win32_processor | select -first 1 | select addresswidth
if ($architecture.addresswidth -eq "64"){
Start-Process "msiexec.exe" -ArgumentList $MSIArguments2 -wait
}
elseif ($architecture.addresswidth -eq "32"){
Start-Process "msiexec.exe" -ArgumentList $MSIArguments -wait
}
$ScriptDir

脚本只有在 source directory/$ScriptDir 时才能完美运行中间没有空格。
例如,如果源目录是 c:/testc:/test_test/test它完美地工作。

但是如果 source directory/$ScriptDir有空格,它挂起并显示下面给出的 msi 选项错误

enter image description here

例如如果 source directory/$ScriptDirC:\Users\Dell\Desktop\New folder powershell脚本卡在上面的消息
..还没有安装。

我在脚本末尾添加了 echo 以查找路径 $ScriptDir
它给出了下面的回声结果,这让我更加困惑。
    C:\Users\Dell\Desktop\New folder

不确定为什么 msiexec.exe 在有空格时无法运行参数。

请帮我弄清楚可能是什么原因?即使 $ScriptDir 有空格,如何解决这个问题?

最佳答案

如果您要调用 msiexec.exe (或大多数其他命令)从带有空格的路径的命令行中,您需要将该路径用引号引起来。

不幸的是,当它通过时,您的路径实际上并没有它们(尽管在您的哈希表中提供了它们。)

为此,请提供一些转义引号 (""):

$MSIArguments = @(
"/i"
"""$ScriptDir\PBIDesktop.msi"""
"/qn"
# "/norestart"
"ACCEPT_EULA=1"
)

这具有实际的最终结果:对于路径,将它们用三个引号括起来。

关于powershell - 如何在powershell中使用带有空格的$ScriptDir传递msi ArgumentList?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46699870/

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