Equivalent of tail -f for Windows – monitor log file

It’s easy on a linux system to monitor in real time the content of a log file by using

tail -f /var/log/my_file.log

If you want to do the same thing with windows, you can easily do that by using

Get-Content -Path 'C:\Windows\Temps\my_file.log' -Wait