PowerShell 에서 확장자 일괄 변경 윈도우의 PowerShell 에서 파일의 확장자를 일괄로 변경하고자 할 때 사용 PowerShell에서 해당 폴더 위치로 이동 확장자 .AAA를 .BBB로 변경할 때 get-childItem *.AAA -Recurse | Rename-Item -NewName { $_.Name -replace ".AAA", '.BBB' } My information 2020.12.18