I\'m trying to do the following:
Rename-Item c:\\misc\\*.xml *.tmp
I basically want to change the extension on every files within a directory t
a shortened version using the alias would be:
ls *.xml | ren -new {$_.BaseName + ".tmp"}