We install the TTP menu in Windows Explorer by default. However, a couple of users have requested that this menu be removed.
Here is how you can do that:
- Backup the Registry file to avoid any issue – Inside Registry Editor, File > Export
- Save the commands below to a "remove-menu.bat" file. (we would provide the actual bat file but most email engines strip batch files and virus scanners don't like it)
- Open a Command Prompt window, type cmd in the bottom bar and select Run as Administrator on the right side (must be with this privilege to work)
- Execute/Run the .bat provided on any directory.
***The menu options will be dismissed immediately.
==== commands to save to a .bat file
@echo off
echo.
echo Removing Tag That Photo's Context Menu Keys from Registry...
echo.
reg delete HKEY_CLASSES_ROOT\CLSID\{d170b0e9-48b4-45bd-99ac-a50d09f47805} /f
if NOT ["%errorlevel%"]==["0"] GOTO :ErrFolder
echo.
reg delete HKEY_CLASSES_ROOT\CLSID\{09FF8BF1-6BFB-4EEA-B9D5-2EB50DC8E239} /f
if NOT ["%errorlevel%"]==["0"] GOTO :ErrFile
echo.
echo Keys Successfully Removed!
:ErrFolder
echo *** ATTENTION: ERROR REMOVING THE FOLDER CONTEXT MENU!
:ErrFile
echo *** ATTENTION: ERROR REMOVING THE FILE CONTEXT MENU!