gpt4 book ai didi

java - 如何处理 powershell 中 $PSScriptRoot 路径中的空格

转载 作者:行者123 更新时间:2023-11-30 08:14:10 25 4
gpt4 key购买 nike

我正在尝试编写一个 powershell 脚本,它将使用 Installcfg.cfg 文件安装 Java。无论脚本在哪里执行,我都希望它能够运行。当任何文件路径中没有空格时它工作正常但是当我从另一个位置运行它时我收到以下错误:

以下开关有错误:"INSTALLCFG='C:\Program";"Files";"(x86\DesktopCentral_Agent\swrepository\1\swuploades\Java";"8";"Update";"25\InstallCFG.cfg'";.

Powershell 似乎没有按照我的意愿传递文件路径。

脚本如下:

#Determine the Architecture
$Arch = (Get-WmiObject Win32_OperatingSystem).OSArchitecture

#Make sure no browsers are running
kill -processname iexplore, chrome, firefox

#Install based on Architecture
if ($Arch -eq "64-bit")
{
Start-Process jre-8u25-windows-x64.exe -wait -args "INSTALLCFG=$PSScriptRoot\InstallCFG.cfg /L c:\temp\java64.txt"
Start-Process jre-8u25-windows-i586.exe -wait -args "INSTALLCFG=$PSScriptRoot\InstallCFG.cfg /L c:\temp\java32.txt"
}

else
{
Start-Process jre-8u25-windows-i586.exe -args "INSTALLCFG=$PSScriptRoot\InstallCFG.cfg /L c:\temp\java32.txt"
}

我尝试了各种方法在参数中包含引号,甚至将参数创建为变量。我不想对位置进行硬编码,因为我希望文件可以从任何地方运行。

我主要是尝试从 powershell 中的批处理文件运行以下命令:

"%~dp0jre-8u25-windows-x64.exe" INSTALLCFG="%~dp0InstallCFG.cfg" /L c:\temp\log.txt

我错过了什么?

最佳答案

转义字符是反引号。你应该能够写出类似的东西

"INSTALLCFG=`"$PSScriptRoot\InstallCFG.cfg`" /L c:\temp\java64.txt"

对于 args 参数。

关于java - 如何处理 powershell 中 $PSScriptRoot 路径中的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29631148/

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