Run external software from Matlab using system() with admin rights

조회 수: 5 (최근 30일)
Janos Keresztes
Janos Keresztes 2018년 5월 2일
댓글: Jan 2023년 1월 22일
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
Janos Keresztes
Janos Keresztes 2018년 5월 22일
dear Jan, thank you for your answer. Unfortunately, I got the following error. I also tried using proc=System.Diagnostics.Process.Start(LTPath, uname, password, domain); but got the error: No method 'Start' with matching signature found for class 'System.Diagnostics.Process'.
Error in WS3 (line 12) proc=System.Diagnostics.Process.Start(LTPath, uname, password, domain);
Do you have any suggestions?
Thanks.

댓글을 달려면 로그인하십시오.

답변 (2개)

Guillaume
Guillaume 2018년 5월 22일
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
Jan 2018년 5월 2일
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
Pavel Kliuiev
Pavel Kliuiev 2023년 1월 20일
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.
Jan
Jan 2023년 1월 22일
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
LTPath = "path/to/file.exe all Match"

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by