1 Star 2 Fork 0

李人 / CloudMusic-lnk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install.vbs 1.62 KB
一键复制 编辑 原始数据 按行查看 历史
Set WshShell = WScript.CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop")
set oShellLink = WshShell.CreateShortcut(strDesktop & "\播放-暂停.lnk")
oShellLink.TargetPath = WshShell.CurrentDirectory & "\MediaCtrl.exe"
oShellLink.Arguments = "p"
oShellLink.WindowStyle = 3
oShellLink.IconLocation = WshShell.CurrentDirectory & "\ResDll.dll,3"
oShellLink.Description = "MediaCtrl快捷方式 播放-暂停"
oShellLink.WorkingDirectory = WshShell.CurrentDirectory
oShellLink.Save
set oShellLink = WshShell.CreateShortcut(strDesktop & "\上一曲.lnk")
oShellLink.TargetPath = WshShell.CurrentDirectory & "\MediaCtrl.exe"
oShellLink.Arguments = "pre"
oShellLink.WindowStyle = 3
oShellLink.IconLocation = WshShell.CurrentDirectory & "\ResDll.dll,4"
oShellLink.Description = "MediaCtrl快捷方式 上一曲"
oShellLink.WorkingDirectory = WshShell.CurrentDirectory
oShellLink.Save
set oShellLink = WshShell.CreateShortcut(strDesktop & "\下一曲.lnk")
oShellLink.TargetPath = WshShell.CurrentDirectory & "\MediaCtrl.exe"
oShellLink.Arguments = "next"
oShellLink.WindowStyle = 3
oShellLink.IconLocation = WshShell.CurrentDirectory & "\ResDll.dll,2"
oShellLink.Description = "MediaCtrl快捷方式 下一曲"
oShellLink.WorkingDirectory = WshShell.CurrentDirectory
oShellLink.Save
set oShellLink = WshShell.CreateShortcut(strDesktop & "\桌面歌词.lnk")
oShellLink.TargetPath = WshShell.CurrentDirectory & "\MediaCtrl.exe"
oShellLink.Arguments = "c"
oShellLink.WindowStyle = 3
oShellLink.IconLocation = WshShell.CurrentDirectory & "\ResDll.dll,0"
oShellLink.Description = "MediaCtrl快捷方式 桌面歌词"
oShellLink.WorkingDirectory = WshShell.CurrentDirectory
oShellLink.Save
C#
1
https://gitee.com/Li-Ren/CloudMusic-lnk.git
git@gitee.com:Li-Ren/CloudMusic-lnk.git
Li-Ren
CloudMusic-lnk
CloudMusic-lnk
master

搜索帮助