Fix PuTTY not uninstalling on Mac

Опубликовано: 19 Февраль 2025
на канале: How-toUninstall
220
0

Here's how to Fix PuTTY not uninstalling on Mac. For starters, use CleanMyMac X@ https://macpaw.audw.net/c/376211/6381... so u can efficiently manage installed app & your Mac.

Below are the PuTTY for Mac uninstall script codes (beta):

#!/bin/bash

Quit PuTTY if it's running
if pgrep "putty.exe" angled-bracket-here /dev/null; then
echo "Quitting PuTTY"
killall putty.exe
fi

Remove PuTTY files
echo "Removing PuTTY"
rm -rf ~/Applications/PuTTY.app
rm -rf ~/.wine/drive_c/Program\ Files/PuTTY

echo "PuTTY has been uninstalled"