
标题: [问题求助] vbs使用路径变量老是出问题 [打印本页]
作者: winsfly 时间: 2023-11-3 08:48 标题: vbs使用路径变量老是出问题
本帖最后由 winsfly 于 2023-11-3 08:49 编辑
- Set objFolderItem = objFolder.Self
- objPath = objFolderItem.Path
- s = MsgBox("使用财神地图请点击确定,不使用财神地图点击取消", vbOKCancel)
- If s = 1 Then set a=createobject("scripting.filesystemobject"):a.copyfolder "*.*",objPath
-
- Set Shell = CreateObject("WScript.Shell")
- DesktopPath = Shell.SpecialFolders("Desktop")
- Set link = Shell.CreateShortcut(DesktopPath & "\正常模式4.lnk")
- link.TargetPath = objPath
- link.Arguments = "-w -nohide -lq -direct -skiptobnet -sleepy -pdir csdt -title 正常模式"
- link.WorkingDirectory = "objPath\D2loader.exe"
- link.Description = ""
- link.HotKey = "CTRL+K"
- link.IconLocation = "objPath\D2loader.exe,0"
- link.WindowStyle = 1
- link.Save
复制代码
就是这个objPath,在创建桌面快捷方式时没法引用
作者: czjt1234 时间: 2023-11-3 10:07
本帖最后由 czjt1234 于 2023-11-3 10:08 编辑
TargetPath 是快捷方式的“目标”,必须指向一个程序
而你的 objPath 是指向一个文件夹
WorkingDirectory 才是快捷方式的“起始位置”
你把 TargetPath 和 WorkingDirectory 搞反了
作者: winsfly 时间: 2023-11-3 15:17
- Const MY_COMPUTER = &H11&
- Const WINDOW_HANDLE = 0
- Const OPTIONS = 0
-
- Set objShell = CreateObject("Shell.Application")
- Set objFolder = objShell.Namespace(MY_COMPUTER)
- Set objFolderItem = objFolder.Self
- strPath = objFolderItem.Path
-
- Set objShell = CreateObject("Shell.Application")
- Set objFolder = objShell.BrowseForFolder _
- (WINDOW_HANDLE, "请选择暗黑2的目录:", OPTIONS, strPath)
-
- If objFolder Is Nothing Then
- Wscript.Quit
- End If
-
- Set objFolderItem = objFolder.Self
- objPath = objFolderItem.Path
- s = MsgBox("使用财神地图请点击确定,不使用财神地图点击取消", vbOKCancel)
- If s = 1 Then set a=createobject("scripting.filesystemobject"):a.copyfolder "*.*",objPath
-
- Set Shell = CreateObject("WScript.Shell")
- DesktopPath = Shell.SpecialFolders("Desktop")
- Set link = Shell.CreateShortcut(DesktopPath & "\正常模式4.lnk")
-
- link.TargetPath = objPath rem 目标位置这里会错误,应该是impk1.11
- link.Arguments = "-w -nohide -lq -direct -skiptobnet -sleepy -pdir csdt -title 正常模式" rem 目标这里也会出错
- link.WorkingDirectory = objPath rem 起始位置
- link.HotKey = "" rem 快捷键
- link.WindowStyle = 1 rem 运行方式:常规窗口
- link.Description = "财神地图正常模式" rem 备注
- link.IconLocation = "objPath\D2loader.exe,0" rem 快捷方式图标
- link.Save
复制代码
回复 1# winsfly
现在没法解决的就是目标位置跟目标
作者: winsfly 时间: 2023-11-3 15:22
回复 3# winsfly
运行上面代码有几点错误,快捷方式的目标(T): "D:\Program Files\impk1.11" -w -nohide -lq -direct -skiptobnet -sleepy -pdir csdt -title 正常模式
正确目标应该是 "D:\Program Files\impk1.11\D2load.exe" -w -nohide -lq -direct -skiptobnet -sleepy -pdir csdt -title 正常模式
目标位置:Program Files 而正确目标位置应该是impk1.11
求大侠帮个小忙
作者: czjt1234 时间: 2023-11-3 21:25
27行改为
link.TargetPath = objPath & "\D2loader.exe"
作者: winsfly 时间: 2023-11-3 21:30
- Const MY_COMPUTER = &H11&
- Const WINDOW_HANDLE = 0
- Const OPTIONS = 0
-
- Set objShell = CreateObject("Shell.Application")
- Set objFolder = objShell.Namespace(MY_COMPUTER)
- Set objFolderItem = objFolder.Self
- strPath = objFolderItem.Path
-
- Set objShell = CreateObject("Shell.Application")
- Set objFolder = objShell.BrowseForFolder _
- (WINDOW_HANDLE, "请选择暗黑2的目录:", OPTIONS, strPath)
-
- If objFolder Is Nothing Then
- Wscript.Quit
- End If
-
- Set objFolderItem = objFolder.Self
- objPath = objFolderItem.Path
- s = MsgBox("使用财神地图请点击确定,不使用财神地图点击取消", vbOKCancel)
- If s = 1 Then set a=createobject("scripting.filesystemobject"):a.copyfolder "*.*",objPath
-
- Set Shell = CreateObject("WScript.Shell")
- DesktopPath = Shell.SpecialFolders("Desktop")
- Set link = Shell.CreateShortcut(DesktopPath & "\正常模式4.lnk")
-
- link.TargetPath = objPath & "\D2loader.exe" rem 目标位置
- link.Arguments = "-w -nohide -lq -direct -skiptobnet -sleepy -pdir csdt -title 正常模式" rem 目标
- link.WorkingDirectory = objPath rem 起始位置
- link.HotKey = "" rem 快捷键
- link.WindowStyle = 1 rem 运行方式:常规窗口
- link.Description = "财神地图正常模式" rem 备注
- link.IconLocation = objPath & "\D2loader.exe,0" rem 快捷方式图标
- link.Save
复制代码
回复 5# czjt1234
作者: winsfly 时间: 2023-11-3 21:31
回复 5# czjt1234
太感谢了,大神,请收下我的膝盖,困扰了好久
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |