This is an old revision of the document!


Bulk Rename Files with PowerShell

See [[https://devblogs.microsoft.com/scripting/use-powershell-to-rename-files-in-bulk/ | Use PowerShell to rename files in bulk]

  Get-ChildItem | Rename-Item -NewName { $_.Name -replace '.jpi' , '.hpi' }