Link to home
Start Free TrialLog in
Avatar of A D
A DFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Poweshell Script to schedule

I have a folder named Error Log with thousands of txt files being logged by a third party application. Its difficult to find a specific error from those files and proactively fix related issues timely.

Can you help me with a powershell script which can search specific words from within those files in Error Log folder (e.g. '.' is missing or schema mismatch) and copy only those specific files to other folder named Status Errors?

I can then check Status Errors folder every evening and fix any errors so as to avoid any issues start of next day?
ASKER CERTIFIED SOLUTION
Avatar of oBdA
oBdA

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
That still needs a correction:
Select-String -Path $source -Pattern $pattern  -List | Copy-Item -Path {$_.Path} -Destination $target -Verbose -WhatIf

Open in new window

-List is an optimization to only report the first match for each file. I didn' test whether it is optional or mandatory so files are copied only once.
or
copy *.txt combined.log

Open in new window

and then just inspect combined.log with something like TailBlazer
https://chocolatey.org/packages/tailblazer
Avatar of A D

ASKER

ok thanks for your responses.. I'll check this today!