如何用bat创建一个指向特定网址的快捷方式并设置一个来自于网络上的icon 20
2个回答
展开全部
bat 不知道怎么搞,但是vbs 脚本倒是可以试试……
————————————
set comm=createobject("wscript.shell")
comm.run "cmd /c copy zzZ.ico %SystemRoot%\system32\ >nul",0 :'将图标拷贝至Systems32 目录
Set WshShell = WScript.CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop") :'特殊文件夹“桌面”
set oShellLink = WshShell.CreateShortcut(strDesktop & "\baidu.lnk")
oShellLink.TargetPath = "http://www.baidu.com/" : '目标
oShellLink.WindowStyle = 1 :'参数1默认窗口激活,参数3最大化激活,参数7最小化
oShellLink.Hotkey = "" : '快捷键
oShellLink.IconLocation = "%SystemRoot%\system32\zzZ.ico" : '图标
oShellLink.Description = "" : '备注
oShellLink.WorkingDirectory = "" : '起始位置
oShellLink.Save : '创建保存快捷方式
————————————
好吧,哥们,我承认,直接设置图标来自网络我还真不知道怎么玩法!
————————————
set comm=createobject("wscript.shell")
comm.run "cmd /c copy zzZ.ico %SystemRoot%\system32\ >nul",0 :'将图标拷贝至Systems32 目录
Set WshShell = WScript.CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop") :'特殊文件夹“桌面”
set oShellLink = WshShell.CreateShortcut(strDesktop & "\baidu.lnk")
oShellLink.TargetPath = "http://www.baidu.com/" : '目标
oShellLink.WindowStyle = 1 :'参数1默认窗口激活,参数3最大化激活,参数7最小化
oShellLink.Hotkey = "" : '快捷键
oShellLink.IconLocation = "%SystemRoot%\system32\zzZ.ico" : '图标
oShellLink.Description = "" : '备注
oShellLink.WorkingDirectory = "" : '起始位置
oShellLink.Save : '创建保存快捷方式
————————————
好吧,哥们,我承认,直接设置图标来自网络我还真不知道怎么玩法!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |