Smo™ Posted November 7, 2007 Report Share Posted November 7, 2007 Hey guys,I have two folders on my computer which contain files of the same type. Each of these folders is on a different HDD and therefore I have to access each one seperately with their own shortcuts. My question is this - can I create some kind of shortcut whereby when I click it, I get a window opened which contains all the files from both of those folders?Cheers. Quote Link to comment Share on other sites More sharing options...
Danny Posted November 7, 2007 Report Share Posted November 7, 2007 Nope Quote Link to comment Share on other sites More sharing options...
JT! Posted November 7, 2007 Report Share Posted November 7, 2007 You could have a shortcut to a folder that would contain two shortcuts to two folders?...which would make it twice as complicated as it is now probably. Quote Link to comment Share on other sites More sharing options...
Dan6061 Posted November 7, 2007 Report Share Posted November 7, 2007 Found this... click!Guessing it's the same sorta thing? Although that'll just open two folders up with one click, which is a bit easier? Quote Link to comment Share on other sites More sharing options...
Tomm Posted November 7, 2007 Report Share Posted November 7, 2007 Writing a batch file is easy... But like you say it'll just open two separate folders. I really would have thought there ought to be a way - although you might need to code it yourself. Quote Link to comment Share on other sites More sharing options...
Dan6061 Posted November 8, 2007 Report Share Posted November 8, 2007 What about something like this? - Click. Quote Link to comment Share on other sites More sharing options...
Tomm Posted November 8, 2007 Report Share Posted November 8, 2007 What about something like this? - Click.Nah, that's for auto backup from one place on the network to another - looks exactly the same as Microsoft Synctoy. Quote Link to comment Share on other sites More sharing options...
Dan6061 Posted November 8, 2007 Report Share Posted November 8, 2007 Nah, that's for auto backup from one place on the network to another - looks exactly the same as Microsoft Synctoy.Oh right, haha. I just quickly googled it and seemed to make sense to me for this sorta thing. Quote Link to comment Share on other sites More sharing options...
poopipe Posted November 8, 2007 Report Share Posted November 8, 2007 open notepadcopy& paste this into itSet objShell = WScript.CreateObject("WScript.Shell") objShell.Run "explorer.exe c:\porn" , 1 objShell.Run "explorer.exe " & objShell.SpecialFolders.Item("MyDocuments"), 1 objShell.Run "explorer.exe " & objShell.SpecialFolders.Item("Desktop"), 1 objShell.Run "explorer.exe " & objShell.SpecialFolders.Item("MyDocuments") & "\porn", 1save the file as mylovelyshortcutthatopenslotsoffolders.vbs or somethingWhen you double click on it, 4 explorer windows will magically open - one on your c:\porn folder, one on your documents, one on your desktop and one on your other porn folder. delete and edit things as required - if you balls it up don't come running to me Quote Link to comment Share on other sites More sharing options...
poopipe Posted November 9, 2007 Report Share Posted November 9, 2007 bumping this on the grounds that I actually had to research the answer Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.