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

a 夏天 提交于 2019-11-30 16:25:44

问题


To create a shortcut with a relative path, set the target to the following.

%windir%\system32\cmd.exe /c start your_relpath\app.exe [your_args]

It is also straightforward to make the program run as administrator.

Properties > Advanced > Run as administrator

But putting the two together doesn't work. When cmd.exe is started as admin, it loses the current working directory and goes to %windir%\system32. The relative path starts there which is not intended.

Is there any way to make a shortcut that is both relative and run as admin?


回答1:


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




回答2:


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.




回答3:


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

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



来源:https://stackoverflow.com/questions/18756671/is-it-possible-to-make-a-shortcut-to-a-relative-path-in-windows-that-runs-as-adm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!