Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • How could this be done with PowerShell? Commented Aug 27, 2016 at 1:30
  • 1
    As an example, this: Dir | Rename-Item –NewName { $_.name –replace “ “,”_” } That will replace all the spaces in the current directory with underscores. In your case, you could replace " (" with "" and then replace ")" with nothing as well (I.e., -NewName {$_.name -replace " (", ""} For full details, see here: [link]howtogeek.com/111859/…
    – Kevin R.
    Commented Aug 27, 2016 at 1:48