无忧启动论坛

标题: 屏蔽Adobe弹窗验证 [打印本页]

作者: 倒垃圾的歌者    时间: 6 天前
标题: 屏蔽Adobe弹窗验证
本帖最后由 倒垃圾的歌者 于 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





作者: 2012andyle113    时间: 6 天前
感谢分享,收藏一下
作者: wwoldok    时间: 6 天前
感谢分享
作者: 小灰兔    时间: 6 天前
感谢分享
作者: 燕飞龙    时间: 6 天前
谢谢分享
作者: chairmansu    时间: 6 天前

感谢分享
作者: a20120227    时间: 6 天前


感谢分享
作者: 倒垃圾的歌者    时间: 6 天前
本帖最后由 倒垃圾的歌者 于 2025-5-13 22:02 编辑

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

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



作者: Anson4    时间: 6 天前
感谢分享!
作者: wn168cn@163.com    时间: 6 天前
感谢分享
作者: 陌小寞    时间: 6 天前
感谢分享
作者: mianaa    时间: 6 天前
谢谢分享!!!!
作者: 呵呵#1861    时间: 6 天前
谢谢分享
作者: hmaaaa    时间: 6 天前
THX~!感恩分享摟,謝謝大大喔~~!辛苦了!^^
作者: in9    时间: 5 天前
谢谢楼主分享!
作者: chibuzhu    时间: 5 天前
感谢分享
作者: wang1126    时间: 5 天前
谢谢楼主分享
作者: yaowozhuce    时间: 5 天前

作者: yingla2018    时间: 5 天前
多谢楼主分享
作者: asdddsa101    时间: 5 天前
感谢分享
作者: czg2008    时间: 5 天前
谢谢分享
作者: mianaa    时间: 5 天前
谢谢分享!!!
作者: 2010happly    时间: 5 天前
看起来不错
作者: valen21    时间: 5 天前
感谢分享
作者: renjunone    时间: 5 天前
感谢分享
作者: sulong    时间: 5 天前
谢谢楼主分享
作者: 86933924    时间: 5 天前
感谢分享
作者: xuxiaojie110    时间: 5 天前
学习一下

作者: guies    时间: 5 天前
Adobe 的 hosts 真的封不完,
我覺得直接用內建的防火牆去擋那 .exe。
我則是直接用路由器去擋。


作者: 夏日风    时间: 5 天前
感谢分享,
作者: 梦海幻镜    时间: 5 天前
好像repack之类的pj版本不会自动更新吧
作者: zhenghui    时间: 5 天前
好东西感谢分享了。之前都是使用的大神制作的绿色版进行使用
作者: 2011monoso    时间: 5 天前
谢谢分享
作者: 忘忧风    时间: 5 天前
感谢分享
作者: 倒垃圾的歌者    时间: 5 天前
梦海幻镜 发表于 2025-5-14 10:37
好像repack之类的pj版本不会自动更新吧

是,但是挂V  P  N会弹窗
作者: 时光漫步    时间: 5 天前
谢谢分享!
作者: aaa123456789    时间: 5 天前
感谢分享
作者: view520    时间: 5 天前

感谢分享,收藏一下
作者: gassnake    时间: 5 天前

感谢分享
作者: lifufu8888    时间: 5 天前

厉害,谢谢分享
作者: guong    时间: 5 天前
谢谢楼主分享
作者: 12956    时间: 5 天前
学习了
作者: handsome_xiang    时间: 5 天前
感谢分享!
作者: yanglinman    时间: 5 天前
感谢分享,如弄个CDR 安装防弹窗就好了!
作者: jjhtya    时间: 5 天前
谢谢分享
作者: 怀中猫chat    时间: 4 天前
感谢分享
作者: plezhong    时间: 4 天前
感谢分享,一直都用的成品版,学习了。
作者: andylxh    时间: 4 天前
感谢楼主分享
作者: andylxh    时间: 4 天前
国内能不能正常下载
作者: urans520    时间: 4 天前
各位大神 请问有没有针对CDR的类似程序
作者: gedon    时间: 4 天前
谢谢分享。自已做了一下更换,感觉可以
作者: fegr    时间: 4 天前
感谢楼主分享
作者: 倒垃圾的歌者    时间: 3 天前
我也是出息了,出现在别人网站上了

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

作者: JacXPS    时间: 3 天前
我用绿色版,基本没有弹窗~
作者: 2267981144    时间: 前天 15:11
谢谢分享!
作者: sunyboy    时间: 前天 15:13
感谢分享!




欢迎光临 无忧启动论坛 (http://bbs.c3.wuyou.net/) Powered by Discuz! X3.3