====== 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' } {{tag>powershell}}