我已经获得了一个PowerShell脚本,该脚本执行该命令以安装位于同一目录中的可执行文件。将其打包到SCCM(系统中心配置管理器)中进行部署。但是,如果在程序包部署过程中将程序包推送到的临时控制器在文件路径中的任何位置都有空间,则部署失败。
例如:
这是我怀疑正在执行安装的代码的一部分:
if ($softwarename -eq "Not Installed") {
Write-Output "Installing softwarename..."
# Build a massive softwarename installation line
$tempFile = [System.IO.Path]::GetTempFileName() + ".cmd"
$installLine = "$scriptPath\softwarename.exe /s /v`"/qn INSTALLDIR=\`"C:\Program Files\directoryname\softwarename\`" AUTHTOKEN=REDACTED FULLCONSOLEADDRESS=$dest`:8413 HOSTNAME=$Env:COMPUTERNAME LOG_SOURCE_AUTO_CREATION_ENABLED=True LOG_SOURCE_AUTO_CREATION_PARAMETERS=`"`"Component1.AgentDevice=DeviceWindowsLog&Component1.Action=create&Component1.LogSourceName=$env:COMPUTERNAME&Component1.LogSourceIdentifier=$env:COMPUTERNAME&Component1.Log.Security=true&Component1.Filter.Security.Enabled=true&Component1.Filter.Security.Param=5156&Component1.Filter.Security.Type=Blacklist&Component1.Log.System=true&Component1.Log.Application=true&Component1.Log.DNS+Server=false&Component1.Log.File+Replication+Service=false&Component1.Log.Directory+Service=false&Component1.Destination.Name=$dest&Component1.RemoteMachinePollInterval=300&Component1.EventRateTuningProfile=High+Event+Rate+Server&Component1.MinLogsToProcessPerPass=1250&Component1.MaxLogsToProcessPerPass=1875`"`"`""
$installLine | Out-File -Encoding ascii -filepath $tempFile
Write-Output $tempFile
cmd.exe /c $tempFile
} else {
if ($psversiontable.psversion.major -gt 2) {
$props=ConvertFrom-StringData (Get-Content "c:\Program Files\directoryname\softwarename\config\install_config.txt" -Raw)
if ($props.ConfigurationServer -eq $dest) {
Write-Output "Configuration server is correct - no action"
} else {
Stop-Service (Get-Service -ErrorAction SilentlyContinue softwarename)
$props.ConfigurationServer=$dest
$props.StatusServer=$dest
$props.GetEnumerator() | % { "$($_.Name)=$($_.Value)" } | Out-File -Encoding ascii -filepath "c:\Program Files\directoryname\softwarename\config\install_config.txt"
del "c:\Program Files\directoryname\softwarename\config\ConfigurationServer.PEM"
Start-Service (Get-Service -ErrorAction SilentlyContinue softwarename)
Write-Output "Configuration server reset to $dest"
}
} else {
Write-Output "Powershell version does not support the reset functionality."
}
我怀疑以下两行是导致问题的原因:
$tempFile = [System.IO.Path]::GetTempFileName() + ".cmd"
$installLine = "$scriptPath\softwarename.exe /s /v`"/qn
我怀疑由于执行将需要确切的路径,并且目录路径中的“空格”将导致“找不到路径”(有趣的是,在我的Windows 10机器更改目录[cd]命令中,无需在空格中使用带引号的文件路径-“”-这使我相信自己完全错了,但是在这一点上,我没有别的事情要看。
任何人都可以协助添加参数,以确保为要执行的.cmd文件生成的补丁没有空格吗?
我试图通过添加一个批处理文件来修补此问题,该批处理文件在执行之前将程序包复制到静态目录。但是,这无法通过SCCM进行部署。
答案 0 :(得分:2)
为了从具有包含空格的路径的批处理文件中调用程序,该路径必须包含在"..."
中:
# PowerShell string that constructs the command line to write to the batch file.
$installLine = "`"$scriptPath\softwarename.exe`" ..."
`"
是在PowerShell中的"
字符串中嵌入字面量"..."
的方式。
相反,从具有路径包含空格的批处理文件中调用cd
也可以不包含"..."
,但是,
cd
仅需要一个操作数(目标目录)。