How to make a shortcut to always "Run as Administrator"

456 次查看(过去 30 天)
I would like to change the default startup of Matlab to 'Run as Administrator', which is necessary for tasks like saving the path. I start Matlab from a desktop icon and would like to alter the icon properties so I always 'Run as Administrator'. Or if there is another way to make the default startup of any Matlab session to run as administrator, please let me know. I know this can be done via right clicking on Matlab from the Windows start menu, but would like to not have to take this extra step. I am using Windows 10 and running R2015b.
  1 个评论
Adam
Adam 2017-6-13
编辑:Adam 2017-6-13
I don't remember doing anything out of the ordinary with my shortcuts and I have no problem saving my path (Windows 10, R017b)

请先登录,再进行评论。

采纳的回答

Dimitris Iliou
Dimitris Iliou 2017-6-16
Please keep in mind that this is a Windows workflow and not a MATLAB specific one.
What I would suggest is
  1. Go to the MATLAB icon
  2. Click on properties
  3. Go to the Shortcut tab
  4. Press Advanced..
  5. Check the "Run as administrator" checkbox.
  1 个评论
KAE
KAE 2017-6-16
编辑:KAE 2017-7-11
Works perfectly. I am delighted. Head's up though if anyone is trying this: If you run as administrator, you may no longer see mapped network drives from within Matlab, see here.

请先登录,再进行评论。

更多回答(1 个)

Daniel Dergance
Daniel Dergance 2023-12-3
how do I Run as administrator from a MAC?
  1 个评论
Walter Roberson
Walter Roberson 2023-12-4
Run As Administrator is not MacOS or Linux concept.
The equivalent MacOS or Linux concept is to set the effective UID.
The API call for that is https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/setuid.2.html#//apple_ref/doc/man/2/setuid or setreuid() -- but basically You Can't Get There From Here if you are starting out without special permissions .
The way to get special permissions is if your executable has already been marked as setuid which would usually be done using the chmod() system utility -- so you would use a shell command to chmod the executable to give it an effective uid of root. But you would not normally have permission to do that... so you would typically start by using the system utility sudo to grant you enhanced access to allow you to run chmod to set the effective uid on the executable that is to run with root priviledges.
Now... when an executable is marked setuid then the operating system puts special restrictions on it to make sure it does not abuse its power. One of the restrictions is that while the executable is running, it will ignore LD_LIBRARY_PATH and DYLD_LIBRARY_PATH and some internal @rpath stuff -- so it can only access dynamic libraries that are on the system library path. Which is potentially a problem.
And you have to mark the right executable... which is not always obvious in the MacOS app hierarchy.
You could try using Pseudo 1.2 as described at https://macdownload.informer.com/pseudo/ -- I used that utility from time to time a number of years ago. It is a utility that allowed you to drag and drop icons onto it, and it would launch the icon with elevated priveledges. But I suspect Pseudo 1.2 is likely a 32 bit program that cannot be used on current MacOS releases.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by