The problem: Using dropbox at my work, my colleagues can't follow shortcuts I create. PS: I use "shortcut" (what Windows calls them) and "alias" (the Mac nomenclature) interchangeably here.
The reason it doesn't work is that the shortcuts are tied to my specific user folder: ("C:\Users\MyUserFolderName\Company Dropbox...").
I can manually edit the properties section of each alias I create and replace "C:\Users\MyUserFolderName" with "%USERPROFILE%" (example: "%USERPROFILE%\Company Dropbox..." However, that is tedious.
I often want to make aliases from multiple files, in which case I have to open up each of them and change the target. How can I force windows to automatically replace my user folder with "%USERPROFILE%"?
Or, failing that, How can I use Autohotkey to create a right-click menu option that creates shortcuts and automatically replaces my user folder with "%USERPROFILE%"?
Research so far:
- I looked at Using relative paths for Windows shortcuts. However, the most upvoted answer there was to use a utility called "Relative", and this the utility doesn't appear to use the %USERPROFILE% (it uses "%windir% instead).
- I looked at How to make Excel use relative paths in external workbook links, but it doesn't address the alias-creation process.