0

以下のスクリプトを実行し、結果をテキスト ファイルに書き込むことで、2 つの長いテキスト ファイルを比較しています。予想される標準の比較オブジェクト出力の代わりに、その一部を取得し、他のすべてをトリミングします (最大文字数の制限または書式テンプレートなどにより)。生の出力をファイルに書き込む方法、または行の文字数の制限を増やして正しい結果を得る方法はありますか? 私が比較するファイルは、どのような方法でも短縮または再フォーマットすることはできません.compare-object関数の代わりに何か他のものを使用できますか?

ありがとうございました!

脚本:

    function compareConfigs {

    Try{
        $compareOne = Get-Content $azConfig
        $comparetwo = Get-Content $dummyConfig
    } 
    Catch{
        Write-Host "Path is invalid or the file does not exist. "    
    }

Write-Host "Beginning comparison"
$Compare = Compare-Object $compareOne $compareTwo

$compare | foreach  { 
    if ($_.sideindicator -eq '<=')
        {$_.sideindicator = $azConfig}

    if ($_.sideindicator -eq '=>')
        {$_.sideindicator = $dummyConfig}
    }

$Compare | 
select @{l='Value';e={$_.InputObject}},@{l='File';e={$_.SideIndicator}} |
Out-File $compareResult

Write-Host "Complete!"
}

compareConfigs

出力:

InputObject                                                                                                                                                                          
-----------                                                                                                                                                                          
      <add fileName="E:\Logs\LeadManagement\LeadService.log" rollSizeKB="4096" timeStampPattern="yyyy-MM-dd" rollFileExistsBehavior="Increment" rollInterval="Day" formatter="Text...
      <add template="Timestamp: {timestamp}&#xA;Message: {message}&#xA;Category: {category}&#xA;Priority: {priority}&#xA;EventId: {eventid}&#xA;Severity: {severity}&#xA;Title:{ti...
      <add fileName="E:\Logs\LeadManagement\LeadService.log" rollSizeKB="4096" timeStampPattern="yyyy-MM-dd" rollFileExistsBehavior="Increment" rollInterval="Day" formatter="Text...
      <add template="Timestamp: {timestamp}&#xA;Message: {message}&#xA;Category: {category}&#xA;Priority: {priority}&#xA;EventIwefwefd: {eventid}&#xA;Severity: {severity}&#xA;Tit...
4

1 に答える 1