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

Rename all files, removing first 3 characters

Rename all files, remove first 3 chars

get-childitem * | rename-item -newname { [string]($_.name).substring(3) }

Last updated