Run external software from Matlab using system() with admin rights
Mostrar comentarios más antiguos
Hi,
I am trying to run a software from my Matlab script with admin rights. Once lunched, it doesn't have admin rights, and I can't communicate with it using .NET commands. I set the external software to run automatically in admin mode, which is done when I double click on it (works with the .NET commands), but not when started from Matlab.
LTPath = 'C:\...\lt.exe';
proc=System.Diagnostics.Process.Start(LTPath);
I have windows 10 64 bit, I am administrator. I use Matlab 2017b.
Thanks !
1 comentario
Janos Keresztes
el 22 de Mayo de 2018
Respuestas (2)
Guillaume
el 22 de Mayo de 2018
but got the error: No method 'Start' with matching signature found for class 'System.Diagnostics.Process'.
That's because the 3rd argument to Start is a System.Security.SecureString, not a plain string. You could construct that SecureString with:
password = 'secret';
securestring = System.Security.SecureString;
for c = password
securestring.AppendChar(c);
end
System.Diagnostics.Process.Start(LTPath, user, securestring, domain)
Whether or not that'll help you launching the process with admin privileges, I have no idea.
Jan
el 2 de Mayo de 2018
You can try this: Create a file "LT_AsAdmin.vbs":
Set UAC = CreateObject^("Shell.Application"^)
UAC.ShellExecute "C:\...\lt.exe", "ELEV", "", "runas", 1
Then start this VBS script by system.
UNTESTED! I can not run it by myself currently.
6 comentarios
Guillaume
el 22 de Mayo de 2018
Note that you can create the Shell.Application object directly in matlab. No Need to create a vbs script:
uac = actxserver('Shell.Application');
uac.ShellExecute(LTPath, 'ELEV', '', 'runas', 1);
Note: as is typical of microsoft scripting documentation, the doc for ShellExecute is seriously lacking, so I've no idea if the arguments above are valid. I've just copied them from Jan's answer.
Frederik Desaulniers
el 1 de Dic. de 2020
The code provided by Guillaume almost works, but you need to use double quotes in the arguments for uac.ShellExecute(). Corrected code:
uac = actxserver('Shell.Application');
uac.ShellExecute(LTPath, "ELEV", "", "runas", 1);
Pavel Kliuiev
el 20 de En. de 2023
Any ideas how to modify the code to have two input arguments that are strings?
Jan
el 20 de En. de 2023
@Pavel Kliuiev: The input arguments are part of the command to be called. Did you try to include it in the string LTPath?
Pavel Kliuiev
el 20 de En. de 2023
Thanks Jan! Would you mind providing a code snippet? I tried LTPath = "path/to/file.exe arg1 arg2"; uac.ShellExecute(LTPath, "ELEV", "", "runas", 1); for example, and it did not work. arg1 and arg2 are strings.
I have no chance to guess, what "did not work" means. Please explain the details.
Do you really want to provide the strings "arg1" and "arg2" as inputs? They are not variables, but literally "arg1". Maybe you mean:
arg1 = "all";
arg2 = "Match";
LTPath = "path/to/file.exe " + arg1 + " " + arg2
Categorías
Más información sobre Introduction to Installation and Licensing en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!