Skip to content

Instantly share code, notes, and snippets.

@rbocchinfuso
Created June 28, 2018 10:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbocchinfuso/933838bc02ffced4f528a2134ddca648 to your computer and use it in GitHub Desktop.
Save rbocchinfuso/933838bc02ffced4f528a2134ddca648 to your computer and use it in GitHub Desktop.
Convert to UTF8
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