Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
5,816
Downloads of v 12.0.31101.00:
326
Last Update:
02 Jul 2015
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
Microsoft Visual Studio 2013 Premium IDE ALM- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Visual Studio 2013 - Premium RTM Update 4
This is not the latest version of Visual Studio 2013 - Premium RTM Update 4 available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
5,816
Downloads of v 12.0.31101.00:
326
Maintainer(s):
Software Author(s):
- Microsoft
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Visual Studio 2013 - Premium RTM Update 4 12.0.31101.00
This is not the latest version of Visual Studio 2013 - Premium RTM Update 4 available.
All Checks are Unknown
2 Test of Unknown Status
Validation Testing Unknown
Verification Testing Unknown
To install Visual Studio 2013 - Premium RTM Update 4, run the following command from the command line or from PowerShell:
To upgrade Visual Studio 2013 - Premium RTM Update 4, run the following command from the command line or from PowerShell:
To uninstall Visual Studio 2013 - Premium RTM Update 4, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
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://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
choco download visualstudio2013premium --internalize --version=12.0.31101.00 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade visualstudio2013premium -y --source="'STEP 3 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 visualstudio2013premium -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure visualstudio2013premium installed
win_chocolatey:
name: visualstudio2013premium
state: present
version: 12.0.31101.00
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'visualstudio2013premium' do
action :install
version '12.0.31101.00'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: visualstudio2013premium,
Version: 12.0.31101.00,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller visualstudio2013premium
{
Name = 'visualstudio2013premium'
Ensure = 'Present'
Version = '12.0.31101.00'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'visualstudio2013premium':
provider => 'chocolatey',
ensure => '12.0.31101.00',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install visualstudio2013premium version="12.0.31101.00" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator ferventcoder on 07 Oct 2015.
This silently installs Visual Studio 2013 Premium Update 4 along with the Microsoft .Net 4.5.1 Framework SDK.
OPTIONAL FEATURES
All Optional Features such as Blend, Sql Dev tools, Web dev tools, etc. are not installed by default, but you can provide install arguments to add them. Here is an example that includes the Web Tools and the Windows 8 Store App SDK:
cinst VisualStudio2013Premium -InstallArguments "/Features:'WebTools Win8SDK' /ProductKey:AB1CD-EF2GH-IJ3KL-MN4OP-QR5ST"
You simply need to send a white space delimited list of the features to install via the InstallArguments parameter. Here are the available features:
Blend
LightSwitch
VC_MFC_Libraries
OfficeDeveloperTools
SQL
WebTools
Win8SDK
SilverLight_Developer_Kit
WindowsPhone80
<?xml version="1.0" encoding="utf-8"?>
<AdminDeploymentCustomizations xmlns="http://schemas.microsoft.com/wix/2011/AdminDeployment">
<BundleCustomizations TargetDir="default" NoWeb="default"/>
<SelectableItemCustomizations>
<SelectableItemCustomization Id="Blend" Hidden="no" Selected="no" />
<SelectableItemCustomization Id="LightSwitch" Hidden="no" Selected="no" />
<SelectableItemCustomization Id="VC_MFC_Libraries" Hidden="no" Selected="no" />
<SelectableItemCustomization Id="OfficeDeveloperTools" Hidden="no" Selected="no" />
<SelectableItemCustomization Id="SQL" Hidden="no" Selected="no" />
<SelectableItemCustomization Id="WebTools" Hidden="no" Selected="no" />
<SelectableItemCustomization Id="Win8SDK" Hidden="no" Selected="no" />
<SelectableItemCustomization Id="SilverLight_Developer_Kit" Hidden="no" Selected="no" />
<SelectableItemCustomization Id="WindowsPhone80" Hidden="no" Selected="no" />
<SelectableItemCustomization Id="BlissHidden" Selected="yes" />
<SelectableItemCustomization Id="HelpHidden" Selected="yes" />
<SelectableItemCustomization Id="LocalDBHidden" Selected="yes" />
<SelectableItemCustomization Id="NetFX4Hidden" Selected="yes" />
<SelectableItemCustomization Id="NetFX45Hidden" Selected="yes" />
<SelectableItemCustomization Id="PortableDTPHidden" Selected="yes" />
<SelectableItemCustomization Id="PreEmptiveDotfuscatorHidden" Selected="yes" />
<SelectableItemCustomization Id="PreEmptiveAnalyticsHidden" Selected="yes" />
<SelectableItemCustomization Id="ProfilerHidden" Selected="yes" />
<SelectableItemCustomization Id="ReportingHidden" Selected="yes" />
<SelectableItemCustomization Id="SDKTools3Hidden" Selected="yes" />
<SelectableItemCustomization Id="SDKTools4Hidden" Selected="yes" />
<SelectableItemCustomization Id="Silverlight5DRTHidden" Selected="yes" />
<SelectableItemCustomization Id="SQLCEHidden" Selected="yes" />
<SelectableItemCustomization Id="SQLCLRTypesHidden" Selected="yes" />
<SelectableItemCustomization Id="SQLDACHidden" Selected="yes" />
<SelectableItemCustomization Id="SQLDOMHidden" Selected="yes" />
<SelectableItemCustomization Id="SQLSharedManagementObjectsHidden" Selected="yes" />
<SelectableItemCustomization Id="StoryboardingHidden" Selected="yes" />
<SelectableItemCustomization Id="TSQLHidden" Selected="yes" />
<SelectableItemCustomization Id="VCCompilerHidden" Selected="yes" />
<SelectableItemCustomization Id="VCCoreHidden" Selected="yes" />
<SelectableItemCustomization Id="VCDebugHidden" Selected="yes" />
<SelectableItemCustomization Id="VCDesigntimeHidden" Selected="yes" />
<SelectableItemCustomization Id="VCExtendedHidden" Selected="yes" />
<SelectableItemCustomization Id="WinJSHidden" Selected="yes" />
<SelectableItemCustomization Id="WinSDKHidden" Selected="yes" />
</SelectableItemCustomizations>
</AdminDeploymentCustomizations>
. (Join-Path $(Split-Path -parent $MyInvocation.MyCommand.Definition) 'common.ps1')
$adminFile = (Join-Path $(Split-Path -parent $MyInvocation.MyCommand.Definition) 'AdminDeployment.xml')
$customArgs = $env:chocolateyInstallArguments
$env:chocolateyInstallArguments=""
$settings = Initialize-VS-Settings $customArgs $adminFile
$installerArgs = Get-VS-Installer-Args $settings.ProductKey
Install-ChocolateyPackage 'VisualStudio2013Premium' 'exe' $installerArgs 'http://download.microsoft.com/download/0/D/3/0D316453-32A1-4042-A5B6-30B14A4C24AA/vs_premium_download.exe'
$app = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -eq "Microsoft Visual Studio Premium 2013" }
if($app -ne $null){
$version=$app.Version
$uninstaller=Get-Childitem "$env:ProgramData\Package Cache\" -Recurse -Filter vs_Premium.exe | ? { $_.VersionInfo.ProductVersion.startswith($version)}
Uninstall-ChocolateyPackage 'VisualStudio2013Premium' 'exe' "/Uninstall /force /Passive /NoRestart" $uninstaller.FullName
}
Function Initialize-VS-Settings ($vsArgs, $unattendFile)
{
$result = @{
"ProductKey" = ""
}
$MATCH_PATTERN = "/([a-zA-Z]+):([`"'])?([a-zA-Z0-9- _]+)([`"'])?"
$PARAMATER_NAME_INDEX = 1
$VALUE_INDEX = 3
$productKey = ""
#Test to see if anything was passed
if($vsArgs -match $MATCH_PATTERN ){
#Construct a hastable of paramaters sent
#Format is /Key:Value (optional quotes) - Value can have [a-zA-Z0-9- _]+
$vsArgValues = @{ }
$results = $vsArgs | Select-String $MATCH_PATTERN -AllMatches
$results.matches | % {
$vsArgValues.Add(
$_.Groups[$PARAMATER_NAME_INDEX].Value.Trim(),
$_.Groups[$VALUE_INDEX].Value.Trim())
}
#Initialize features unattended installation file
if($vsArgValues['Features']) {
$featuresToAdd = -split $vsArgValues['Features']
[xml]$adminXml=Get-Content $unattendFile
$featuresToAdd | % {
$feature=$_
$node=$adminXml.DocumentElement.SelectableItemCustomizations.ChildNodes | ? {$_.Id -eq "$feature"}
if($node -ne $null){
$node.Selected="yes"
}
}
$adminXml.Save($unattendFile)
}
#Return back the product key
if($vsArgValues['ProductKey']) {
$result["ProductKey"] = $vsArgValues['ProductKey']
};
}
New-Object PSObject -Property $result
}
Function Get-VS-Installer-Args ($productKey='') {
$result = "/Passive /NoRestart /AdminFile $adminFile /Log $env:temp\vs.log"
if($settings.ProductKey -ne "") {
$result = "{0} /ProductKey {1}" -f $result, $settings.ProductKey
}
$result
}
Log in or click on link to see number of positives.
- VisualStudio2013Premium.12.0.31101.00.nupkg (0965ae03a024) - ## / 57
- vs_premium_download.exe (38de865fd8c5) - ## / 57
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Visual Studio 2013 - Premium with Update 5 12.0.40629.20150920 | 1865 | Sunday, September 20, 2015 | Approved |
Visual Studio 2013 - Premium with Update 5 12.0.40629.00 | 317 | Saturday, July 25, 2015 | Approved |
Visual Studio 2013 - Premium RTM Update 4 12.0.31101.00 | 326 | Thursday, July 2, 2015 | Approved |
Visual Studio 2013 - Premium RTM 12.0.21005.20141031 | 1890 | Friday, October 31, 2014 | Approved |
Visual Studio 2013 - Premium RTM 12.0.21005.20140406 | 859 | Sunday, April 6, 2014 | Approved |
Visual Studio 2013 - Premium RTM 12.0.21005.20131229 | 559 | Tuesday, December 31, 2013 | Unknown |
- Add Uninstaller
- Remove dependency on IE10
- Add ability to specify optional features.
Ground Rules:
- This discussion is only about Visual Studio 2013 - Premium RTM Update 4 and the Visual Studio 2013 - Premium RTM Update 4 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 Visual Studio 2013 - Premium RTM Update 4, 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.