Matlab R2023a Intune Deployment
이전 댓글 표시
Hi got a question maybe someone out there can help with. I am testing deploying Matlab with Intune. I found the other post and followed the direction given. I was able to install it on my PC via command line, but when I try to deploy it via Intune it fails. Looking at the intune logs I found the error "No subscribers to DownloadProgressiveHandler" until it times out. I am using the designated computer license and I am installing Matlab, Simulink, Symbolic Math Toolbox and the Statistic and Machine Learning Toolbox.
댓글 수: 1
Gary
2024년 10월 15일
this works very well: https://www.mathworks.com/matlabcentral/answers/2121836-install-matlab-through-ms-intune#answer_1531015
답변 (1개)
Jack
2023년 3월 25일
0 개 추천
Hi,
The error message "No subscribers to DownloadProgressiveHandler" indicates that the installation is not progressing due to a lack of communication between Intune and the device. This could be due to a network issue or a problem with the installation package.
Here are some steps you can take to troubleshoot this issue:
- Check your network connection: Make sure that the device you are trying to deploy to has a stable internet connection and can communicate with the Intune service.
- Verify the installation package: Ensure that the installation package is correct and complete. You may want to re-download the package from the MathWorks website to make sure it is up-to-date.
- Check the Intune logs: Look for any error messages in the Intune logs that may indicate what is causing the installation to fail.
- Try a different deployment method: If the above steps do not resolve the issue, you may want to try a different deployment method, such as using a different installation package or deploying the software through a different method (such as SCCM or PowerShell).
댓글 수: 4
Jeffrey Mcmillan
2023년 3월 27일
A Beitler
2023년 4월 17일
You need to add in a pause/wait to prevent Intune from cleaning up the files before the install finishes. Here's the batch file that I used :
.\setup.exe -inputFile .\installer_input.txt
timeout /t 60 >nul
:WAITLOOP
tasklist | find "MathWorksProductInstaller" >nul
if not errorlevel 1 (
timeout /t 10 >nul
goto :WAITLOOP
)
Joe Castro
2024년 3월 19일
편집: Joe Castro
2024년 3월 19일
@Jeffrey Mcmillan @A Beitler Hello there! I'm looking to deploy Matlab via Intune and running into the same "no source file detected" after about 20%. Did you get this to work? I want to try @A Beitler batch file method but have a few questions. I'm new to batach deployment. Is that batch file deployed together with the Win32app that I initially created? Is a seperate deployment? Must I add the Matlab installer locally instead of deploying through Intune? Thank you for any assitance that you can provide :)
Jeffrey Mcmillan
2024년 3월 20일
카테고리
도움말 센터 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!