|
I have been using winapps for a while and its very helpful with someone using arch linux and others OS. However, i have a big problem with my winapps. It really annoy because my laptop only has 8gb rams but the winapps keep startup when i turn on my laptop and i alway need to turn it off by using terminal. After looking for the solution, i found that i can uninstall by run the Winapps Install. Im glad that they have uninstall option for who want to remove Winapps quickly without remove manually. I chose uninstall system and it said that uninstallation complete. I also remove 2 files they recommend that is Winapps in .config folder and winapp-src in bin folder. I reboot it and it still startup and i need to turn it off again. Hope someone help me with this big problem. |
Replies: 1 comment 1 reply
|
The WinApps uninstall option only removes the WinApps integration layer: the Check which backend you used and stop/disable that part separately: # Docker backend
docker ps -a --filter name=WinApps
docker compose --file ~/.config/winapps/compose.yaml down
# If you really want to remove the Windows container disk too:
docker compose --file ~/.config/winapps/compose.yaml down --rmi=all --volumesFor Podman, use the same idea with podman ps -a --filter name=WinApps
podman-compose --file ~/.config/winapps/compose.yaml downIf you used the virsh dominfo RDPWindows | grep Autostart
virsh autostart --disable RDPWindows
virsh shutdown RDPWindowsIf you installed the optional So the short version is: the WinApps uninstall succeeded, but your Windows backend is still installed/autostarting. First run If that fixes it, please mark this as the answer so the next person with the same uninstall/autostart issue can find it quickly. |
The WinApps uninstall option only removes the WinApps integration layer: the
winapps/winapps-setupscripts, generated.desktoplaunchers, app data/icons, and protocol handler entries. It does not remove or disable the Windows VM/container that WinApps connects to. That is why Windows can still start afterwinapps-setup --system --uninstall.Check which backend you used and stop/disable that part separately:
For Podman, use the same idea with
p…