标题: [文件操作] 求助!怎么把一个文件拖进BAT,然后自动把这个文件拉到一个快捷方式来打开它? [打印本页]
作者: king3cool 时间: 2015-8-27 15:02 标题: 求助!怎么把一个文件拖进BAT,然后自动把这个文件拉到一个快捷方式来打开它?
QuickPrintA.ink是快捷方式,,,,我把新的文件拉进BAT就可以实现把这文件自动拉进这个快捷方式启动。
求全代码
作者: 回家路上 时间: 2015-8-27 15:36
回复 1# king3cool
http://batch-cn.qiniudn.com/tool/ShortCut.exe- @echo off & if "%~1" neq "" ShortCut.exe /f:".\%~n1.lnk" /a:c /t:"%~1" & start /b "" "%~n1.lnk" & exit
复制代码
作者: king3cool 时间: 2015-8-27 15:38
回复 2# 回家路上
不懂啊,我是小白,我的快捷方式是QuickPrintA.lnk
作者: 回家路上 时间: 2015-8-27 16:53
本帖最后由 回家路上 于 2015-8-27 17:09 编辑
回复 3# king3cool - @if(0)==(0) echo off&echo;"%~1"|cscript -nologo -e:jscript "%~f0"& start /b "" "QuickPrintA.lnk" & exit&@end
-
- var objShell = new ActiveXObject("WScript.Shell");
- var objLink = objShell.CreateShortcut("QuickPrintA.lnk");
- objLink.TargetPath = WScript.StdIn.ReadLine();
- objLink.Save();
复制代码
- '&cls&@echo off&echo;"%~1"|cscript -nologo -e:vbscript "%~f0"& start /b "" "QuickPrintA.lnk" & exit&@end
-
- Set WshShell = Wscript.CreateObject("Wscript.Shell")
- Set oShellLink = WshShell.CreateShortcut("QuickPrintA.lnk")
- oShellLink.TargetPath = WScript.StdIn.ReadLine
- oShellLink.Save
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |