我正在为autorun.inf文件编写代码,例如
[autorun]
open=Viewer\viewer.exe
icon=Viewer\viewer.exe,1
.exe在查看器文件夹中,但是当用户在CD / DVD驱动器中插入CD / DVD时,我想自动运行或午餐这个exe(作为自动播放)。
但实际上这不起作用。我不知道为什么?
操作系统:Windows 7(32位)
答案 0 :(得分:1)
我使用单行
解决了这个问题[autorun]
open=Viewer\viewer.exe
action=Start ShellRun-CD // this line is important
答案 1 :(得分:1)
关于上述问题......
[autorun]
open=Viewer\viewer.exe
icon=Viewer\viewer.exe,1
action=Start ShellRun-CD // this line is important
[autorun]之后的第1行告诉自动播放要执行的文件。 [自动运行]后的第2行显示图标。如果它是DLL或EXE文件,则可以给出可选位置。如果是图标(.ico)文件则不必要。 第3行是自动播放对话框出现时显示的说明。这一行并不重要,不会影响程序的执行。