Skip to content

Instantly share code, notes, and snippets.

@sharjeel619
Last active September 9, 2021 11:54
Show Gist options
  • Save sharjeel619/98f5b2cff5eef14fd39cbd399b8df6b2 to your computer and use it in GitHub Desktop.
Save sharjeel619/98f5b2cff5eef14fd39cbd399b8df6b2 to your computer and use it in GitHub Desktop.
Powershell command for windows 10 to rename multiple mp3(can be any type of file, just replace the .mp3 extension name) files
get-childitem *.mp3 | foreach { rename-item $_ $_.Name.Replace("string to be replaced", "string to replace") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment