批处理添加桌面快捷方式
::██████████████████████{创建Internet快捷方式}███████████████████████ @Echo off echo [InternetShortcut] >"%userprofile%\桌面\百度.url" echo URL=http://www.baidu.com >>"%userprofile%\桌面\百度.url" echo IconIndex=0 >>"%userprofile%\桌面\百度.url" echo IconFile=C:\WINDOWS\system32\url.dll >>"%userprofile%\桌面\百度.url" ::██████████████████████{创建文件的快捷方式}████████████████████████ ███方法一:批处理创建快捷方式并指定快捷键★★★★★ @Echo off >%temp%\a.vbs echo Set AAA = WScript.CreateObject("WScript.Shell") '设置CreateObject 方法 >>%temp%\a.vbs echo set BBB = AAA.CreateShortcut("%userprofile%\桌面\服务.lnk") '设置快捷方式的路径和名称 >>%temp%\a.vbs echo BBB