Matlab installer not working
162 views (last 30 days)
Show older comments
Hi
I'm trying to install MATLAB on a new laptop (Windows 11). I've downloaded the installer via my university account. When I run, it unzips the installer but then closes silently with no error message.
There is a setup.exe in the folder it creates but this also does not run - just asks if I want to install and then nothing. I've tried disabling anti-virus, running as administrator from the command line and tried an earlier version.
Any ideas how to install?
Many thanks
7 Comments
Tommaso
on 29 Jul 2025
Moved: Walter Roberson
on 30 Jul 2025
Hi! I am having the same problem on a 2019 Macbook Pro. I also tried downloading the 2024 version with no success..
Zoltan
on 20 Aug 2025
The installer not running issue was caused in my case by faulty module in windows/system32 directory by ASProxy64.dll This file belongs to AstrillVPN application. Once I uninstalled the app and restarted the machine, all things were back to fine.
My recommendation is you should go into Event Viewer in Windows, as this is a classic symptom of a crash happening at a very low level, which is exactly the kind of thing that gets logged in the Event Viewer.
To interpret the Event Viewer for MathWorksProductInstaller issues, you need to know where to look and what information is key. The absence of an error message on the screen is a classic symptom of a crash happening at a very low level, which is exactly the kind of thing that gets logged in the Event Viewer.
Where to Look
The most relevant logs for this type of issue are the Application and System logs. The installer itself is an application, but if a core system component or driver is the root cause, the error might be logged in the System log.
- Open Event Viewer by pressing Win + R and typing eventvwr.msc.
- In the left pane, expand Windows Logs.
- Click on Application and then System.
What to Look For
Focus on the logs around the time you tried to run the setup or the app fails to start. Sort the entries by Date and Time and look for events with a Level of "Error" or "Warning". The lack of an error message means the installer didn't get to a point where it could create a log file itself, so you're looking for a crash that happened just as it was starting.
Example of a Critical Clue
A common scenario for silent failures is a crash caused by a corrupted or incompatible system dependency. The Faulting module name in the Event Viewer is the key to this. For instance, if you see an entry like this:
Faulting application name: MathWorksProductInstaller.exe or setup.exe
Faulting module name: ASProxy64.dll
This immediately tells you that the MATLAB installer crashed because it couldn't properly load a specific library. It means you need to repair or reinstall that particular component.
If the faulting module is a DLL from another program (e.g., a system monitor or a VPN application like in my case), that program is the likely culprit of the conflict. By using the Event Viewer, you're not guessing, you're letting the system tell you exactly what file is causing the problem.
Happy problem hunting :)
Sources
Accepted Answer
More Answers (1)
See Also
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!