# Remove Rencher-desktop leave the wsl problem ## Situation I have been use docker-desktop for a while. And I went to a workshop that need to install Rancher Desktop. After the workshop, I uninstalled Rancher Desktop and I open my docker-desktop. There is an error message pop up like below. ``` docker desktop WSL integration with distro `rancher-desktop-data` unexpectedly stopped ``` ## Solution - Open CLI and use the command below to list all the WSL distro ```bash wsl --list ``` - You will see the distro `rancher-desktop-data` and `docker-desktop-data` in the list - And we can see the `rancher-desktop-data` is to be default distro - Set the `docker-desktop-data` to be the default distro ```bash wsl --setdefault docker-desktop-data ``` - Use the command below to remove the `rancher-desktop-data` distro ```bash wsl --unregister rancher-desktop-data ``` - Restart the docker-desktop - The error message should be gone ## Reference https://github.com/rancher-sandbox/rancher-desktop/issues/1504