Automatically launching an executable
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am seeking to run an application (.exe) repeatedly in a loop. Due to the nature of the program, I have to close and open it each time I operate it.
I am using actxserver() since I have to send commands to the executable
%Operate application
exeserver = actxserver("WScript.Shell");
exeserver.Run("application.exe");
The issue is that this security window pops up (as a window within MATLAB) so I must still choose 'Run' each time through the loop.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/889060/image.png)
Is there any way to either bypass this window or interact with this window from within MATLAB.
Thanks
0 commentaires
Réponses (1)
Yongjian Feng
le 9 Fév 2022
Looks like a warning from Windows, not from matlab.
Try to run matlab as admin.
Voir également
Catégories
En savoir plus sur Environment and Settings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!