Cara terbaik untuk mengubah ekstensi file di PowerShell

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