- 帖子
- 17
- 积分
- 31
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2021-1-1
|
[问题求助] VBS创建快捷方式 targetpath怎么带参数
Set a=CreateObject("WScript.Shell")
Set b=a.CreateShortcut(a.SpecialFolders("Desktop") & "\chrome_64.lnk")
b.TargetPath="""C:\Program Files\chrome\GoogleChromePortable.exe"""
b.WorkingDirectory="C:\Program Files\chrome\"
b.Save
以上可以创建快捷方式,请教一下targetpath怎么带参数
b.TargetPath="""C:\Program Files\chrome\GoogleChromePortable.exe""" & " -chrome_64"
这样不行
想要的结果
"C:\Program Files\chrome\GoogleChromePortable.exe" -chrome_64 |
|