powershell -command "Get-Content  -Encoding Shift-JIS y:/wordlst.txt | Out-File y:/word.txt  -Encoding utf8" 
powershell -command "Get-Content  -Encoding utf8 y:/wordlst.txt | Out-File y:/word.txt  -Encoding Shift-JIS  " 
pwsh -command "Get-Content  -Encoding Shift-JIS y:/wordlst.txt | Out-File y:/word.txt  -Encoding utf8NoBOM " 
バージョンが古い場合
powershell -command "Get-Content  -Encoding Default y:/wordlst.txt | Out-File y:/word.txt  -Encoding utf8" 
powershell -command "Get-Content  -Encoding utf8 y:/wordlst.txt | Out-File y:/word.txt  -Encoding Default  " 
ディスカッション
コメント一覧
まだ、コメントがありません