我需要Power Shell脚本的帮助,以便在C: onsomepath上比较日志文件的字符串值后在C: onsomepath上创建输出文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我需要Power Shell脚本的帮助,以便在C: onsomepath上比较日志文件的字符串值后在C: onsomepath上创建输出文件相关的知识,希望对你有一定的参考价值。
$abc = "C:Program Files (x86)BigFix EnterpriseBES Relaylogfile.txt"
$checkerrorlines = "GetExpectedVersionOfParent Error: Parent response did not contain a site version"
if((Get-content $abc).Contains($checkerrorlines))
{
Write-Host "Has gather issue"
}
else
{
Write-Host "No gather issue found on relay"
}
答案
您使用Get-Content获取内容-您可以使用Set-Content进行设置!
Set-Content -Path C:OnSomePathResult.log -Value 'No gather issue found on relay'
以上是关于我需要Power Shell脚本的帮助,以便在C: onsomepath上比较日志文件的字符串值后在C: onsomepath上创建输出文件的主要内容,如果未能解决你的问题,请参考以下文章
PowerShell ISE:调试从 power-shell 脚本调用的另一个 power-shell 脚本
SQL Server自动化运维系列——批量执行SQL脚本(Power Shell)
powershell 更新power shell中的帮助系统。第二个文件在Windows中显示帮助文件。第三个文件显示来自在线来源的帮助。