How to Install Matlab R2019b from Intune
조회 수: 23 (최근 30일)
이전 댓글 표시
I have been tasked to migrate all our Matlab installation from SCCM to Intune. So I am starting with Matlab R2019b and having quite a hard time to get it working via Intune,
I've been using this custom install.bat file I found on reddit:
\setup.exe -inputFile C:\temp\my_installer_input.txt timeout /t 60 >nul :WAITLOOP tasklist | find "MathWorksProductInstaller" >nul if not errorlevel 1 ( timeout /t 10 >nul goto :WAITLOOP )
I've finally been able to get it installed on my test environement but it's missing all the installer input from the installer.ini file.
Any idea what I am doing wrong ?
댓글 수: 2
답변 (2개)
Manikanta Aditya
2024년 10월 9일
Hi Claudio,
It sounds like you’re on the right track with your custom install.bat file, but the issue might be related to how the installer is accessing the installer.ini file.
- File Paths: Ensure that the path to your installer.ini file is correctly specified in your install.bat file. Sometimes, relative paths can cause issues, so using absolute paths might help.
- Permissions: Verify that the account running the installation has the necessary permissions to read the installer.ini file and execute the installation.
- Batch File Execution: Make sure the batch file is correctly calling the setup.exe with the -inputFile parameter pointing to the correct location of your installer.ini file.
There is a similar query raised on the following MATLAB Answer as shared by Kanishk in the comments section:
Try to refer it and see if you can find any help on the issue you are encoutering.
Hope it helps.
Gary
2024년 10월 15일
편집: Walter Roberson
2024년 10월 15일
This worked very well for me: https://www.mathworks.com/matlabcentral/answers/2121836-install-matlab-through-ms-intune#answer_1531015
댓글 수: 0
참고 항목
카테고리
Help Center 및 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!