How to remove common characters from multiple files name?

Table of contents

No heading

No headings in the article.

Open your powershell in desired location and write the command:

get-item *.extension | foreach {rename-item $_ $_.name.replace("text", "")}