0

这是我安装 ADFS 脚本的一部分。非常简单,但似乎 Start-Process 正在以一种有趣的方式解析开关。有什么我想念的吗?

write-host "Installing ADFS - process should take 30-45 seconds"
$installtime=get-date -uformat "%Y_%h_%d_%H_%M"
$logfile="$pwd\adfssetup_$installtime.log"
$ADFSInstall = "AdfsSetup.exe"
$ADFSInstallParams = '/quiet /logfile '+$logfile
Start-Process $ADFSInstall $ADFSInstallParams -wait
if ({gc -path $logfile | select-string -pattern "AD FS 2.0 is already installed on this computer"} -eq $null){write-host -ForegroundColor Cyan "ADFS Installed"} Else{write-host -ForegroundColor "There was an error Installing ADFS, please check the log file: $logfile;break}

如果我执行上述脚本,我会在日志文件中得到以下内容:

Microsoft.IdentityServer.Setup 错误:5124:6 [2070099085]:System.FormatException:索引(从零开始)必须大于或等于零且小于参数列表的大小。
   在 System.Text.StringBuilder.AppendFormat(IFormatProvider 提供程序,字符串格式,对象 [] 参数)
   在 Microsoft.IdentityServer.Setup.Diagnostics.TraceLog.WriteLine(TraceEventType 事件类型,字符串味精,对象 [] 参数)

如果我手动执行完全相同的命令(来自 write-host 的输出),一切正常。

有任何想法吗?谢谢你。

4

2 回答 2

1

我无法删除这个问题,但我通过调查旧日志发现即使我以常规方式运行命令也会发生错误。所以上面的脚本实际上是按预期工作的。

于 2011-05-27T06:59:56.027 回答
0

(我不太明白这里发生了什么,但这里有两种可能性。)

一种选择是您get-date无法按预期工作。结果是$logfile包含一个百分号 ( %),这会导致 AD FS 2.0 安装程序中出现“格式字符串注入”。错误消息指向该方向。

但是,如果我在自己的系统上运行您的 PowerShell 脚本,则无法重现。

另请注意,您似乎在一个参数中传递了三个命令行参数(/quiet/logfile和日志文件名)。尝试像这样传递它们:

$ADFSInstallParams = @('/quiet', '/logfile', $logfile)
Start-Process $ADFSInstall @ADFSInstallParams -wait

但是,如果这是问题的原因,那么我会期望adfssetup.exe抱怨类似command line argument '/quiet /logfile ...' not recognized.

于 2011-05-27T05:05:11.007 回答