December 20, 200421 yr Yup, ive got mIRC working for an unatended install (even regged ) but its is just sitting in the folder c:\....\mIRCIs there a command line to copy a shortcut to my desktop?The windows command for the CP -l command for Linux (Gentoo) Greetings Anon5710
December 20, 200421 yr well here is what i found when searching google.comhttp://www.jsiinc.com/SUBM/tip6000/rh6035.htmand http://www.robvanderwoude.com/index.htmlhope that helps. maybe you could search google next time? those results i got easily by searching on "create shortcut from command line"
December 20, 200421 yr There is this nifty utility:NIRSOFT NirCmdhttp://www.nirsoft.net/utils/nircmd.htmljaclaz
December 20, 200421 yr Author I did try to google, but it seems that i couldn't match the keywords.... dow...
December 20, 200421 yr One can also use AutoIt to create shotcuts.Examples of it being done are in both Notepad2 & Metapad AutoIt scripts in the sticky thread in the App's forum.
December 20, 200421 yr I did try to google, but it seems that i couldn't match the keywords.... dow...np. sometimes it helps to think about the wording for a minute, then search. for me, web searching was a difficult art to master because i have to change the way i would word things to the way it should be worded, or what not. i don't always think in the same way other people do. B)
December 20, 200421 yr VBScript will create a shortcut for you from the command line. All you have to do is execute the script.Here is an example of how to create a shortcut for Windows Explorer on the Desktop.'Create Windows Explorer Desktop iconSet Shell = CreateObject("WScript.Shell")DesktopPath = Shell.SpecialFolders("AllUsersDesktop")Set link = Shell.CreateShortcut(DesktopPath & "\Explorer.lnk")link.Arguments = "/n,/e,c:\"link.Description = "Explorer link"link.HotKey = "CTRL+ALT+SHIFT+E"link.IconLocation = "%SystemRoot%\explorer.exe"link.TargetPath = "%SystemRoot%\explorer.exe"link.WindowStyle = 1link.WorkingDirectory = "%HOMEDRIVE%%HOMEPATH%"link.Savetguy
December 20, 200421 yr just make a shortcut, place it in the directory where you install mirc from then usecopy "X:\Installfiles\MIRC\Mirc.lnk" "%USERPROFILE%\Desktop\Mirc.lnk"
December 20, 200421 yr Author just make a shortcut, place it in the directory where you install mirc from then usecopy "X:\Installfiles\MIRC\Mirc.lnk" "%USERPROFILE%\Desktop\Mirc.lnk"yeay, eventually i am using this thing
Create an account or sign in to comment