Saved Bookmarks
| 1. |
Solve : how can i make shotcut via batch file? |
|
Answer» I want to make SHOTCUT on desktop I want to make shotcut on desktopyou can use vbscript Code: [Select] Set oWS = WScript.CreateObject("WScript.Shell") shortCut = "C:\temp\myshortcut.lnk" Set oLink = oWS.CreateShortcut(shortCut) oLink.TargetPath = "C:\temp\test.bat" oLink.WorkingDirectory = "C:\temp" oLink.Save or you can use the shortcut.exe resource KIT from NT |
|