Mass renaming file extensions with PowerShell
PowerShell is one of Windows’ most underused tools in my opinion. In many cases it rivals if not betters support that bash scripts provide. If you want to remove the extension of a file (say removing ‘!ut’ from file names), it’s a simple one line command. dir *.!ut | rename-item...