怎样利用autorun.inf文件,让电脑打开盘时自动运行a.exe文件?autorun.inf怎样写代码?

2024-12-29 08:50:35
推荐回答(1个)
回答1:

[AutoRun]
open=XXX.exe
icon=XXX.ico
只是最常见的,open后面是要运行的文件名,icon后面是u盘图标名,还可以加上
shell\open=打开(&O)
shell\open\Command=XXX.exe 替换右键点击u盘时的“打开”
shell\open\Default=1
shell\explore=资源管理器(&X)
shell\explore\Command=XXX.exe 替换右键点击u盘时的“资源管理器”

xxx是你的文件名,比如说替换为a.exe,a.ico,如果你的a.exe里包含图标:
[AutoRun]
open=a.exe
icon=a.exe,1
shell\open=打开(&O)
shell\open\Command=a.exe
shell\open\Default=1
shell\explore=资源管理器(&X)
shell\explore\Command=a.exe