[求助]如何创建带参数的快捷方式?
本帖最后由 作者 于 2008-11-27 11:27:39 编辑 <br /><br /> <p>Set WshShell = CreateObject("WScript.Shell")<br/>desk_path = WshShell.SpecialFolders ("Desktop")<br/>set acadLink = WshShell.CreateShortcut(desk_path & "\Acad2006_CSWP.lnk")<br/>with acadLink<br/> .TargetPath = chr(34) & "C:\Program Files\AutoCAD 2006" & "\acad.exe" & chr(34) & chr(32) & chr(47) & "p" & chr(32)<br/> .WindowStyle = 3<br/> .IconLocation = "C:\Program Files\AutoCAD 2006" & "\acad.exe, 0"<br/> .Description = "Acad2006 CSWP"<br/> .WorkingDirectory = AcadLocation & "\UserDataCache\"<br/>end with<br/>acadLink.save</p><p></p><p>---------------------------------------------------------------------</p><p>快捷方式里面的参数需要 / P</p><p>但是创建出来的却是 \P</p><p>请问如何能创建参数的 /P</p>
页:
[1]