▶️ Software automation for repetitive business processes:
https://codify-x.de
Rename files in bulk without any additional software. It's easy with Windows Terminal. It lets you rename all the files in a folder at once. You can append and/or replace text.
https://linktr.ee/patrickhauswald
✅ Subscribe: https://www.youtube.com/@Patrick.?sub...
╔═╦╗╔╦╗╔═╦═╦╦╦ ╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝
⌨️ Commands:
Replace text:
dir | Rename-Item -NewName { $_.Name -replace "oldText", "newText" }
Append text to the front:
dir | Rename-Item -NewName { "Text_" + $_.Name }
Append text to the back:
dir | Rename-Item -NewName { $_.BaseName + "Text" + $_.Extension }
📧 For questions or inquiries about this video, please contact:
[email protected]
--------------------------------------------------------------------------------
Windows can do anything! (You just have to know how.)
--------------------------------------------------------------------------------
#windows
#rename
#automation