Anon5710 Posted December 20, 2004 Posted December 20, 2004 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
aresgodofwar Posted December 20, 2004 Posted December 20, 2004 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"
jaclaz Posted December 20, 2004 Posted December 20, 2004 There is this nifty utility:NIRSOFT NirCmdhttp://www.nirsoft.net/utils/nircmd.htmljaclaz
Anon5710 Posted December 20, 2004 Author Posted December 20, 2004 I did try to google, but it seems that i couldn't match the keywords.... dow...
Nologic Posted December 20, 2004 Posted December 20, 2004 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.
aresgodofwar Posted December 20, 2004 Posted December 20, 2004 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)
Yzöwl Posted December 20, 2004 Posted December 20, 2004 You should have found this thread of mine in your searchAdjust it to suit!
tguy Posted December 20, 2004 Posted December 20, 2004 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
bledd Posted December 20, 2004 Posted December 20, 2004 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"
Anon5710 Posted December 20, 2004 Author Posted December 20, 2004 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now