How to remove common characters from multiple files name?Pradipta Roy·Dec 19, 2022·1 min readTable of contentsNo headings in the article.Open your powershell in desired location and write the command: get-item *.extension | foreach {rename-item $_ $_.name.replace("text", "")} cmdreplace() Share this