由于目录名

时间:2018-09-02 19:30:29

标签: powershell powershell-v2.0 sccm quoting

我已经获得了一个PowerShell脚本,该脚本执行该命令以安装位于同一目录中的可执行文件。将其打包到SCCM(系统中心配置管理器)中进行部署。但是,如果在程序包部署过程中将程序包推送到的临时控制器在文件路径中的任何位置都有空间,则部署失败。

例如:

  1. C:\ temp \ deployment-这将通过,并且软件将安装。
  2. C:\ temp \ deploymen t 1 \--由于部署和1之间存在空间,这将失败
  3. C:\ temporar 年d irectory \ deployment \-由于临时目录和目录之间的空间,这将失败

这是我怀疑正在执行安装的代码的一部分:

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进行部署。

1 个答案:

答案 0 :(得分:2)

为了从具有包含空格的路径的批处理文件中调用程序,该路径必须包含在"..."中:

# PowerShell string that constructs the command line to write to the batch file.
$installLine = "`"$scriptPath\softwarename.exe`" ..."

`"是在PowerShell中的"字符串中嵌入字面量"..."的方式。

相反,从具有路径包含空格的批处理文件中调用cd也可以包含"...",但是,

  • 只有在没有歧义的情况下才有可能,因为cd仅需要一个操作数(目标目录)。
  • 由于与所有其他命令必须如何处理带空格的参数不一致,因此从一开始就支持它绝不是一个好主意。