标题: [问题求助] VBS在当前文件夹创建文件快捷方式 [打印本页]
作者: Heykuz 时间: 2012-10-14 22:53 标题: VBS在当前文件夹创建文件快捷方式
- set ws=WScript.CreateObject("WScript.Shell")
- strDesktop = left(Wscript.ScriptFullName,len(Wscript.ScriptFullName)-len(Wscript.ScriptName))
- set oShellLink = ws.CreateShortcut(strDesktop & "\1.lnk")
- oShellLink.Hotkey = "F8"
- oShellLink.TargetPath =left(Wscript.ScriptFullName,len(Wscript.ScriptFullName)-len(Wscript.ScriptName))& "1.exe"
- oShellLink.WorkingDirectory = strDesktop
- oShellLink.Save
复制代码
代码就不多解释,left(Wscript.ScriptFullName,len(Wscript.ScriptFullName)-len(Wscript.ScriptName))为当前路径。
感言:最后还是我(一个新手)自己研究出来的。
结论:关于创建快捷方式,还是VBS比BAT好,因为BAT只能创建url式的,并不是真正的LNK。
发现新问题:发现vbs不支持*.*,还有,如果我想同时创建1.exe和2.exe,又该怎么样写呢,望有人解答。
作者: forfiles 时间: 2012-10-16 13:28
BAT里面使用mshta是可以创建lnk的
http://www.bathome.net/thread-11050-1-1.html
http://www.bathome.net/thread-15756-1-1.html
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |