Skip to content

Instantly share code, notes, and snippets.

@mknet
Last active January 14, 2021 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mknet/268017ad3adc7a4de185cbc19925307b to your computer and use it in GitHub Desktop.
Save mknet/268017ad3adc7a4de185cbc19925307b to your computer and use it in GitHub Desktop.
Remove a string in a filename using Windows' PowerShell
Param (
[Parameter(Mandatory=$true)][string]$ToBeReplaced
)
echo $ToBeReplaced
dir | rename-item -NewName {$_.name -replace $ToBeReplaced,""}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment