Wednesday, January 17, 2024

How to replace multiple File Names in Windows?

PowerShell command can be used to replace multiple File Names in Windows.

Before File Names Update:

PowerShell Command:

dir | Rename-Item -NewName {$_.name -replace "Test", "Example"}

After File Names Update:

No comments:

Post a Comment