gucong 发表于 2010-2-19 23:28:37

DaemonTools_3.47_全自动静默安装

本帖最后由 gucong 于 2010-2-19 23:41 编辑

以前用AutoIt写的,现在用批处理改写了。
采用批处理方式全自动安装,采用WinRAR打包(mympc自解压模块)。
添加了原版没有的右键装载光盘功能,直接在ISO等格式文件上双击或点击右键菜单即可插入光盘。
注意这个功能要在重启计算机后才能正常使用。@echo off
color fc
title DAEMON Tools 3.47

if exist readme.txt type readme.txt

if exist dtools.msi msiexec /i dtools.msi /qb REBOOT=SUPPRESS

if not exist "%ProgramFiles%\D-Tools\" goto eof

move /y ISOFILE.ICO "%ProgramFiles%\D-Tools\"

REG ADD HKCR\D-Tools /VE /D "虚拟光盘" /F>nul 2>nul
REG ADD HKCR\D-Tools\shell\open /VE /D "插入到虚拟光驱(&I)" /F>nul 2>nul
REG ADD HKCR\D-Tools\DefaultIcon /VE /D "%%ProgramFiles%%\D-Tools\ISOFILE.ICO" /F>nul 2>nul
REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /V "DAEMON Tools-2052" /F>nul 2>nul

FTYPE D-Tools="%%ProgramFiles%%\D-Tools\daemon.exe" -mount 0,"%%1">nul

ASSOC .cue=D-Tools>nul
ASSOC .bin=D-Tools>nul
ASSOC .iso=D-Tools>nul
ASSOC .ccd=D-Tools>nul
ASSOC .bwt=D-Tools>nul
ASSOC .mds=D-Tools>nul
ASSOC .cdi=D-Tools>nul
ASSOC .nrg=D-Tools>nul
ASSOC .pdi=D-Tools>nul
ASSOC .b5t=D-Tools>nul

hhghost 发表于 2010-11-26 17:53:53

这个有什么用?发个截图上来看看

tjlzh 发表于 2010-11-27 14:07:25

本帖最后由 tjlzh 于 2010-11-27 14:11 编辑

不错,不过本人有点不喜欢批处理,不过这个脚本功能比单纯静默参数功能功能强

jasonny 发表于 2012-12-28 00:32:58

感謝大大分享
页: [1]
查看完整版本: DaemonTools_3.47_全自动静默安装