Jump to content
Microsoft Windows Bulletin Board

Recommended Posts

Posted
Greetings,I had a messy .mp4 collection that need intensive naming rework. I have tried using u/Derrick19 guide as followingOpen PowerShell Navigate to the directory containing files using the cd command. For example:  cd C:\path\to\your\filesRun the following command:Get-ChildItem -Filter *.mp4 | Rename-Item -NewName {$_.name -replace 'oldname','newname' } Here is a breakdown of the command: Get-ChildItem -Filter '*.mp4' - Retrieves all files in the directory with a .mp4 extension.Rename-Item -NewName {$_.name -replace 'oldname','newname'

View the full article

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...