Effacer les filtres
Effacer les filtres

How to supress the output of the taskkill command?

8 vues (au cours des 30 derniers jours)
Robert Jones
Robert Jones le 10 Sep 2023
Commenté : Robert Jones le 11 Sep 2023
Hello,
I have this line in my code
ans=system('taskkill /F /IM "CST DESIGN ENVIRONMENT_AMD64.exe"> NUL');
and I get this erroras output on the consol
ERROR: The process "CST DESIGN ENVIRONMENT_AMD64.exe" not found.
I would like to supress it so it won' interfere with other messages that are programmed to be displayed
Any ideas?
Thank you

Réponse acceptée

kei hin
kei hin le 11 Sep 2023
Try
[status,result] = system();

Plus de réponses (1)

Walter Roberson
Walter Roberson le 11 Sep 2023
Try
ans=system('taskkill /F /IM "CST DESIGN ENVIRONMENT_AMD64.exe" > NUL 2>&1');

Catégories

En savoir plus sur Programming 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!

Translated by