需要有关此 PS 脚本的一部分的帮助。我基本上需要阅读文件的内容(查找导入的单词)。每天都会生成新文件,格式为 power_XX.log XX 代表月份中的某天。不知道我在忽略什么,但如果文件存在并且找到“导入”一词,它应该生成一个 true。提前致谢
************************
#today is a working day
$today = (get-date).day
$fileofday = Get-ChildItem -Path \\noctest1\c$\temp\*.log ('power_' + $today + '.log')
if ($fileofday -and (select-string -Path '\\noctest1\c$\temp\*.log ($fileofday)'-Pattern 'imported' -Quiet))
*******************************************