Powershell Scripts patrick October 12, 2022 0 Comments Rename files in a directory before the extensions. (Get-ChildItem -Recurse -File -Filter *.*) | Rename-Item -NewName { $_.BaseName + ‘-anytext’ + $_.Extension } Cisco