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...

Downloads:
79,855
Downloads of v 6.7.67.0:
289
Last Update:
24 Feb 2017
Package Maintainer(s):
Software Author(s):
- NewRelic
Tags:
newrelic-dotnet NewRelic dotnet .Net- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

New Relic .NET Agent
This is not the latest version of New Relic .NET Agent available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
79,855
Downloads of v 6.7.67.0:
289
Maintainer(s):
Software Author(s):
- NewRelic
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.
New Relic .NET Agent 6.7.67.0
This is not the latest version of New Relic .NET Agent available.
All Checks are Passing
2 Passing Test
To install New Relic .NET Agent, run the following command from the command line or from PowerShell:
To upgrade New Relic .NET Agent, run the following command from the command line or from PowerShell:
To uninstall New Relic .NET Agent, 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 newrelic-dotnet --internalize --version=6.7.67.0 --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 newrelic-dotnet -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 newrelic-dotnet -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 newrelic-dotnet installed
win_chocolatey:
name: newrelic-dotnet
state: present
version: 6.7.67.0
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 'newrelic-dotnet' do
action :install
version '6.7.67.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: newrelic-dotnet,
Version: 6.7.67.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller newrelic-dotnet
{
Name = 'newrelic-dotnet'
Ensure = 'Present'
Version = '6.7.67.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'newrelic-dotnet':
provider => 'chocolatey',
ensure => '6.7.67.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install newrelic-dotnet version="6.7.67.0" 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 as a trusted package on 24 Feb 2017.
New Relic .NET Agent that allows you to monitor your .NET application. Package has following parameters:
-param 'license_key=newrelic_key' # Specify Your NewRelic license key
-param 'restartiis=true' # (Optional) Stop IIS service, install package, start IIS after.
-param 'license_key=your_key;restartiis=true' # Specify License key and handle IIS restarts.
#NOTE: Please remove any commented lines to tidy up prior to releasing the package, including this one
$packageName = 'newrelic-dotnet' # arbitrary name for the package, used in messages
$installerType = 'msi' #only one of these: exe, msi, msu
$url = 'https://download.newrelic.com/dot_net_agent/release/NewRelicAgent_x86_6.7.67.0.msi' # download url
$url64 = 'https://download.newrelic.com/dot_net_agent/release/NewRelicAgent_x64_6.7.67.0.msi' # 64bit URL here or remove - if installer decides, then use $url
$silentArgs = '/qb INSTALLLEVEL=50' # "/s /S /q /Q /quiet /silent /SILENT /VERYSILENT" # try any of these to get the silent installer #msi is always /quiet
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx
# Defaults
$restartiis = $false
if (![string]::IsNullOrEmpty($env:chocolateyPackageParameters))
{
if ($env:chocolateyPackageParameters.ToLower().Contains("restartiis") -or $env:chocolateyPackageParameters.ToLower().Contains("license_key"))
{
# Getting Parameters
$rawTxt = [regex]::escape($env:chocolateyPackageParameters)
$params = $($rawTxt -split ';' | ForEach-Object {
$temp= $_ -split '='
"{0}={1}" -f $temp[0].Substring(0,$temp[0].Length),$temp[1]
} | ConvertFrom-StringData)
if ($params.restartiis -eq 'true')
{
Write-Host "Found 'restartiis' parameter enabled."
$restartiis = $true
}
else
{
$restartiis = $false
}
if (![string]::IsNullOrEmpty($params.license_key))
{
# Passing License key
$silentArgs = $silentArgs + " NR_LICENSE_KEY=" + $params.license_key
}
else
{
Write-Warning "No New Relic license key specified. Please use -params 'license_key=<newrelic_key>' or alternatively specify it manually after installation."
}
}
else
{
Write-Warning "No New Relic license key specified. Please use -params 'license_key=<newrelic_key>' or alternatively specify it manually after installation."
}
}
else
{
Write-Warning "No New Relic license key specified. Please use -params 'license_key=<newrelic_key>' or alternatively specify it manually after installation."
}
try { #error handling is only necessary if you need to do anything in addition to/instead of the main helpers
if ($restartiis)
{
# Stop IIS before installing
$ServiceName = "W3SVC"
$service = Get-Service "$ServiceName" -ErrorAction SilentlyContinue
if ($service -ne $null)
{
Write-Host $($ServiceName+" service will be stopped")
Stop-Service $ServiceName
echo "Sleeping for $sleep_timeout seconds"
$i = 0
while (!(Get-Service $ServiceName | Where-Object {$_.status -eq "stopped"}))
{
echo "Waiting for ${ServiceName} to be stopped"
if ($i -gt $sleep_timeout)
{
throw "Can't wait for ${ServiceName} to be stopped. Took longer than ${sleep_timeout}s: Timeout"
}
Echo "[$i]"
Start-Sleep -s 1
$i++
}
echo "${ServiceName} is stopped. Continue."
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" "$url64" -validExitCodes $validExitCodes
Write-Host "Configuring $ServiceName to autostart"
Set-Service $ServiceName -startuptype "auto"
Write-Host $("Starting "+$ServiceName+" service")
Start-Service $ServiceName
}
else
{
echo "No ${ServiceName} service found. Nothing to restart. Continue."
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" "$url64" -validExitCodes $validExitCodes
}
}
else
{
Write-Warning "IIS will not be restarted. Please do so manually. In order to stop & start IIS automatically use parameter: -params 'restartiis=true'. "
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" "$url64" -validExitCodes $validExitCodes
}
} catch {
Write-ChocolateyFailure "$packageName" "$($_.Exception.Message)"
throw
}
$package = 'newrelic-dotnet' # arbitrary name for the package, used in messages
$ProductCode_x86 = '{DDC2CA5D-0D9F-41F9-A545-2BBD22D82308}'
$ProductCode_x64 = '{CA04D25C-7DE8-4126-9AF3-F969BDA51A63}'
if( `
(Test-Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\$ProductCode_x86") -or `
(Test-Path "HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$ProductCode_x86") `
){
try {
# http://stackoverflow.com/questions/450027/uninstalling-an-msi-file-from-the-command-line-without-using-msiexec
$msiArgs = "/X $ProductCode_x86 /qb"
Start-ChocolateyProcessAsAdmin "$msiArgs" 'msiexec'
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}
}
if( `
(Test-Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\$ProductCode_x64") -or `
(Test-Path "HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$ProductCode_x64") `
){
try {
# http://stackoverflow.com/questions/450027/uninstalling-an-msi-file-from-the-command-line-without-using-msiexec
$msiArgs = "/X $ProductCode_x64 /qb"
Start-ChocolateyProcessAsAdmin "$msiArgs" 'msiexec'
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}
}
- newrelic-dotnet.6.7.67.0.nupkg (ccbbc768abd1) - ## / 58 - Log in or click on link to see number of positives
- NewRelicAgent_x64_6.7.67.0.msi (f275a306caea) - ## / 55 - Log in or click on link to see number of positives
- NewRelicAgent_x86_6.7.67.0.msi (3ae61cf64043) - ## / 56 - Log in or click on link to see number of positives
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 |
---|---|---|---|
New Relic .NET Agent 8.21.34.0 | 1427 | Thursday, November 14, 2019 | Approved |
New Relic .NET Agent 8.20.262.0 | 3527 | Thursday, October 17, 2019 | Approved |
New Relic .NET Agent 8.19.353.0 | 2918 | Tuesday, October 1, 2019 | Approved |
New Relic .NET Agent 8.18.241.0 | 4418 | Monday, August 26, 2019 | Approved |
New Relic .NET Agent 8.17.438.0 | 2230 | Monday, July 22, 2019 | Approved |
New Relic .NET Agent 8.16.567.0 | 1907 | Tuesday, June 11, 2019 | Approved |
New Relic .NET Agent 8.15.455.0 | 1481 | Monday, April 22, 2019 | Approved |
New Relic .NET Agent 8.14.222.0 | 884 | Tuesday, March 19, 2019 | Approved |
New Relic .NET Agent 8.13.798.0 | 1649 | Tuesday, February 12, 2019 | Approved |
New Relic .NET Agent 8.12.216.0 | 681 | Thursday, January 10, 2019 | Approved |
New Relic .NET Agent 8.11.157.0 | 693 | Monday, December 17, 2018 | Approved |
New Relic .NET Agent 8.10.51.0 | 761 | Friday, November 30, 2018 | Approved |
New Relic .NET Agent 8.9.130.0 | 808 | Thursday, November 15, 2018 | Approved |
New Relic .NET Agent 8.8.83.0 | 1911 | Wednesday, October 17, 2018 | Approved |
New Relic .NET Agent 8.7.75.0 | 855 | Wednesday, October 3, 2018 | Approved |
New Relic .NET Agent 8.6.45.0 | 2272 | Tuesday, August 28, 2018 | Approved |
New Relic .NET Agent 8.5.186.0 | 820 | Thursday, August 16, 2018 | Approved |
New Relic .NET Agent 8.4.880.0 | 789 | Monday, July 30, 2018 | Approved |
New Relic .NET Agent 8.3.360.0 | 1588 | Tuesday, June 19, 2018 | Approved |
New Relic .NET Agent 8.2.216.0 | 2409 | Wednesday, May 16, 2018 | Approved |
New Relic .NET Agent 8.1.712.0 | 1058 | Tuesday, May 1, 2018 | Approved |
New Relic .NET Agent 8.1.709.0 | 933 | Thursday, April 19, 2018 | Approved |
New Relic .NET Agent 8.0.0.0 | 3012 | Thursday, March 8, 2018 | Approved |
New Relic .NET Agent 7.1.229.0 | 4535 | Wednesday, February 21, 2018 | Approved |
New Relic .NET Agent 7.0.2.0 | 13428 | Tuesday, January 23, 2018 | Approved |
New Relic .NET Agent 6.24.0.0 | 20 | Monday, August 26, 2019 | Approved |
New Relic .NET Agent 6.21.0.0 | 199 | Thursday, February 8, 2018 | Approved |
New Relic .NET Agent 6.20.166.0 | 3363 | Monday, December 18, 2017 | Approved |
New Relic .NET Agent 6.19.330.0 | 1640 | Thursday, November 30, 2017 | Approved |
New Relic .NET Agent 6.18.139.0 | 3933 | Thursday, November 2, 2017 | Approved |
New Relic .NET Agent 6.17.387.0 | 863 | Tuesday, October 3, 2017 | Approved |
New Relic .NET Agent 6.16.178.0 | 539 | Monday, August 28, 2017 | Approved |
New Relic .NET Agent 6.14.209.0 | 703 | Wednesday, July 12, 2017 | Approved |
New Relic .NET Agent 6.13.366.0 | 419 | Thursday, June 15, 2017 | Approved |
New Relic .NET Agent 6.12.71.0 | 448 | Thursday, May 25, 2017 | Approved |
New Relic .NET Agent 6.12.64.0 | 250 | Wednesday, May 17, 2017 | Approved |
New Relic .NET Agent 6.12.61.0 | 314 | Thursday, May 11, 2017 | Approved |
New Relic .NET Agent 6.11.613.0 | 335 | Thursday, May 4, 2017 | Approved |
New Relic .NET Agent 6.10.1.0 | 398 | Wednesday, April 5, 2017 | Approved |
New Relic .NET Agent 6.9.62.0 | 543 | Wednesday, March 22, 2017 | Approved |
New Relic .NET Agent 6.8.172.0 | 556 | Thursday, March 2, 2017 | Approved |
New Relic .NET Agent 6.7.67.0 | 289 | Friday, February 24, 2017 | Approved |
New Relic .NET Agent 6.6.5.0 | 522 | Tuesday, January 24, 2017 | Approved |
New Relic .NET Agent 6.4.21.0 | 278 | Wednesday, January 4, 2017 | Approved |
New Relic .NET Agent 6.3.123.0 | 283 | Tuesday, November 22, 2016 | Approved |
New Relic .NET Agent 5.19.47 | 393 | Thursday, May 5, 2016 | Approved |
New Relic .NET Agent 5.18.36 | 280 | Monday, April 25, 2016 | Approved |
New Relic .NET Agent 5.11.53 | 284 | Thursday, December 17, 2015 | Approved |
New Relic .NET Agent 5.10.59 | 185 | Wednesday, December 9, 2015 | Approved |
New Relic .NET Agent 5.9.74 | 371 | Friday, November 13, 2015 | Approved |
New Relic .NET Agent 5.8.28 | 276 | Monday, October 19, 2015 | Approved |
New Relic .NET Agent 4.6.29 | 310 | Wednesday, May 20, 2015 | Approved |
New Relic .NET Agent 4.4.60 | 234 | Thursday, May 14, 2015 | Approved |
New Relic .NET Agent 4.3.123 | 279 | Thursday, April 23, 2015 | Approved |
New Relic .NET Agent 4.2.185 | 288 | Wednesday, April 1, 2015 | Approved |
New Relic .NET Agent 4.1.136 | 336 | Sunday, March 29, 2015 | Approved |
New Relic .NET Agent 3.12.140 | 287 | Thursday, February 26, 2015 | Approved |
New Relic .NET Agent 3.11.296 | 290 | Friday, January 30, 2015 | Approved |
New Relic .NET Agent 3.10.43.11210859 | 459 | Friday, November 21, 2014 | Approved |
New Relic .NET Agent 3.10.43.11210858 | 249 | Friday, November 21, 2014 | Approved |
New Relic .NET Agent 3.9.146.10301600 | 396 | Thursday, October 30, 2014 | Approved |
New Relic .NET Agent 3.7.135.09291807 | 284 | Tuesday, September 30, 2014 | Approved |
New Relic .NET Agent 3.6.177.09151155 | 329 | Monday, September 15, 2014 | Approved |
https://www.newrelic.com
This package has no dependencies.
Ground Rules:
- This discussion is only about New Relic .NET Agent and the New Relic .NET Agent 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 New Relic .NET Agent, 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.