For Windows users, see current value of the LANG environment variable with PowerShell like so:
# User context / per user
[System.Environment]::GetEnvironmentVariable('LANG','User')
# System context / all users
[System.Environment]::GetEnvironmentVariable('LANG','Machine')
If no value is returned, it hasn't been set.
And set it like so (in user context / per user, does not require admin):
[System.Environment]::SetEnvironmentVariable('LANG','en','User')
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.