Suppress Window using System Command

조회 수: 6 (최근 30일)
Rounak Saha Niloy
Rounak Saha Niloy 2022년 9월 27일
댓글: Rounak Saha Niloy 2022년 10월 5일
I am trying to open a software. Using command prompt, I can open it in the following way. How can I open it using Matlab system command? I need to use "display off" to suppress a pop-up window.
cd C:\Program Files\Bentley\Offshore\MAXSURF CONNECT Edition V23
MaxsurfModeler64.exe display off

채택된 답변

Chunru
Chunru 2022년 9월 27일
편집: Chunru 2022년 9월 28일
cd("C:\Program Files\Bentley\Offshore\MAXSURF CONNECT Edition V23")
cmd = "MaxsurfModeler64.exe display off"
system(cmd)
  댓글 수: 3
Chunru
Chunru 2022년 9월 28일
need bracks over the folder.
Rounak Saha Niloy
Rounak Saha Niloy 2022년 10월 5일
cd("C:\Program Files\Bentley\Offshore\MAXSURF CONNECT Edition V23");
cmd = "MaxsurfModeler64.exe display off";
system(cmd);
The code does not proceed to the next line. It successfully opens the MaxsurfModeler64.exe but it does not proceed further. What should I do?

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by