Meilleur moyen de modifier l'extension du fichier dans PowerShell

$path = 'C:\temp\ImportantFile.txt'
Copy-Item -Path $path –Destination ([io.path]::ChangeExtension($path, '.bak')) -Verbose
Doubtful Dogfish