Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Previous revision
bulk_rename_with_powershell [2019/03/07 11:33]
bulk_rename_with_powershell [2021/04/05 11:54] (current)
mihael
Line 1: Line 1:
 +====== 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}}