Created
June 28, 2018 10:18
-
-
Save rbocchinfuso/933838bc02ffced4f528a2134ddca648 to your computer and use it in GitHub Desktop.
Convert to UTF8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem "C:\Users\gerhardl\Documents\My Received Files" -Filter *.log | | |
Foreach-Object { | |
$content = Get-Content $_.FullName | |
Get-Content $content | Set-Content -Encoding utf8 $content | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment