Skip to content

Uninstall

Paul edited this page May 21, 2017 · 1 revision
Uninstall

GitHub/Squirrel Installs

  1. Open up Control Panel and then select "Uninstall a program"
  2. Find "Outlook Google Calendar Sync" and hit "Uninstall/Change"

CodePlex/ClickOnce Installs

  1. Open up Control Panel and then select "Uninstall a program"
  2. Find "Outlook Google Calendar Sync" and hit "Uninstall/Change"
  3. Select "Remove the application from this computer" and OK

ZIP Installs

  1. Open Windows Explorer and locate the folder you unzipped to
  2. Delete the entire folder

Removing Any Remnants

🗑️ Having uninstalled and reboot, the following will clean any stray elements.

For any type of install not running in "Portable" mode
del /s "%APPDATA%\Outlook Google Calendar Sync"

For GitHub
del /s "%LOCALAPPDATA%\OutlookGoogleCalendarSync"

For CodePlex
cd %LOCALAPPDATA%\Apps\2.0
You will then need to determine the directory to navigate down to, eg:
dir /b/s outlookgooglecalendarsync.exe
This will return something like
C:\Users\<user>\AppData\Local\Apps\2.0\WHGZRQP3.54J\9MM51RYM.BN2\outl..tion_a30846 ba3587a523_0002.0004_d79036ab77ef318b\OutlookGoogleCalendarSync.exe
The below values will be different for your particular install
cd WHGZRQP3.54J
del /s 9MM51RYM.BN2

If the app was set to run on startup

Version from v2.1.5.0
reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v "Outlook Google Calendar Sync" /f

Version from v2.1.1.0 to v2.1.4.0
del "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\Outlook Google Calendar Sync.lnk"

Version before v2.1.1.0
del "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\OutlookGoogleCalendarSync.lnk"