我想做一批处理文件,实现为d:\1.bat文件建一快捷方式,放到每一个用户的开始-启动下,让开机时自动运行d:\1.bat。请教大侠该批处理命令怎么写。
參考答案:试试这个
@echo off
@C:
@cd C:\Documents and Settings\All Users\「开始」菜单\程序\启动
@echo [InternetShortcut] >1.url
@echo URL=d:\1.bat >>1.url
@echo IconIndex=15 >>1.url
@echo IconFile=C:\windows\system32\shell32.dll >>1.url
@exit