svg-explorer-extension icon indicating copy to clipboard operation
svg-explorer-extension copied to clipboard

Help with uninstall

Open icyenvy opened this issue 4 years ago • 4 comments

Hi,

Thank you for creating this project! Unfortunately I need to remove it from one of the machines and I do not find any entry in the add/remove programs. Caan anyone help me with the right way to remove the program?

Many Thanks

icyenvy avatar Apr 16 '20 08:04 icyenvy

You can probably see it on your Programs Folder under the Local Disk

matfroes avatar May 20 '20 17:05 matfroes

It should be listed to remove in Control Panel >> Apps & Features as "SVG Explorer Extension". If it's not there try just running unins001.exe in C:\Program Files\SVG Explorer Extension.

To manually uninstall you can try:

  1. Open an administrative command prompt window
  2. Unregister the DLL
  3. navigate to "Program Files\SVG Explorer Extension"
  4. follow the install instructions part about killing explorer.exe
  5. delete contents of "Program Files\SVG Explorer Extension"
  6. restart explorer.exe

Example (untested):

regsvr32.exe /u "C:\Program Files\SVG Explorer Extension\SVGThumbnailExtension.dll"
pushd "Program Files"
TASKKILL /IM explorer* /F
DEL "%localappdata%\IconCache.db" /A
RMDIR /s "SVG Explorer Extension"
explorer.exe

2020-05-31: edited to (1) add try running unins001.exe; (2) insert unregister dll step

maphew avatar May 27 '20 21:05 maphew

Actually, first try just running unins001.exe in C:\Program Files\SVG Explorer Extension

maphew avatar May 27 '20 21:05 maphew

It should be listed to remove in Control Panel >> Apps & Features as "SVG Explorer Extension". However to manually uninstall you can try:

  1. Open an administrative command prompt window
  2. navigate to "Program Files\SVG Explorer Extension"
  3. follow the install instructions part about killing explorer.exe
  4. delete contents of "Program Files\SVG Explorer Extension"
  5. restart explorer.exe

Example (untested):

pushd "Program Files"
TASKKILL /IM explorer* /F
DEL "%localappdata%\IconCache.db" /A
RMDIR /s "SVG Explorer Extension"
explorer.exe

For the manual uninstall first you need to unregister the extension. From an admin console run: regsvr32.exe /u "C:\Program Files\SVG Explorer Extension\SVGThumbnailExtension.dll"

tibold avatar May 31 '20 12:05 tibold