$results = Select-String -Path 'c:\file.txt' "Word" -context 0,8
$results.Context.PostContext[7]
Also if you process large file I would advise you to try new PowerShell 7.0. There Select-String has some new parameters and optimizations and works very fast in some scenarios.
Сазонов Илья
https://isazonov.wordpress.com/