Dieses Skript ist fast das, was ich brauche: $input_path = 'C:\Common' $output_file = 'C:\Common\extracted.txt' $regex = 'assets' Get-ChildItem -Path $input_path -Filter *.txt | Select-String -Pattern $regex -AllMatches | Out-File $output_file -Force Das Problem besteht darin, dass die...