Every day we offer FREE licensed software you’d have to buy otherwise.

RenameKit 1.0.0 (Win&Mac) Giveaway
9.95 / month
EXPIRED

Giveaway of the day — RenameKit 1.0.0 (Win&Mac)

Effortlessly Rename Multiple Files in Just a Few Clicks.
9.95 per month EXPIRED
User rating: 5 20 comments

RenameKit 1.0.0 (Win&Mac) was available as a giveaway on August 3, 2024!

Today Giveaway of the Day
$29.95
free today
A professional Android data eraser.

RenameKit is a versatile and powerful bulk rename utility designed to streamline and simplify the process of renaming large volumes of files. Whether you are a photographer, videographer, musician, or anyone who needs to manage and organize files efficiently, RenameKit provides an array of advanced features to meet your needs.

RenameKit supports renaming multiple files simultaneously, saving time and effort.
RenamaKit supports importing a wide range of file types, including documents, images, audio, and video files.
You can create and apply custom naming patterns to suit your specific needs. This includes adding prefixes and suffixes, adding sequential numbers, changing extensions and more.
You can also add detailed metadata to filenames. You can include file, image, audio, and video information, such as file size, directory name, creation time, modification time, last access time, image resolution, audio duration, and video frame rate.

System Requirements:

Windows 7/ 8/ 8.1/ 10/ 11 (x32/x64); MacOS: macOS V14 (Sonoma), macOS V13 (Ventura), macOS V12 (Monterey), macOS v11 (Big Sur), macOS v10.15 (Catalina)

Publisher:

Swyshare

Homepage:

https://www.swyshare.com/renamekit/

File Size:

150 MB

Licence details:

6 month license

Price:

9.95 per month

GIVEAWAY download basket

Developed by Microsoft
Developed by pdfforge GmbH
Developed by Acro Software Inc.
Developed by Tracker Software Products

Comments on RenameKit 1.0.0 (Win&Mac)

Thank you for voting!
Please add a comment explaining the reason behind your vote.
#6

I prefer https://www.bulkrenameutility.co.uk/Version.php?Version=2.7.1.2. Been using for many years and is very comprehensive

Reply   |   Comment by Aeron  –  Last year  –  Did you find this comment useful? yes | no (+3)
#5

Locate and Try "Rename Master"
Very powerful and free.
I am not affiliated, just a happy user

Reply   |   Comment by maddog7  –  Last year  –  Did you find this comment useful? yes | no (+2)
#4

Thanks everyone for your suggestions - hope I responded to you all.
I was hoping to get a response from the programmer, but alas so far nothing from them...

Nick...

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (0)
#3

ReNamer v5 looks way more user friendly & is Free.

Reply   |   Comment by E2B2  –  Last year  –  Did you find this comment useful? yes | no (+5)

E2B2, I have this one (v7) and it works fine...

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (-1)
#2

How can I remove a space followed by a name.

i.e. "Macbeth Camera1 John.mp4"
to "Macbeth Camera1.mp4"

Thanks,
Nick...

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (-1)

To be clear of what I need:

"Macbeth Camera1 John.mp4"
"Macbeth Camera1.mp4"

"Macbeth Camera2 Mary.mp4"
"Macbeth Camera2.mp4"

"Macbeth Camera3 Nick.mp4"
"Macbeth Camera3.mp4"

etc., etc..

Thanks,
Nick...

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (+2)

Nick, With a BIG disclaimer that I cannot code, the closest I could come up with is using PowerToys PowerRename with Find: (\w+\s)(\w+\s).*
Replace: $1$2.mp4

and Use Regular Expressions checked. That however does leave a space after Camera#. It's admittedly a kludge but that could be removed with a 2nd rename using:
Find: .{5}$
Replace: .mp4

learn.microsoft.com/en-us/windows/powertoys/powerrename

Reply   |   Comment by mike  –  Last year  –  Did you find this comment useful? yes | no (+1)

Hi Nick!
If the list of names is limited then you add them all separately under "Replace strings".
Simply add ' Nick' (make sure to include the leading blank) to "Find Text" field, and just leave the "Replace To" field as blank.
Repeat with every name.
Verify the results in the preview table.

Reply   |   Comment by twm  –  Last year  –  Did you find this comment useful? yes | no (+1)

Nick,

I'd try using the replace string if you have multiple files with the same name. In the "find text" section, enter in " John" (there is a space just before John) and in the "replace to" section, leave it completely blank. If the software is designed properly, this should take the space and name and replace it with nothing, in theory removing it from the file name.

I'd probably create a couple text files with similar names like you want to rename and test this out on them before running it on your live files.

Other batch renaming software I've used in the past has had the option of deleting X-number of characters from the beginning or end of a file name, though in the provided screenshots on the software above, I don't see that as an option.

Reply   |   Comment by FeMaster  –  Last year  –  Did you find this comment useful? yes | no (0)

Nick,

Open a text editor like Notepad.
Copy and paste the following script into the editor:
batch

@echo off
setlocal enabledelayedexpansion

REM Change to the directory containing the files
cd /d "C:\path\to\your\files"

for %%f in (*.mp4) do (
set "filename=%%~nf"
set "extension=%%~xf"

REM Remove the last space and name part before the extension
for /f "tokens=1,* delims= " %%a in ("!filename!") do (
set "newname=%%a!extension!"
ren "%%f" "!newname!"
)
)

endlocal

Replace "C:\path\to\your\files" with the actual path to your directory containing the files.
Save the file with a .bat extension, for example, rename_files.bat.
Double-click the .bat file to run it.

Reply   |   Comment by Denis  –  Last year  –  Did you find this comment useful? yes | no (0)

Nick,

Batch file corrected

@echo off
setlocal enabledelayedexpansion

REM Change to the directory containing the files
cd /d "C:\path\to\your\files"

for %%f in (*.mp4) do (
set "filename=%%~nf"
set "extension=%%~xf"

REM Remove the last space and name part before the extension
for /f "tokens=1* delims= " %%a in ("!filename!") do (
set "base=%%a"
)

ren "%%f" "!base!!extension!"
)

endlocal

Reply   |   Comment by Denis  –  Last year  –  Did you find this comment useful? yes | no (+2)

TK, Thanks, but that doesn't work..

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (+1)

mike, Thanks - but the idea is to use this program to do it.

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (0)

twm, I tried that with both the ' quote as well as the double quotes _ as in "
Neither worked.
Thanks for the thought (ˆ◡ˆ)

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (0)

Denis, I don't see a batch editor in this program ??

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (0)

FeMaster, Tried this too - no luck with either type of quotes

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (0)

Hi Nick,

You can use “{N*-*} File Name” and enter the starting and end character position of the range you want to modify.

e.g.
"Macbeth Camera1" "Macbeth Camera2" "Macbeth Camera3"
there are 15 characters (including space), so we need to type {N1-15} in the "Filename Patterns" panel.

Reply   |   Comment by Yang  –  Last year  –  Did you find this comment useful? yes | no (+1)
#1

You should explain why should we use this software while we can use ALWAYS FREE alternative such well-known Bulk Rename Utility (just google it)? Or any other open-source alternative such Ant Renamer, Siren, etc.?
Those free alternatives are capable to provide ALL features from your paid version. Additionally, the BRU has regular expression pattern matching, can use JavaScript to perform customized logic, consume much less storage, can create Undo batch file, etc.

Reply   |   Comment by Ferdinand  –  Last year  –  Did you find this comment useful? yes | no (+12)

Ferdinand, I am testing 'this' program not others.

Reply   |   Comment by Nick  –  Last year  –  Did you find this comment useful? yes | no (-2)
Add a comment

iPhone app giveaways »

Ultimate Game Guide Giveaway
Ultimate Game Guide is a great gaming and collecting resource for the Nintendo Entertainment System.
$4.99 ➞ free today
Abby Ball™ Rotate, Roll & Jump Giveaway
Abby Ball is a challenging physics-based puzzler complete with Retina display graphics.
$19.99 ➞ free today
Weather Forecast: Weather Bot Giveaway
Weather Bot allows you to create custom weather interfaces in any location in the world.
$1.99 ➞ free today
Passport Photo. Giveaway
Effortlessly craft your ideal passport, ID, or visa photo with the seamless integration of AI-powered customixation.
$2.99 ➞ free today
Alice Trapped in Wonderland Giveaway
Solve the amazing secrets inside the extraordinary Wonderland, Explore this incredible and shocking world.
$2.99 ➞ free today

Android app giveaways »

Christmas Drops 2 - Match 3 Giveaway
Multifaceted Christmas themed match three adventure!
$1.99 ➞ free today
Glass Neon - Icon Pack Giveaway
Elegant neon-colored icons for mobile devices.
$0.99 ➞ free today
ADWLauncher 1 EX Giveaway
Highly customizable home replacement application.
$1.99 ➞ free today
Tiny Text Adventure 2 Giveaway
The sequel to the popular Tiny Text Adventure 1 - continue the adventure, in a slightly larger fashion.
$1.01 ➞ free today
Italian Verbs Pro Giveaway
Browse and search the conjugations of over 700 Italian verbs.
$4.99 ➞ free today