Powershell - Bulk rename file extension
Powershell command for bulk changing file extensions.
Get-ChildItem *.md | Rename-Item -NewName { $_.Name -replace '\.md','.old' }
Via: Stackoverflow - How can I bulk rename files in PowerShell?
Enjoy Reading This Article?
Here are some more articles you might like to read next: