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

462 visualizaciones (últimos 30 días)
KAE
KAE el 13 de Jun. de 2017
Comentada: Walter Roberson el 4 de Dic. de 2023
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 comentario
Adam
Adam el 13 de Jun. de 2017
Editada: Adam el 13 de Jun. de 2017
I don't remember doing anything out of the ordinary with my shortcuts and I have no problem saving my path (Windows 10, R017b)

Iniciar sesión para comentar.

Respuesta aceptada

Dimitris Iliou
Dimitris Iliou el 16 de Jun. de 2017
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 comentario
KAE
KAE el 16 de Jun. de 2017
Editada: KAE el 11 de Jul. de 2017
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.

Iniciar sesión para comentar.

Más respuestas (1)

Daniel Dergance
Daniel Dergance el 3 de Dic. de 2023
how do I Run as administrator from a MAC?
  1 comentario
Walter Roberson
Walter Roberson el 4 de Dic. de 2023
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.

Iniciar sesión para comentar.

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by