Basically I am extracting some log entries from an Event Log, formatting it, and then want to write it to a text file I will then email over. This is for Windows Server Backup monitoring purposes.
New-Item -ItemType directory -Path C:\WSBReports\
New-Item -ItemType file -Path C:\WSBReports\DailyReport.txt
$yestDate = (Get-Date) - (New-TimeSpan -day 1)
# echo $yestDate
Get-WinEvent -logname "Microsoft-Windows-Backup" |
where {$_.timecreated -ge $yesterday} |
Format-Table TimeCreated, ID, ProviderName, Message -AutoSize -Wrap > C:\WSB_Reports\DailyReport.txt
Firstly - it says it cannot write to the file, because it doesn't exist? Even though I created it above.
And also - I think the logic is wrong as I need to always overwrite this file each time the script runs, is this possible?
