吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3747|回复: 0
收起左侧

[其他转载] 创建桌面快捷方式

 关闭 [复制链接]
mengl520 发表于 2011-9-13 00:00
'========================================================================
'功能:创建桌面快捷方式
'用法:Call CreatDeskLnk("\女孩.lnk","%windir%\system32\cmd.exe","ALT+CTRL+C")
'注意:
'      '第一个参数:快捷名称
'      '第二个参数:源文件路径
'      '第三个参数:热键
'========================================================================
Public Sub CreatDeskLnk(ByVal strLnkName As String, ByVal strExePath As String, ByVal strHotKey As String)
    Set WshShell = CreateObject("Wscript.shell")
    strDesktop = WshShell.SpecialFolders("Desktop")
    Set oMyShortcut = WshShell.CreateShortcut(strDesktop & strLnkName) '此处为快捷名称
    'oMyShortcut.IconLocation = "" '此处为快捷图标
    oMyShortcut.TargetPath = strExePath '此处为源文件
    oMyShortcut.Hotkey = strHotKey  ''此处为快捷热键
    oMyShortcut.Save
End Sub

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-16 19:36

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表