In past versions of Windows 10, WSL could be exited by closing all active terminals but with the introduction of background tasks in WSL this no longer works. Is there a way to exit WSL without rebooting the host system?
Asked
Active
Viewed 3.1k times
4 Answers
16
Yes, it is.
As an Administrator restart the windows Service "LxssManager" on Windows 10. This does a clean boot of the WSL. The services in the Linux Subsystem - for example xrdp - must be restarted if not enabled for autostart.
det13eg
- 176
14
A Powershell solution
Get-Service LxssManager | Restart-Service
Frank Fu
- 241
-
3The most elegan solution in my opinion. Don't forget that you have to start the PowerShell with administrator privilege tough. – kruemi Dec 14 '19 at 10:45
6
As the other answers mention, specifically for windows 1803, the following should work from powershell or cmd:
net stop LxssManager
As highlighted by @Ramhound, only for newer versions, which have wsl 2, you can also run this from powershell or cmd:
shutdown all instances:
wsl.exe --shutdown
shutdown a specific instance (e.g. Ubuntu):
wsl.exe -t Ubuntu
to show the current list of instances:
wsl.exe -l
Leo
- 769


wslhost.exeexecutable. One may kill that process but the result will be catastrophic. – Biswapriyo May 03 '18 at 17:30