PowerShell - Automation Patterns
What will be the result of running this PowerShell command?
Get-ChildItem -Path 'D:\AppLogs' -Filter '*.txt' | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-5) } | Remove-Item -WhatIf