How do you disable Matlab update notifications?

12 views (last 30 days)
How do you disable Matlab update notifications?

Answers (2)

Ayush Singh
Ayush Singh on 20 Jun 2024
Hi Joe,
The only way to prevent these messages from appearing is by installing the MATLAB update. There is currently no option to disable these notifications.

Billy Constantine
Billy Constantine 3 minutes ago
Hi Joe,
Not sure if you're still interested, but I have added the following code to startup.m in the local toolbox directory and I think it may have worked for R2024b (although my testing has not been thorough):
setpref('MATLAB', 'UpdateCheck', 'off');
s = settings;
if hasGroup(s.matlab, "latestgr") == 0
addGroup(s.matlab, "latestgr", Hidden=true);
end
if hasGroup(s.matlab.latestgr, "latestgrnotification") == 0
addGroup(s.matlab.latestgr, "latestgrnotification", Hidden=false);
end
if hasSetting(s.matlab.latestgr.latestgrnotification, "dontshowagain") == 0
addSetting(s.matlab.latestgr.latestgrnotification, "dontshowagain", Hidden=true);
end
s.matlab.latestgr.latestgrnotification.dontshowagain.InstallationValue = 1;
clear s ans;
I'm not sure the first line is doing anything but I have left it in anyway. Setting PersonalValue didn't work but InstallationValue seemed like it did.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Products


Release

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!