Created
February 6, 2018 13:53
-
-
Save jerone/a8d20396390897e9c99a9d1785e8ee68 to your computer and use it in GitHub Desktop.
Add word to Word dictionary with Powershell
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
$dicFile = (Get-Content Env:AppData) + "\Microsoft\UProof\CUSTOM.DIC" | |
Add-Content $dicFile "`r`nJERONE" -NoNewLine |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Testing...