Troubleshooting Excel COM Interface Issues in Jenkins Workflows
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 18 Juil 2025
Réponse apportée : MathWorks Support Team
le 25 Juil 2025
I am using Excel with COM Interface (actxserver) in my Jenkins workflow but am encountering errors. How can I troubleshoot these errors?
Réponse acceptée
MathWorks Support Team
le 18 Juil 2025
To troubleshoot errors related to Excel with COM Interface in Jenkins workflows, please follow the steps in this article: Why do Jenkins builds with MATLAB fail on a Windows machine?
If that doesn’t resolve the issue, please run this PowerShell script in Jenkins, to determine if the issue is independent of MATLAB.
$excel= New-Object -ComObject excel.application
$excel.visible = $true
$wb = $excel.Workbooks.Open("<full path to file>")
$excel.quit()
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Use COM Objects in MATLAB 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!