String in allen Files ersetzen mit POWERSHELL.
Get-ChildItem -Path "C:\path\to\your\directory" -Recurse -File |
ForEach-Object {
(Get-Content $_.FullName) -replace "your_string_to_remove", "" |
Set-Content $_.FullName
}
Get-ChildItem -Path "C:\path\to\your\directory" -Recurse -File |
ForEach-Object {
(Get-Content $_.FullName) -replace "your_string_to_remove", "" |
Set-Content $_.FullName
}