本帖最后由 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
|