How to get a connected progressbar #421
-
Hello, im currently trying to understand how to get a connected progressbar like yours in your examples. mine are just |
Beta Was this translation helpful? Give feedback.
Answered by
patriksvensson
May 20, 2021
Replies: 2 comments 2 replies
-
what console are you using? If your console doesn't support unicode (e.g. cmd.exe or the default powershell) you'll get the fallback character display. |
Beta Was this translation helpful? Give feedback.
2 replies
-
It will probably work if you set the terminal's output encoding explicitly: [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding See this discussion for more information: #378 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
patriksvensson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It will probably work if you set the terminal's output encoding explicitly:
See this discussion for more information: #378