Table of Contents
PowerShell
PowerShell
Bulk rename
Get-ChildItem
*
.jpg
|
foreach
{
Rename-Item
$_
$_
.Name.Replace
(
" Some Text "
,
""
)
}