Downloads:
1,712
Downloads of v 9.1:
1,712
Last Update:
16 Mar 2017
Package Maintainer(s):
Software Author(s):
- The Mathworks
- Inc.
Tags:
matlab compiler runtime math mathematics library admin- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
MATLAB Compiler Runtime R2016b
- 1
- 2
- 3
9.1 | Updated: 16 Mar 2017
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,712
Downloads of v 9.1:
1,712
Maintainer(s):
Software Author(s):
- The Mathworks
- Inc.
MATLAB Compiler Runtime R2016b 9.1
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by The Mathworks, Inc. The inclusion of The Mathworks, Inc. trademark(s), if any, upon this webpage is solely to identify The Mathworks, Inc. goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Are Exempted or Have Failed
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install MATLAB Compiler Runtime R2016b, run the following command from the command line or from PowerShell:
To upgrade MATLAB Compiler Runtime R2016b, run the following command from the command line or from PowerShell:
To uninstall MATLAB Compiler Runtime R2016b, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download mcr-r2016b --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade mcr-r2016b -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade mcr-r2016b -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install mcr-r2016b
win_chocolatey:
name: mcr-r2016b
version: '9.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'mcr-r2016b' do
action :install
source 'INTERNAL REPO URL'
version '9.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller mcr-r2016b
{
Name = "mcr-r2016b"
Version = "9.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'mcr-r2016b':
ensure => '9.1',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator AdmiringWorm on 04 Apr 2017.
The MATLAB Runtime is a standalone set of shared libraries that enables the execution of compiled MATLAB applications or components on computers that do not have MATLAB installed.
Notes
- The version of the MATLAB Runtime necessary to run an application is tied to the version of MATLAB used to create the application.
- Multiple versions of the MATLAB Runtime may simultaneously exist on a target machine. This allows applications compiled with different versions of the MATLAB Runtime to execute side by side on the same machine.
- The MATLAB Runtime Compiler is large (900MB +). It will take some time to download and install.
$ErrorActionPreference = 'Stop'; # stop on all errors
$packageName = 'mcr-r2016b'
$Version = '9.1'
$softwareName = 'MATLAB Runtime ' + $Version
$RegistryLocation = 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall'
$unexe = Get-ItemProperty "$RegistryLocation\*" |
Where-Object { $_.displayname -match $softwareName} |
Select-Object -ExpandProperty UninstallString
$InstalledPath = $unexe -replace "^(.*v$($version.replace('.','')))\\.*",'$1'
$unexe = $unexe.remove(($unexe.LastIndexOf($InstalledPath) - 1))
$UninstallArgs = @{
packageName = $packageName
fileType = 'exe'
file = $unexe
silentArgs = '"' + $InstalledPath + '" -mode silent'
validExitCodes = @(0)
}
Uninstall-ChocolateyPackage @UninstallArgs
if (Test-Path $InstalledPath) {
Remove-Item $InstalledPath -Recurse
}
Log in or click on link to see number of positives.
- msvcp120.dll (2abf0aab5a3c) - ## / 74
- msvcr120.dll (ad32240bb1de) - ## / 74
- vcredist_x64.exe (b811f2c047a3) - ## / 67
- vccorlib120.dll (602add77cbd8) - ## / 66
- msvcp110.dll (27f394ae01d1) - ## / 62
- msvcr110.dll (ae996edb9b05) - ## / 61
- msvcp100.dll (5bb420fbe283) - ## / 61
- msvcr100.dll (1d1a1ae540ba) - ## / 68
- setup.exe (123a54fc6acf) - ## / 58
- CppMicroServices.dll (a428615893b6) - ## / 56
- dotnetinst.dll (0562400bad2e) - ## / 56
- instutil.dll (2730e0a55f1c) - ## / 58
- java_launcher.dll (0a64e40eb5c5) - ## / 56
- libmwreg.dll (427dca0c455d) - ## / 56
- mwinstall.dll (0508e3f1ce90) - ## / 56
- nativewebproxy.dll (81fff9bc06aa) - ## / 56
- setup.exe (e85b67f81421) - ## / 56
- vccorlib110.dll (f5f635c0cf82) - ## / 62
- webproxy.dll (ddd6586bff1e) - ## / 56
- zlib1.dll (46152041b040) - ## / 55
- VCRT_check.exe (5d50a1968706) - ## / 56
- awt.dll (4080a5906b1d) - ## / 56
- dcpr.dll (b6aa9f3d5ea7) - ## / 58
- decora-sse.dll (d7b869c4e9d0) - ## / 58
- deploy.dll (6cd5341d8126) - ## / 56
- dt_shmem.dll (0b3c38c2fd4e) - ## / 56
- dt_socket.dll (3e1d128d61b9) - ## / 56
- eula.dll (118f6c432a76) - ## / 56
- fontmanager.dll (ef38f03a1ca2) - ## / 54
- fxplugins.dll (d92e57b78e59) - ## / 56
- glass.dll (ac6d3117a5ec) - ## / 56
- glib-lite.dll (26afac88abee) - ## / 55
- gstreamer-lite.dll (f38de48e71c6) - ## / 56
- hprof.dll (ba2f8f059515) - ## / 56
- installer.dll (7639ef99063d) - ## / 25
- instrument.dll (3e80e2cbdaea) - ## / 56
- j2pcsc.dll (a83141876688) - ## / 54
- jaas_nt.dll (154462d45a4d) - ## / 58
- jabswitch.exe (47b3c091ff42) - ## / 48
- java-rmi.exe (11dca9b67307) - ## / 57
- java.dll (1060648d8350) - ## / 56
- java.exe (cdc66d186ae9) - ## / 57
- JavaAccessBridge-64.dll (f80abe473055) - ## / 56
- javacpl.exe (8000b908e67e) - ## / 56
- javafx-font.dll (c8131aba03af) - ## / 55
- javafx-iio.dll (20af0f75c40f) - ## / 56
- javaw.exe (39bbaf0755a1) - ## / 58
- javaws.exe (80d3d281ab93) - ## / 25
- java_crw_demo.dll (2c9cba119eff) - ## / 56
- jawt.dll (ac32dcfd3b6b) - ## / 56
- JAWTAccessBridge-64.dll (332c8c6730b9) - ## / 56
- JdbcOdbc.dll (baf7d5d878bf) - ## / 58
- jdwp.dll (892d7e2832da) - ## / 56
- jfr.dll (8f1ca69a0b52) - ## / 56
- jfxmedia.dll (2998a24fd8f5) - ## / 55
- jfxwebkit.dll (fce36582ebb0) - ## / 56
- jli.dll (f831d5da8e40) - ## / 58
- jp2iexp.dll (38ee94d4bcb7) - ## / 56
- jp2launcher.exe (607dad5ad157) - ## / 56
- jp2native.dll (00a81b625b18) - ## / 56
- jp2ssv.dll (296ed1c6850a) - ## / 56
- jpeg.dll (435cdef88b37) - ## / 55
- jsdt.dll (87c293ad744c) - ## / 56
- jsound.dll (34b763a43b95) - ## / 56
- jsoundds.dll (8d28103f0135) - ## / 58
- kcms.dll (f9908b34f36b) - ## / 56
- keytool.exe (33b2a5e64872) - ## / 56
- kinit.exe (ee78d591862f) - ## / 57
- klist.exe (8ef738719a08) - ## / 57
- ktab.exe (80d39954dd92) - ## / 58
- libxml2.dll (60188bd42e02) - ## / 56
- libxslt.dll (b8382b655c31) - ## / 56
- management.dll (963077fc760c) - ## / 56
- mlib_image.dll (9147984dddb8) - ## / 55
- net.dll (467a7d1afaf2) - ## / 56
- nio.dll (3762cd9485ab) - ## / 56
- npt.dll (ad3f44ee71c7) - ## / 58
- orbd.exe (43fdeaff54b1) - ## / 56
- pack200.exe (d7b0982ceb22) - ## / 56
- policytool.exe (cbdaf8897060) - ## / 56
- prism-d3d.dll (a47d350a2127) - ## / 56
- rmid.exe (7457e991ceed) - ## / 56
- rmiregistry.exe (5fdee88c9875) - ## / 58
- servertool.exe (547c2859eec1) - ## / 57
- splashscreen.dll (dbd8b136f478) - ## / 56
- ssv.dll (8d5113f6a283) - ## / 59
- ssvagent.exe (9c4078d401f7) - ## / 58
- sunec.dll (727929101ab1) - ## / 55
- sunmscapi.dll (381885fee3e6) - ## / 58
- t2k.dll (a571274fd0fb) - ## / 55
- tnameserv.exe (d8241df5aadd) - ## / 56
- unpack.dll (a3b2e1860c50) - ## / 56
- unpack200.exe (81c5ffc8bbff) - ## / 55
- verify.dll (2559c47c04c4) - ## / 56
- w2k_lsa_auth.dll (7f6127a43873) - ## / 56
- WindowsAccessBridge-64.dll (367dc4cff682) - ## / 56
- wsdetect.dll (12950cda1ffc) - ## / 57
- zip.dll (8cd2be511c19) - ## / 56
- deployJava1.dll (e462a927497f) - ## / 57
- npdeployJava1.dll (855674f1e233) - ## / 56
- npjp2.dll (8a568ad08775) - ## / 56
- jvm.dll (667a0c984bce) - ## / 56
- ffjcext.zip (76dcd4dad5f5) - ## / 54
- uninstall.exe (28f51a02769f) - ## / 59
- mcr-r2016b.9.1.nupkg (1167c3479690) - ## / 55
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Copyright 2001-2014 The MathWorks, Inc.
-
- vcredist2008 (≥ 9.0.30729)
Ground Rules:
- This discussion is only about MATLAB Compiler Runtime R2016b and the MATLAB Compiler Runtime R2016b package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or MATLAB Compiler Runtime R2016b, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.