gelome Posted March 30, 2005 Posted March 30, 2005 hi people...i was wondering how do itransfer the desktop icons to the quicklaunch as i do not want any application desktop icons...i prefer to launch the programs via the quicklaunch. the only icon i want on the desktop is the my computer icon.i have googled a lot on the above mentioned subject both on the www and msfn forums to no avail..
gunsmokingman Posted March 30, 2005 Posted March 30, 2005 (edited) Here A Vbs Script That Will Move The ShortsCut From The DesktopAnd Place Them In The QuickLauch. It Also Deletes Files In Temp Dim Act : Set Act = WScript.CreateObject("WScript.Shell") Dim UP : UP = Act.ExpandEnvironmentStrings("%UserProfile%") Dim Shell : Set Shell = CreateObject("Shell.Application") Dim ReFLDR: Set ReFLDR = CreateObject("Scripting.FileSystemObject") On Error Resume Next Dim objFolder : Set objFolder = Shell.NameSpace(UP & "\Application Data\Microsoft\Internet Explorer\Quick Launch\") Wscript.sleep 300 if not objFolder is nothing Then : objFolder.MoveHere(UP & "\Desktop\*.lnk") : End If Wscript.sleep 300 ReFLDR.deletefolder ( UP & "\Local Settings\Temp\*.tmp") ReFLDR.deletefolder ( UP & "\Local Settings\Temp\*") ReFLDR.deletefile ( UP & "\Local Settings\Temp\*.*") Act.Popup "Completed" , 3, "Gsm Move ShortCuts", 0 + 64 Edited March 3, 2006 by gunsmokingman
durex Posted March 30, 2005 Posted March 30, 2005 or if your more of a batch guy...@echo offMOVE /Y "%ALLUSERSPROFILE%\Desktop\*.*" "%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch"MOVE /Y "%USERPROFILE%\Desktop\*.*" "%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch"Just copy the following into notepad, save it as <whatever>.cmd and it will move any folders / files / shortcuts from your desktop to your Quick Launch
gelome Posted March 30, 2005 Author Posted March 30, 2005 thanks guys...really appreciate that...will give both those sols a try.
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