I doubt there is a way to do it with a batch script. It's doable in VBScript, though.
Set sh = CreateObject("WScript.Shell")
Set shortcut = sh.CreateShortcut("C:WhereverShortcut.lnk")
shortcut.TargetPath = "C:WhereverWhatever.txt"
shortcut.Save
Save the script in a file ending in vbs and run it from the command line using cscript whatever.vbs
.
(Don't be fooled by the name -- CreateShortcut
is used to both create and modify shortcuts.)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…