My problem is that I cannot really wrap my mind around your explanation. Maybe jotting down a couple of actual scenarios might clarify your requirements.
Creating Folder Shortcut using Relative Path
I have seen a lot of posts about creating a relative shortcut to a specific file or starting programs, but I am having difficulty finding one that works for my following scenerio:
I have a folder setup where I want to people to go from multiple locations to a common folder: i.e.
P:\Project\
- Mechanical\Equipment"Shortcut"
- Electrical\Equipment"Shortcut"
- Project Management"Shortcut Target"
Now, the folder called Project will vary based on what project it is. So I need to setup my shortcut so that looks into the correct, local *P:* Project directory and then goes to Project Management instead of Mechanical or Electrical. Also, I am not trying to open or start a program, just a folder.
Thanks for the help in advance.
Windows for home | Previous Windows versions | Files, folders, and storage
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
3 answers
Sort by: Most helpful
-
Anonymous
2015-10-13T22:02:24+00:00 -
Anonymous
2015-10-13T20:46:17+00:00 Thank you Frederick.
Maybe I don't understand completely, but the problem I see with that is the adjust the contents accordingly. I want to put these shortcuts into a template project folder and then copy the folder and change the name as new projects are awarded and project folders required. At which point, each folder will have multiple shortcuts to some common location. So I would not only have to update the target batch file, but still update the individual shortcuts because it isn't just one shortcut on the desktop.
-
Anonymous
2015-10-13T19:03:15+00:00 - Create a batch file P:\Somefolder\OpenFolder.bat like so:
@echo off
explorer.exe P:\Electrical\Equipment
- Create a shortcut on the user's desktop to execute P:\Somefolder\OpenFolder.bat. Run it "minimized".
- When you change projects, adjust the contents of P:\Somefolder\OpenFolder.bataccordingly.