Share via

Removing Specific Letters From Multiple Filenames

Anonymous
2019-04-15T12:45:51+00:00

I have about 1,600 PDF files that I am working with.  They all have specific individual file names.  I am trying to organize them by only a portion of the file name.  In order to do this, I need to delete or get rid of the first three characters of the file name and keep the remaining.  

This is what I have currently:

And this is what I would like to have:

Please let me know if this is possible and how to do it.

Thanks,

Yok33

Windows for home | Windows 10 | Files, folders, and storage

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

5 answers

Sort by: Most helpful
  1. DaveM121 869.3K Reputation points Independent Advisor
    2019-04-15T12:50:55+00:00

    Hi Yok33

    Open that folder in File Explorer

    Right click an empty space and choose 'Open Powershell Window here'

    Paste the following command into Powershell and hit Enter:

    get-childitem *.pdf | foreach { rename-item $_ $_.Name.Replace("SA-", "") }

    Wait for that command to complete, then close Powershell

    100+ people found this answer helpful.
    0 comments No comments
  2. DaveM121 869.3K Reputation points Independent Advisor
    2019-04-15T14:25:04+00:00

    Hi yok33

    Sorry, my bad, press Shift and right click at the same time . .

    60+ people found this answer helpful.
    0 comments No comments
  3. Vijay A. Verma 104.8K Reputation points Volunteer Moderator
    2019-04-15T12:48:11+00:00

    Hi yok33

    Greetings! I am Vijay, an Independent Advisor. I am here to work with you on this problem.

    Best way to do is through any file renamer utility. Microsoft Store has many free file renaming utilities. Just launch Microsoft Store and type rename and you get many options.

    If you need a recommendation, you can download below from Microsoft Store

    https://www.microsoft.com/store/productId/9NBLG...

    Do let me know if you require any further help on this. Will be glad to help you.

    30+ people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2019-04-15T12:48:58+00:00

    Hi Yok33

    My name is Andre Da Costa; an Independent Consultant, Windows Insider MVP and Windows & Devices for IT MVP. I'm here to help you with your problem.

    Here is a described PowerShell command that might work for you:

    https://superuser.com/questions/236820/how-do-i...

    References Windows 7, but the same instructions should work in Windows 10.

    Press Windows key + X

    Click Windows PowerShell (Admin)

    20+ people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2019-04-15T13:22:14+00:00

    Sorry, but when I right click in open area these are the only options I receive:

    • VIEW         >
    • SORT BY   >
    • GROUP BY  >
    • REFRESH

    -CUSTOMER FOLDER

    • UNDO RENAME
    • REDO COPY
    • GIVE ACCESS TO    >
    • NEW                  >

    -PROPERTIES

    4 people found this answer helpful.
    0 comments No comments