Troubleshooting Excel COM Interface Issues in Jenkins Workflows
조회 수: 20 (최근 30일)
이전 댓글 표시
MathWorks Support Team
2025년 7월 18일
답변: MathWorks Support Team
2025년 7월 25일
I am using Excel with COM Interface (actxserver) in my Jenkins workflow but am encountering errors. How can I troubleshoot these errors?
채택된 답변
MathWorks Support Team
2025년 7월 18일
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Use COM Objects in MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!