Deploy MatLab via SCCM
Show older comments
are there any specific instructions or a 'heads up' on pushing the install of MatLab onto end users via SCCM deployment.
Answers (3)
Diego Pulido-Lopez
on 30 Nov 2020
Edited: Diego Pulido-Lopez
on 30 Nov 2020
2 votes
Download the installer from your account.
Run the installer, login with your email address, click on advanced options and choose "download without installation".
Have a look at the installer_input.txt file.
Create a batch file (important: store as ANSI, not UTF-8) with the following lines:
"%~dp0setup.exe" -inputFile "%~dp0installer_YOURFILENAMEHERE.txt"
:CHECK
if exist "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\MATLAB R2020b\MATLAB R2020b.lnk" (goto END)
if not exist "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\MATLAB R2020b\MATLAB R2020b.lnk" (timeout /t 10 /nobreak)
if not exist "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\MATLAB R2020b\MATLAB R2020b.lnk" (goto CHECK)
:END
exit 3010
Adjust the file-/pathnames to your version. This one is for release R2020B
Scott Weaver
on 26 Oct 2017
0 votes
We were trying to find this same information and here is what we were told: ----------- On Fri, Sep 1, 2017 at 10:47 AM, US MathWorks Support <mailto:support@mathworks.com support@mathworks.com> wrote: Hello J**** C******,
Thank you for contacting MathWorks Support. We do not qualify installation of MATLAB through SCCM, however if you are having trouble, try installing with just the Silent installation script, if that does not work then please let me know and we can troubleshoot that file to see if it is the root of the cause.
If you have any further questions, please do not hesitate to email me back. Please be sure to keep the REF ID included at the bottom of this email intact when replying to this message.
Your Case Number is ******.
If you have a new technical support question, please submit a new request here:
Regards,
Kyle Perry MathWorks Installation Support
kamal
on 12 Oct 2022
0 votes
Hi, How to get offline installer of matlab.
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!