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