Skip to content

Instantly share code, notes, and snippets.

@timgaunt
Created August 31, 2015 16:31
Show Gist options
  • Save timgaunt/1e3a7e11820cf2225461 to your computer and use it in GitHub Desktop.
Save timgaunt/1e3a7e11820cf2225461 to your computer and use it in GitHub Desktop.
Strip extension in Powershell
Get-ChildItem "C:\Users\Tim\Desktop\DL\uCommerce\8e0acd5c-f842-49db-933d-cc9e61fcff51\bin" -Filter *.dll.* | `
Foreach-Object{
Rename-Item $_.FullName ([io.fileinfo]$_.FullName).basename
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment