これは、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プロバイダー、文字列形式、Object [] args)で Microsoft.IdentityServer.Setup.Diagnostics.TraceLog.WriteLine(TraceEventType eventType、String msg、Object [] args)で
(write-hostの出力から)まったく同じコマンドを手動で実行すると、すべてが正常に機能します。
何か案は?ありがとうございました。