WSL - Using Powershell how would you create multiple sessions
-
So I have WSL installed on my work-device, makes life easier for a lot of the Unix administrative stuff I've been doing lately, and one thing that I would love to have is multiple sessions like with any standard linux distro with a key combo like
Ctrl+Alt+F1
which doesn't appear to work on WSL.How can I get this functionality through powershell?
-
New-PSSession -ComputerName Host1
New-PSSession -ComputerName Host2
Get-PSSession
will show all sessions you created.Use
Enter-PSSession
to enter one of your opened session