Dim wShell, oShortcut
'Dim strDesktop$ ' 为了与VBS兼容,
Dim strDesktop ' 这里改写一下,测试通过。。。
Set wShell = CreateObject("Wscript.shell")
strDesktop = wShell.SpecialFolders("Desktop")
strDesktop = strDesktop + "\搜物网-货源必备.lnk"
Set oShortcut = wShell.CreateShortcut(strDesktop)
oShortcut.TargetPath = "http://www.sowu.com/" '快捷方式对象的目标路径
oShortcut.Description = "MM图" & vbCrLf & "" '快捷方式对象的说明
'oShortcut.Hotkey = "CTRL+ALT+A" '快捷方式对象的热键
'oShortcut.WorkingDirectory = "d:\program Files\uusee\skins\UUPlayer" '快捷方式对象的工作目录
oShortcut.IconLocation = "%SystemRoot%\system32\SHELL32.dll,211" '快捷方式对象的图标位置
oShortcut.Save
相关文章
- 如何循环文件夹中的文件以创建参数列表以传递到Windows批处理文件中的另一个脚本?
- [原创]shell创建文件或者文件夹快捷方式到桌面的脚本shell
- 在Unix / Linux平台上运行的Perl脚本是否可以创建Windows快捷方式?
- 整理一些Windows桌面运维常用的命令,并且整合成脚本
- PowerShell脚本实现创建桌面快捷方式的方法
- PHP创建桌面快捷方式的实例代码
- 用这五招,在Windows 11中为任何文件、文件夹和网页创建桌面快捷方式
- Windows Server 2008 R2组策略创建用户桌面快捷方式
- C++ 创建桌面快捷方式 开始菜单的实现代码
- 在Windows上编写脚本或创建程序的快捷方法?