Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
windows: set text encodig for powershell to utf-8
by default powershell uses the OEM-US/codepage 437 encoding which is an extension of ASCII when a character with umlaut is used and powershell uses the default encoding go is unable to properly convert it to a go string as it doesn't understand the OEM-US encoding by default and replaces it with 'U+FFFD' and we get a ? in the output the preflight check, checking if username in group fails since the username is not correct because of the '?' character in it, this fixes it by using the utf-8 encoding for powershell
- Loading branch information