It just monitor a folder for new files with Powershell. 1 2#My function 3function Do-MonitorNewFile-TODO($Event_name, $Event_FullPath, $Event_changeType, $Event_TimeGenerated) 4{ 5 Write-Host "The file '$Event_name' was $Event_changeType at $Event_TimeGenerated" -ForegroundColor red 6} 7 8function...