For the complete documentation index, see llms.txt. This page is also available as Markdown.

Rename all files, replacing " " with "_"

Rename all files, remove space with underscore

get-childitem * | rename-item -newname { [string]($_.name).replace(" ", "_") }

Last updated