Is it possible to make a shortcut to a relative path in Windows that runs as admin?

I didn't find an easy way but that's fine. I was concerned that shortcuts with absolute paths would break between computers. I didn't realize that Windows corrected them automatically. This seems sufficient, though relative paths would have been more elegant.

Although shortcuts, when created, point to specific files or folders, they may break if the target is moved to another location. Microsoft Windows has standard algorithms for fixing up shortcuts when they are moved. Windows 9x-based versions of Windows use a simple search algorithm to fix broken shortcuts.[1] On Windows NT-based operating systems and the NTFS file system, the target object's unique identifier is stored in the shortcut file and Windows can use the Distributed Link Tracking service for tracking the targets of shortcuts, so that the shortcut may be silently updated if the target moves to another hard drive.[4]

http://en.wikipedia.org/wiki/File_shortcut#Microsoft_Windows


For a portable shortcut, that works with a relative path, use the following:

Simply drop this in the "Target" of the Shortcut Properties:

%COMSPEC% /C "start GoogleChromePortable.exe -enableextensions -incognito"

Expected behavior: A brief CMD window will popup and close just prior to chrome launching.

Note: the "Start in:" option can be left blank. Also note, the .exe is located in the same folder as the shortcut, but move the folder and the shortcut works just fine.

This is confirmed to work in Win10 1607.

Credit: some other post on stackoverflow a while ago.


Was having trouble with auto-close window behavior. Just got it working with the following:

%COMSPEC% /c "start theRelativePath" | taskkill /F /IM cmd.exe