Skip to content

Instantly share code, notes, and snippets.

@peterhpchen
Created January 21, 2019 07:09
Show Gist options
  • Save peterhpchen/1e71d150441f69f6dc70abfbc57abedd to your computer and use it in GitHub Desktop.
Save peterhpchen/1e71d150441f69f6dc70abfbc57abedd to your computer and use it in GitHub Desktop.
Encoding all file in directory to ASCII
# Encoding current path all asp file to ASCII
get-childitem -path *.asp -force | foreach-object { (get-content $_.fullname) | set-content $_.fullname }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment