Powershell でcsvファイルの文字コードをUTF16からUTF8に変換する方法

> Get-ChildItem -Recurse *.csv | ForEach-Object {Get-Content $_ | Set-Content -Encoding UTF8 ($_.FullName -replace 'csv','csv_')}