|
本帖最后由 nttwqz 于 2015-9-4 14:58 编辑
jinshengweishui 发表于 2015-9-3 21:19
没用,毫无反应。。
经测试,该软件不支持静默安装。所以写了个批处理,不对或缺的地方你自己再改,文件关联部分可能不完全正确。XP系统测试的,快速启动和开始菜单里面没删。
@echo off
echo 开始卸载2345浏览器
pause>nul
pushd %programfiles%\2345soft\2345Explorer
taskkill /im explorer.exe /f
for /f %%a in ('dir /a /b *.dll') do regsvr32 /u /s %%a
net stop Protect_2345Explorer&&sc delete Protect_2345Explorer
reg delete "HKLM\SoftWare\2345Explorer" /f >nul 2>nul
reg delete "HKCU\SoftWare\2345Explorer" /f >nul 2>nul
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\2345Explorer" /f >nul 2>nul
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\2345Explorer.exe" /f >nul 2>nul
assoc .htm=htmlfile
assoc .html=htmlfile
assoc .shtml=htmlfile
assoc .xht=htmlfile
assoc .xhtml=htmlfile
assoc .webp=htmlfile
reg delete "HKLM\SOFTWARE\Classes\2345ExplorerHTML" /f >nul 2>nul
reg delete "HKLM\SOFTWARE\Clients\StartMenuInternet\2345Explorer" /f >nul 2>nul
rd %programfiles%\2345soft\2345Explorer /q /s >nul 2>nul
rd %userprofile%\Local Settings\Application Data\2345Explorer /q /s >nul 2>nul
del %userprofile%\desktop\2345*.ink /q
start explorer.exe
pause |
|