无忧启动论坛

 找回密码
 注册
搜索
系统gho:最纯净好用系统下载站投放广告、加入VIP会员,请联系 微信:wuyouceo
查看: 2023|回复: 55
打印 上一主题 下一主题

[分享] 屏蔽Adobe弹窗验证

  [复制链接]
跳转到指定楼层
1#
本帖最后由 倒垃圾的歌者 于 2025-5-13 21:50 编辑

弹窗展示



批处理代码展示

  1. @echo off&(cacls "%SystemDrive%\System Volume Information" >nul 2>&1)||(start "" mshta vbscript:CreateObject^("Shell.Application"^).ShellExecute^("%~snx0"," %*","","runas",1^)^(window.close^)&exit /b)

  2. :Menu
  3. pushd "%~dp0"
  4. color f0
  5. cls
  6. title 屏蔽Adobe验证
  7. echo.
  8. echo 请选择
  9. echo.
  10. echo 1、添加Hosts
  11. echo.
  12. echo 2、删除Hosts
  13. echo.
  14. echo 3、更新Hosts
  15. echo.
  16. echo 4、打开Hosts查看
  17. echo.
  18. echo 按其他键退出
  19. CHOICE /C 1234 /N >NUL
  20. IF "%ERRORLEVEL%"=="1" goto Add
  21. IF "%ERRORLEVEL%"=="2" goto Delete
  22. IF "%ERRORLEVEL%"=="3" goto Update
  23. IF "%ERRORLEVEL%"=="4" title 打开hosts & attrib -s -h -r "%SystemRoot%\system32\drivers\etc\hosts" /S /D & cls & notepad "%WinDir%\system32\drivers\etc\hosts " & echo. & echo 操作完成,按任意键返回菜单 & pause>nul & goto Menu

  24. :Add
  25. cls
  26. title 添加Hosts

  27. del /f /s /q "%cd%\List.txt" >NUL 2>NUL
  28. powershell -Command "Invoke-WebRequest -Uri 'https://gitlab.com/ignaciocastro/a-dove-is-dumb/-/raw/main/list.txt' -OutFile 'List.txt'"

  29. SET hosts=%WinDir%\system32\drivers\etc\hosts
  30. takeown /f "%SystemRoot%\System32\drivers\etc\hosts" /a
  31. if exist %hosts% echo y|icacls %hosts% /c /grant "administrators:F" >NUL 2>NUL
  32. if exist %hosts% attrib -h -r -s %hosts%
  33. echo. >>%hosts%

  34. echo ##Block Adobe authentication##>>%hosts%

  35. for /f "skip=7 delims=" %%a in (List.txt) do (
  36.     echo %%a>>%hosts%
  37. )

  38. echo ##Adobe End##>>%hosts%

  39. del /f /s /q "%cd%\List.txt" >NUL 2>NUL

  40. cls
  41. echo.
  42. echo 操作完成,按任意键返回菜单
  43. pause>nul
  44. goto Menu

  45. :Delete
  46. cls
  47. title 删除Hosts

  48. pushd "%windir%\System32\drivers\etc"
  49. attrib -s -h -r "%SystemRoot%\system32\drivers\etc\hosts" /S /D
  50. copy hosts hosts.txt
  51. for /f %%g in ('dir /b/on hosts.txt') do findstr /iv "Adobe hstatic" "%%g">newhosts.txt
  52. copy newhosts.txt hosts
  53. del /f /s /q %windir%\System32\drivers\etc\*.txt >nul

  54. cls
  55. echo.
  56. echo 操作完成,按任意键返回菜单
  57. pause>nul
  58. goto Menu

  59. :Update
  60. cls
  61. title 更新Hosts

  62. if not exist "%cd%\List.txt" del /f /s /q "%cd%\List.txt" >NUL 2>NUL
  63. powershell -Command "Invoke-WebRequest -Uri 'https://gitlab.com/ignaciocastro/a-dove-is-dumb/-/raw/main/list.txt' -OutFile 'List.txt'"

  64. pushd "%windir%\System32\drivers\etc"
  65. attrib -s -h -r "%SystemRoot%\system32\drivers\etc\hosts" /S /D
  66. copy hosts hosts.txt
  67. for /f %%g in ('dir /b/on hosts.txt') do findstr /iv "Adobe hstatic" "%%g">newhosts.txt
  68. copy newhosts.txt hosts
  69. del /f /s /q %windir%\System32\drivers\etc\*.txt >nul

  70. SET hosts=%WinDir%\system32\drivers\etc\hosts
  71. takeown /f "%SystemRoot%\System32\drivers\etc\hosts" /a
  72. if exist %hosts% echo y|icacls %hosts% /c /grant "administrators:F" >NUL 2>NUL
  73. if exist %hosts% attrib -h -r -s %hosts%
  74. echo. >>%hosts%

  75. echo ##Block Adobe authentication##>>%hosts%

  76. for /f "skip=7 delims=" %%a in (List.txt) do (
  77.     echo %%a>>%hosts%
  78. )

  79. echo ##Adobe End##>>%hosts%


  80. cls
  81. echo.
  82. echo 操作完成,按任意键返回菜单
  83. pause>nul
  84. goto Menu
复制代码

成品展示



屏蔽Adobe验证.exe (540.25 KB, 下载次数: 145)

之后hosts更新,如果hosts删除不干净,可以添加相关的关键词,目前的关键词为“Adobe hstatic




评分

参与人数 2无忧币 +6 收起 理由
__落 + 1 赞一个!
yang77 + 5 赞一个!

查看全部评分

来自 8#
 楼主| 发表于 6 天前 | 只看该作者
本帖最后由 倒垃圾的歌者 于 2025-5-13 22:02 编辑

置顶一下,屏蔽结果受https://gitlab.com/ignaciocastro/a-dove-is-dumb/-/raw/main/list.txt地址影响,如果这个地址打不开,建议使用Watt Toolkit工具加速,再尝试添加hosts

用压缩软件可以打开exe文件,.bat文件就在里面


回复

使用道具 举报

56#
发表于 前天 15:13 | 只看该作者
感谢分享!
回复

使用道具 举报

55#
发表于 前天 15:11 | 只看该作者
谢谢分享!
回复

使用道具 举报

54#
发表于 3 天前 | 只看该作者
我用绿色版,基本没有弹窗~
回复

使用道具 举报

53#
 楼主| 发表于 3 天前 | 只看该作者
我也是出息了,出现在别人网站上了

屏蔽Adobe弹窗验证工具 v20250513 最新版-绿软小站
回复

使用道具 举报

52#
发表于 4 天前 来自手机 | 只看该作者
感谢楼主分享
回复

使用道具 举报

51#
发表于 4 天前 | 只看该作者
谢谢分享。自已做了一下更换,感觉可以
回复

使用道具 举报

50#
发表于 4 天前 | 只看该作者
各位大神 请问有没有针对CDR的类似程序
回复

使用道具 举报

49#
发表于 4 天前 来自手机 | 只看该作者
国内能不能正常下载
回复

使用道具 举报

48#
发表于 4 天前 来自手机 | 只看该作者
感谢楼主分享
回复

使用道具 举报

47#
发表于 4 天前 | 只看该作者
感谢分享,一直都用的成品版,学习了。
回复

使用道具 举报

46#
发表于 4 天前 | 只看该作者
感谢分享
回复

使用道具 举报

45#
发表于 5 天前 | 只看该作者
谢谢分享
回复

使用道具 举报

44#
发表于 5 天前 | 只看该作者
感谢分享,如弄个CDR 安装防弹窗就好了!
回复

使用道具 举报

43#
发表于 5 天前 | 只看该作者
感谢分享!
回复

使用道具 举报

42#
发表于 5 天前 | 只看该作者
学习了
回复

使用道具 举报

41#
发表于 5 天前 | 只看该作者
谢谢楼主分享
回复

使用道具 举报

40#
发表于 5 天前 | 只看该作者

厉害,谢谢分享
回复

使用道具 举报

39#
发表于 5 天前 | 只看该作者

感谢分享
回复

使用道具 举报

38#
发表于 5 天前 | 只看该作者

感谢分享,收藏一下
回复

使用道具 举报

37#
发表于 5 天前 | 只看该作者
感谢分享
回复

使用道具 举报

36#
发表于 5 天前 | 只看该作者
谢谢分享!
回复

使用道具 举报

35#
 楼主| 发表于 5 天前 | 只看该作者
梦海幻镜 发表于 2025-5-14 10:37
好像repack之类的pj版本不会自动更新吧

是,但是挂V  P  N会弹窗
回复

使用道具 举报

34#
发表于 5 天前 | 只看该作者
感谢分享
回复

使用道具 举报

33#
发表于 5 天前 | 只看该作者
谢谢分享
回复

使用道具 举报

32#
发表于 5 天前 | 只看该作者
好东西感谢分享了。之前都是使用的大神制作的绿色版进行使用
回复

使用道具 举报

31#
发表于 5 天前 | 只看该作者
好像repack之类的pj版本不会自动更新吧

点评

是,但是挂V P N会弹窗  详情 回复 发表于 5 天前
回复

使用道具 举报

30#
发表于 5 天前 | 只看该作者
感谢分享,
回复

使用道具 举报

29#
发表于 5 天前 | 只看该作者
Adobe 的 hosts 真的封不完,
我覺得直接用內建的防火牆去擋那 .exe。
我則是直接用路由器去擋。

回复

使用道具 举报

28#
发表于 5 天前 | 只看该作者
学习一下
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|捐助支持|无忧启动 ( 闽ICP备05002490号-1 )

闽公网安备 35020302032614号

GMT+8, 2025-5-19 05:30

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表