Get-Content Some_File.txt | Select-String -NotMatch Filter1,Filter2,Filter3
Select-String -NotMatch Filter1,Filter2,Filter3 Some_File.txt | Format-Table -Property Line -HideTableHeaders
Other
Get-Content Some_File.txt | Select-String -NotMatch Filter1,Filter2,Filter3
Select-String -NotMatch Filter1,Filter2,Filter3 Some_File.txt | Format-Table -Property Line -HideTableHeaders
OR grep -vE 'word1|word2' AND grep -vE 'word1.*word2'