Batch ISO Creator rename rules panel
Rename rules are one of the strongest reasons to use a focused batch ISO tool instead of cleaning files by hand.

Messy names do not look serious. They also make archives harder to search, sort, compare, and hand off. A folder called final client files NEW 2 might be understandable today, but an ISO named final client files NEW 2.iso will look unprofessional six months from now.

Batch ISO Creator treats naming as part of the workflow instead of an afterthought. You can configure rules for folders and rules for generated ISO files, then apply those rules as the batch runs. That means output names are closer to final the first time.

Important detail: Rename rules are applied after ISO creation. That is useful when you want the app to produce the ISO first and then clean the generated ISO filename or final folder name as a controlled post-processing step.

The two rename layers

The app separates rename behavior into two sections. Folder Rename Rules are for folder names. ISO File Rename Rules are for the generated ISO file names. That separation matters because the name you want on disk is not always the exact name you want inside your source structure.

Rename layerBest used forExample
Folder rename rulesCleaning final folder names after ISO creationClient A Release to CLIENT_A_RELEASE
ISO file rename rulesCleaning generated ISO filenamesClient A Release.iso to CLIENT_A_RELEASE_2026.iso
Both layersStrict archive or delivery conventionsFolder and ISO name follow the same client/version pattern

Rule types in plain English

Batch ISO Creator includes the rule types most people need for real cleanup. You do not need to write a script just to make names consistent.

Rule typeWhat it doesUseful example
Replace TextFinds text and replaces it with different textReplace spaces with underscores
Remove TextDeletes a fixed phrase or tokenRemove copy, final, or a vendor tag
Regular ExpressionUses a pattern for advanced cleanupRemove trailing build numbers or normalize dates
Change CaseConverts names to uppercase, lowercase, or title caseclient pack to CLIENT PACK
Add PrefixAdds text at the startCLIENTA_ before every ISO name
Add SuffixAdds text at the end_ARCHIVE or _2026
InsertInserts text by position or around matching textAdd a dash before a version marker
DeleteDeletes characters by position or around matching textRemove an unwanted leading code

A practical naming recipe

For many teams, the safest convention is uppercase words separated by underscores. It sorts well, avoids space-related confusion, and reads clearly in scripts, file shares, and archive tools.

Original folder names
Client A - Onboarding Kit
client-b onboarding kit
Client C.Onboarding.Kit

Desired ISO names
CLIENT_A_ONBOARDING_KIT.iso
CLIENT_B_ONBOARDING_KIT.iso
CLIENT_C_ONBOARDING_KIT.iso

You can get close with a simple sequence: replace - with _, replace spaces with underscores, replace dots with underscores, then use Change Case to uppercase. If you need a project code, add a prefix. If you need a retention label, add a suffix.

Why order matters

Rules run in order. That means a replace rule can prepare a name for a later regex rule, or a case rule can make final output consistent after all text cleanup has happened. In most cases, put destructive cleanup first, structural replacements next, and case conversion near the end.

Batch ISO Creator ISO options screen
Use ISO settings for compatibility, and rename rules for readable output.
Batch ISO Creator progress report
Reports help confirm what was generated and how the run finished.

When a regex rule is worth it

Regex is useful when names are inconsistent but the problem has a pattern. For example, you might remove everything inside square brackets, normalize repeated separators, or strip a trailing temporary code. If the cleanup is simple, use Replace or Remove. If the cleanup depends on a pattern, use Regular Expression.

The app is intentionally friendly to both groups: users who only need simple replacements and users who want advanced pattern matching.

Clean ISO Names Before They Become a Cleanup Job

Use Batch ISO Creator when naming consistency matters as much as creating the ISO files. Configure folder and ISO rename rules once, then run the batch with cleaner output.

Download Batch ISO CreatorRead regex guide

FAQ

Can Batch ISO Creator rename ISO files after creation?

Yes. The app has a dedicated ISO File Rename Rules section that can rename generated ISO filenames after the ISO creation step.

What rename rules are available?

The current rule set includes replace text, remove text, regular expression, change case, add prefix, add suffix, insert, and delete rules.

Can folder names and ISO names use different rules?

Yes. Folder rename rules and ISO file rename rules are separate, so each output layer can have its own cleanup logic.