my $PSVersion output is as follows:
Name Value
---- -----
PSVersion 7.0.1
PSEdition Core
GitCommitId 7.0.1
OS Microsoft Windows 10.0.19041
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
If I run
wsl -l
my output appears in the console as:
Windows Subsystem for Linux Distributions:
Ubuntu-20.04 (Default)
ubuntu-20.04-systemd
If I run
wsl -l | Out-File foo.txt
it appears in the file as:
W i n d o w s S u b s y s t e m f o r L i n u x D i s t r i b u t i o n s :
U b u n t u - 2 0 . 0 4 ( D e f a u l t )
u b u n t u - 2 0 . 0 4 - s y s t e m d
I've tried specifying different output encodings to Out-File to no avail. I'd like to understand what's going on and how to get around it.
Thank you!