本帖最后由 mmlion 于 2022-9-22 05:30 编辑
我在用着6.33超简版,带有idmantypeinfo和中文这3个文件。遗憾6.35开始才支持自定义UA。
看着楼主这么热心分享原创作品,我也分享些注册表设置供参考,(除了你这22个缺失)没有弹窗:
[] 纯文本查看 复制代码 @echo off & cd /d "%~dp0"
taskkill /f /im IDM* >nul 2>nul
taskkill /f /im IEMon* >nul 2>nul
reg delete "HKU\.DEFAULT\Software\DownloadManager" /f >nul 2>nul
reg delete "HKLM\SOFTWARE\Internet Download Manager" /f >nul 2>nul
reg delete "HKLM\SOFTWARE\Wow6432Node\Internet Download Manager" /f >nul 2>nul
reg delete "HKCU\Software\Microsoft\Internet Explorer\MenuExt" /f >nul 2>nul
reg delete "HKCU\Software\DownloadManager" /f >nul 2>nul
reg add "HKCU\Software\DownloadManager" /f /v "CheckUpdtVM" /t REG_SZ /d "0" >nul
reg add "HKCU\Software\DownloadManager" /f /v "ComplDlgShowing" /t REG_DWORD /d 0 >nul
reg add "HKCU\Software\DownloadManager" /f /v "bComlDlgVMS" /t REG_DWORD /d 0 >nul
reg add "HKCU\Software\DownloadManager" /f /v "bShInstEdgeExtTip" /t REG_DWORD /d 0 >nul
reg add "HKCU\Software\DownloadManager" /f /v "LanguageID" /t REG_DWORD /d 2052 >nul
reg add "HKCU\Software\DownloadManager" /f /v "LargeButtons" /t REG_DWORD /d 0 >nul
reg add "HKCU\Software\DownloadManager" /f /v "LaunchOnStart" /t REG_DWORD /d 0 >nul
reg add "HKCU\Software\DownloadManager" /f /v "RunIEMonitor" /t REG_DWORD /d 0 >nul
reg add "HKCU\Software\DownloadManager" /f /v "StartDlgShowing" /t REG_DWORD /d 1 >nul
reg add "HKCU\Software\DownloadManager" /f /v "startImmediately" /t REG_DWORD /d 0 >nul
reg add "HKCU\Software\DownloadManager" /f /v "MaxConnectionsNumber" /t REG_DWORD /d 8 >nul
reg add "HKCU\Software\DownloadManager" /f /v "MonitorUrlClipboard" /t REG_DWORD /d 1 >nul
reg add "HKCU\Software\DownloadManager" /f /v "FSPSSettingsChecked" /t REG_DWORD /d 1 >nul
reg add "HKCU\Software\DownloadManager" /f /v "FSSettingsChecked" /t REG_DWORD /d 1 >nul
reg add "HKCU\Software\DownloadManager" /f /v "FindApps" /t REG_DWORD /d 0 >nul
reg add "HKCU\Software\DownloadManager" /f /v "idmvers" /t REG_SZ /d "v6.39 Full" >nul
reg add "HKCU\Software\DownloadManager" /f /v "isSSW_OK" /t REG_DWORD /d 1 >nul
reg add "HKCU\Software\DownloadManager" /f /v "radxcnt" /t REG_DWORD /d 1 >nul
reg add "HKCU\Software\DownloadManager" /f /v "rshext" /t REG_DWORD /d 0 >nul
reg add "HKCU\Software\DownloadManager" /f /v "TrayIcon" /t REG_DWORD /d 2 >nul
reg add "HKCU\Software\DownloadManager" /f /v "TipStartUp" /t REG_DWORD /d 1 >nul
reg add "HKCU\Software\DownloadManager" /f /v "szCustomUserAgent" /t REG_SZ /d "netdisk;7.0.3.2;PC;PC-Windows;10.0.17763" >nul
reg add "HKCU\Software\DownloadManager\MCN\https://*.baidupcs.com" /f /v "number" /t REG_DWORD /d 2 >nul
reg add "HKCU\Software\DownloadManager\FoldersTree" /f /v "Visiblity" /t REG_DWORD /d 0 >nul
|