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 22 comments

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

Today Giveaway of the Day
$9.95
free today
Evaluate the beauty of a face!

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  –  7 months ago  –  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  –  7 months ago  –  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  –  7 months ago  –  Did you find this comment useful? yes | no (0)
#3

ReNamer v5 looks way more user friendly & is Free.

Reply   |   Comment by E2B2  –  7 months ago  –  Did you find this comment useful? yes | no (+5)

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

Reply   |   Comment by Nick  –  7 months ago  –  Did you find this comment useful? yes | no (-1)

E2B2, apparently only the Lite edition is free... the full version is paid.

Reply   |   Comment by TK  –  7 months ago  –  Did you find this comment useful? yes | no (0)
#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  –  7 months ago  –  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  –  7 months ago  –  Did you find this comment useful? yes | no (+2)

Nick, I would imagine you would Add replace rules for each specific string ending and include the file extension thus
Add find text " John.mp4" replace text ".mp4"
Add find text " Mary.mp4" replace text ".mp4" and so on... really this is not the best way to do that as you are creating find and replace rules for practically each file which is soo inefficient you might as well just rename files manually as it will involve less steps!
TK

Reply   |   Comment by TK  –  7 months ago  –  Did you find this comment useful? yes | no (0)

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  –  7 months ago  –  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  –  7 months ago  –  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  –  7 months ago  –  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  –  7 months ago  –  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  –  7 months ago  –  Did you find this comment useful? yes | no (+2)

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

Reply   |   Comment by Nick  –  7 months ago  –  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  –  7 months ago  –  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  –  7 months ago  –  Did you find this comment useful? yes | no (0)

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

Reply   |   Comment by Nick  –  7 months ago  –  Did you find this comment useful? yes | no (0)

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

Reply   |   Comment by Nick  –  7 months ago  –  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  –  7 months ago  –  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  –  7 months ago  –  Did you find this comment useful? yes | no (+12)

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

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

iPhone app giveaways »

PDF417 AAMVA Giveaway
PDF417 AAMVA encodes user data into an AAMVA standard barcode.
$4.99 ➞ free today
Dragon Flight Simulator Games Giveaway
Dragon flight simulator game is an exciting dragon flight simulations game tailored made for mobile devices.
$1.99 ➞ free today
Filterious Photo Filters Giveaway
Filterious is a vintage photo filters that makes any picture unique.
$2.99 ➞ free today
Cuppy Ball Giveaway
A beautiful, mesmerizing ball-and-cup game. 1000 levels!
$0.99 ➞ free today
HeritageDaily Magazine Giveaway
HeritageDaily is a leading online science, research and publishing news service.
$0.99 ➞ free today

Android app giveaways »

Traffic Jam Cars Puzzle Legend Giveaway
The premium version of the Traffic Jam Car Puzzle 2023.
$4.99 ➞ free today
You-R Circle Icon Pack Giveaway
You-R Circle is a line circle icon pack with a design inspired by the material you.
$1.49 ➞ free today
Lines Circle - Neon Icon Pack Giveaway
Lines Circle Neon is icon pack / Icon Changer for nova, evie, and more.
$1.99 ➞ free today
Cross the Cliff Giveaway
Funny and Easy Game!
$0.99 ➞ free today
Light Yellow - Icon Pack Giveaway
Light Yellow icon pack is one themed shapeless icons with Yellow color.
$1.99 ➞ free today