Uninstall Evernote 6 in Windows 10! Uninstall Evernote for Mac? (2023 Updated)

Subscribers:
1,020
Published on ● Video Link: https://www.youtube.com/watch?v=ZlHlAqJjHos



Duration: 1:56
696 views
3


Task: Uninstall Evernote.
Info: This vid's goal is to help uninstall the Evernote cleanly. TRY this best uninstall tool@ https://macpaw.7eer.net/c/376211/297731/1733 if you're having trouble doing so on your own. If you can't remove the Mac version of Evernote yourself, try the below app remover pro@ https://macpaw.7eer.net/c/376211/480286/1733.

i-1. To uninstall Evernote using a batch file in Windows, you can follow these steps:

1. Open a text editor such as Notepad.
2. Copy and paste the following commands into the text editor:

```bat
@echo off
echo Uninstalling Evernote...
msiexec.exe /x {insert_Evernote_ProductCode_here} /qn
echo Evernote has been uninstalled.
pause
```

3. Replace `{insert_Evernote_ProductCode_here}` with the actual ProductCode of Evernote. To find the ProductCode, you can follow these steps:
- Open the Registry Editor by pressing Win + R, typing `regedit`, and pressing Enter.
- Navigate to the following location: `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall`
- Look for the Evernote entry in the list of installed programs. You might need to search for it if the list is long.
- Once you find the Evernote entry, click on it, and in the right-hand pane, look for the value named `ProductCode`. Copy its value.

4. Save the file with a `.bat` extension, for example, `uninstall_evernote.bat`. Make sure to choose "All Files" as the file type when saving.

5. Close the text editor.

To uninstall Evernote, you can double-click on the `uninstall_evernote.bat` file, and it will execute the commands to uninstall Evernote silently without displaying any prompts. After the uninstallation is complete, the batch file will display a message indicating that Evernote has been uninstalled, and it will wait for you to press any key before closing.

Note: Batch files can have significant consequences on your system if not used carefully. Ensure that you have a backup of your important data before running any batch file or making changes to your system.

i-2. To uninstall Evernote on macOS using a script file, you can create and execute a shell script with the following steps:

1. Open a text editor such as TextEdit or Visual Studio Code.

2. Copy and paste the following commands into the text editor:

```bash
#!/bin/bash

echo "Uninstalling Evernote..."

# Check if Evernote is installed
if [ -d "/Applications/Evernote.app" ]; then
# Quit Evernote if it's running
if pgrep -x "Evernote" angled-bracket-here/dev/null; then
echo "Quitting Evernote..."
osascript -e 'quit app "Evernote"'
fi

# Uninstall Evernote
echo "Removing Evernote..."
rm -rf "/Applications/Evernote.app"
rm -rf "$HOME/Library/Application Support/com.evernote.Evernote"
rm -rf "$HOME/Library/Caches/com.evernote.Evernote"
rm -rf "$HOME/Library/Preferences/com.evernote.Evernote.plist"
echo "Evernote has been uninstalled."
else
echo "Evernote is not installed."
fi

exit 0
```

3. Save the file with a `.sh` extension, for example, `uninstall_evernote.sh`. Make sure to choose "Plain Text" as the format when saving.

4. Open the Terminal application on your Mac. You can find it in the Applications - Utilities folder, or you can use Spotlight search to find it.

5. Navigate to the directory where you saved the `uninstall_evernote.sh` script using the `cd` command. For example, if you saved the file on your desktop, you can use the following command:

```bash
cd ~/Desktop
```

6. Make the script file executable by running the following command:

```bash
chmod +x uninstall_evernote.sh
```

7. Finally, execute the script by running the following command:

```bash
./uninstall_evernote.sh
```

The script will check if Evernote is installed, quit the application if it's running, and then remove all related files and directories associated with Evernote. Once the script completes, it will display a message indicating that Evernote has been uninstalled, or if Evernote is not found, it will notify you that Evernote is not installed.

Please note that running scripts and deleting files can have significant consequences on your system. Make sure to have a backup of your important data before executing any script or making changes to your system.







Tags:
Uninstall Evernote