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:
25,604
Downloads of v 4.8.0.0-rtw3:
109
Last Update:
21 Aug 2019
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
microsoft .net framework 4.8 developer target targeting pack multi dotnet netfx 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

Microsoft .NET Framework 4.8 Developer Pack
This is a prerelease version of Microsoft .NET Framework 4.8 Developer Pack.
- 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:
25,604
Downloads of v 4.8.0.0-rtw3:
109
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.
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.0-rtw3
This is a prerelease version of Microsoft .NET Framework 4.8 Developer Pack.
This Package Contains an Exempted Check
1 Test Passing and 1 Exempted Test
Validation Testing Passed
Verification Testing Exempt:
Dependency (kb2919355) requires reboot,
To install Microsoft .NET Framework 4.8 Developer Pack, run the following command from the command line or from PowerShell:
To upgrade Microsoft .NET Framework 4.8 Developer Pack, run the following command from the command line or from PowerShell:
To uninstall Microsoft .NET Framework 4.8 Developer Pack, 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 netfx-4.8-devpack --internalize --version=4.8.0.0-rtw3 --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 netfx-4.8-devpack -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 netfx-4.8-devpack -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 netfx-4.8-devpack installed
win_chocolatey:
name: netfx-4.8-devpack
state: present
version: 4.8.0.0-rtw3
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 'netfx-4.8-devpack' do
action :install
version '4.8.0.0-rtw3'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: netfx-4.8-devpack,
Version: 4.8.0.0-rtw3,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller netfx-4.8-devpack
{
Name = 'netfx-4.8-devpack'
Ensure = 'Present'
Version = '4.8.0.0-rtw3'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'netfx-4.8-devpack':
provider => 'chocolatey',
ensure => '4.8.0.0-rtw3',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install netfx-4.8-devpack version="4.8.0.0-rtw3" 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.
The .NET Framework 4.8 Developer Pack lets developers build applications that target the .NET Framework 4.8 by using Visual Studio 2017, Visual Studio 2015 or other IDEs. This is a single package that bundles the .NET Framework 4.8, the .NET 4.8 Targeting Pack, and the .NET Framework 4.8 SDK.
. (Join-Path -Path (Split-Path -Parent -Path $MyInvocation.MyCommand.Definition) -ChildPath 'DotNetFrameworkHelpers.ps1')
$version = '4.8'
$arguments = @{
PackageName = "netfx-$version-devpack"
Version = $version
ProductNameWithVersion = "Microsoft .NET Framework $version Developer Pack"
Url = 'https://download.visualstudio.microsoft.com/download/pr/014120d7-d689-4305-befd-3cb711108212/0307177e14752e359fde5423ab583e43/ndp48-devpack-enu.exe'
Checksum = '0A7AC4A9B44CED6BB7A0EBF3AD9BA29F60BD4D3BEB2047E19F4D8749DE61F5AC'
ChecksumType = 'sha256'
}
Install-DotNetDevPack @arguments
$scriptDirectory = Split-Path -Parent -Path $MyInvocation.MyCommand.Definition
. (Join-Path -Path $scriptDirectory -ChildPath 'Get-DefaultChocolateyLocalFilePath.ps1')
. (Join-Path -Path $scriptDirectory -ChildPath 'Get-NativeInstallerExitCode.ps1')
. (Join-Path -Path $scriptDirectory -ChildPath 'Install-ChocolateyInstallPackageAndHandleExitCode.ps1')
. (Join-Path -Path $scriptDirectory -ChildPath 'Set-PowerShellExitCode.ps1')
$ERROR_SUCCESS = 0
$ERROR_SUCCESS_REBOOT_REQUIRED = 3010
$STATUS_ACCESS_VIOLATION = 0xC0000005
function Get-SafeLogPath
{
$logPath = $Env:TEMP
if ($logPath -like '\\*')
{
# .NET installer does not like logging to a network share (https://github.com/jberezanski/ChocolateyPackages/issues/15)
$candidates = @("$Env:LOCALAPPDATA\Temp\chocolatey", "$Env:LOCALAPPDATA\Temp", "$Env:USERPROFILE\AppData\Local\Temp\chocolatey", "$Env:USERPROFILE\AppData\Local\Temp", "$Env:SystemRoot\TEMP", $scriptDirectory)
foreach ($candidate in $candidates)
{
if ((Test-Path -Path $candidate) -and $candidate -notlike '\\*')
{
Write-Verbose "Using '$candidate' as log path because `$Env:TEMP points to a network share, which may cause the installation to fail"
$logPath = $candidate
break
}
}
}
return $logPath
}
function Test-Installed
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory = $true)] [int] $Release
)
$props = Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full' -Name Release -ErrorAction SilentlyContinue
return $null -ne $props -and $props.Release -ge $Release
}
function Invoke-CommandWithTempPath
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory = $true)] [string] $TempPath,
[Parameter(Mandatory = $true)] [scriptblock] $ScriptBlock
)
$oldTemp = $Env:TEMP
if ($Env:TEMP -ne $TempPath)
{
Write-Debug "Changing `$Env:TEMP from '$oldTemp' to '$TempPath'"
$Env:TEMP = $TempPath
}
try
{
& $ScriptBlock
}
finally
{
if ($Env:TEMP -ne $oldTemp)
{
Write-Debug "Changing `$Env:TEMP back to '$oldTemp'"
$Env:TEMP = $oldTemp
}
}
}
function Install-DotNetFrameworkOrDevPack
{
[CmdletBinding(PositionalBinding = $false)]
Param
(
[Parameter(Mandatory = $true)] [string] $PackageName,
[Parameter(Mandatory = $true)] [string] $Version,
[Parameter(Mandatory = $true)] [string] $Url,
[Parameter(Mandatory = $true)] [string] $Checksum,
[Parameter(Mandatory = $true)] [string] $ChecksumType,
[Parameter(Mandatory = $true)] [scriptblock] $ExitCodeHandler
)
$originalFileName = Split-Path -Leaf -Path ([uri]$Url).LocalPath
$downloadFilePath = Get-DefaultChocolateyLocalFilePath -OriginalFileName $originalFileName
$downloadArguments = @{
packageName = $PackageName
fileFullPath = $downloadFilePath
url = $Url
checksum = $Checksum
checksumType = $ChecksumType
url64 = $Url
checksum64 = $Checksum
checksumType64 = $ChecksumType
}
Get-ChocolateyWebFile @downloadArguments | Out-Null
$safeLogPath = Get-SafeLogPath
$installerExeArguments = @{
packageName = $PackageName
fileType = 'exe'
file = $downloadFilePath
silentArgs = ('/Quiet /NoRestart /Log "{0}\{1}_{2}_{3:yyyyMMddHHmmss}.log"' -f $safeLogPath, $PackageName, $Version, (Get-Date))
validExitCodes = @(
$ERROR_SUCCESS # success
$ERROR_SUCCESS_REBOOT_REQUIRED # success, restart required
)
}
Invoke-CommandWithTempPath -TempPath $safeLogPath -ScriptBlock { Install-ChocolateyInstallPackageAndHandleExitCode @installerExeArguments -ExitCodeHandler $ExitCodeHandler }
}
function Install-DotNetFramework
{
[CmdletBinding(PositionalBinding = $false)]
Param
(
[Parameter(Mandatory = $true)] [string] $PackageName, # = 'netfx-4.8'
[Parameter(Mandatory = $true)] [int] $Release, # = 528040
[Parameter(Mandatory = $true)] [string] $Version, # = '4.8'
[Parameter(Mandatory = $true)] [string] $ProductNameWithVersion, # = "Microsoft .NET Framework $version"
[Parameter(Mandatory = $true)] [string] $Url, # = 'https://download.visualstudio.microsoft.com/download/pr/7afca223-55d2-470a-8edc-6a1739ae3252/abd170b4b0ec15ad0222a809b761a036/NDP48-x86-x64-AllOS-ENU.exe'
[Parameter(Mandatory = $true)] [string] $Checksum, # = '95889D6DE3F2070C07790AD6CF2000D33D9A1BDFC6A381725AB82AB1C314FD53'
[Parameter(Mandatory = $true)] [string] $ChecksumType # = 'sha256'
)
if (Test-Installed -Release $Release) {
Write-Host "$ProductNameWithVersion or later is already installed."
return
}
$exitCodeHandler = {
$installResult = $_
$exitCode = $installResult.ExitCode
if ($exitCode -eq $ERROR_SUCCESS_REBOOT_REQUIRED)
{
Write-Warning "$ProductNameWithVersion has been installed, but a reboot is required to finalize the installation. Until the computer is rebooted, dependent packages may fail to install or function properly."
}
elseif ($exitCode -eq $ERROR_SUCCESS)
{
Write-Verbose "$ProductNameWithVersion has been installed successfully, a reboot is not required."
}
elseif ($null -eq $exitCode)
{
Write-Warning "Package installation has finished, but this Chocolatey version does not provide the installer exit code. A restart may be required to finalize $productNameWithVersion installation."
}
}
$innerArgs = New-Object System.Collections.Hashtable -ArgumentList @($PSBoundParameters)
[void]$innerArgs.Remove('Release')
[void]$innerArgs.Remove('ProductNameWithVersion')
Install-DotNetFrameworkOrDevPack @innerArgs -ExitCodeHandler $exitCodeHandler
}
function Install-DotNetDevPack
{
[CmdletBinding(PositionalBinding = $false)]
Param
(
[Parameter(Mandatory = $true)] [string] $PackageName, # = 'netfx-4.8-devpack'
[Parameter(Mandatory = $true)] [string] $Version, # = '4.8'
[Parameter(Mandatory = $true)] [string] $ProductNameWithVersion, # = "Microsoft .NET Framework $version Developer Pack early access build 3745"
[Parameter(Mandatory = $true)] [string] $Url, # = 'https://download.visualstudio.microsoft.com/download/pr/9854b5f2-2341-4136-ad7d-1d881ab8d603/e3a011f2a41a59b086f78d64e1c7a3fc/NDP48-DevPack-ENU.exe'
[Parameter(Mandatory = $true)] [string] $Checksum, # = '67979C8FBA2CD244712A31A7FE323FD8BD69AA7971F152F8233CB109A7260F06'
[Parameter(Mandatory = $true)] [string] $ChecksumType # = 'sha256'
)
$exitCodeHandler = {
$installResult = $_
$exitCode = $installResult.ExitCode
if ($exitCode -eq $ERROR_SUCCESS_REBOOT_REQUIRED)
{
Write-Warning "$ProductNameWithVersion has been installed, but a reboot is required to finalize the installation. Until the computer is rebooted, dependent packages may fail to install or function properly."
}
elseif ($exitCode -eq $ERROR_SUCCESS)
{
Write-Verbose "$ProductNameWithVersion has been installed successfully, a reboot is not required."
}
elseif ($null -eq $exitCode)
{
Write-Warning "Package installation has finished, but this Chocolatey version does not provide the installer exit code. A restart may be required to finalize $productNameWithVersion installation."
}
elseif ($exitCode -eq $STATUS_ACCESS_VIOLATION)
{
# installer crash (access violation), but may occur at the very end, after the devpack is installed
if (Test-Path -Path 'Env:\ProgramFiles(x86)')
{
$programFiles32 = ${Env:ProgramFiles(x86)}
}
else
{
$programFiles32 = ${Env:ProgramFiles}
}
$mscorlibPath = "$programFiles32\Reference Assemblies\Microsoft\Framework\.NETFramework\v${version}\mscorlib.dll"
Write-Warning "The native installer crashed, checking if it managed to install the devpack before the crash"
Write-Debug "Testing existence of $mscorlibPath"
if (Test-Path -Path $mscorlibPath)
{
Write-Verbose "mscorlib.dll found: $mscorlibPath"
Write-Verbose 'This probably means the devpack got installed successfully, despite the installer crash'
$installResult.ShouldFailInstallation = $false
$installResult.ExitCode = $ERROR_SUCCESS # to avoid triggering failure detection in choco.exe
}
else
{
Write-Verbose "mscorlib.dll not found in expected location: $mscorlibPath"
Write-Verbose 'This probably means the installer crashed before it could fully install the devpack'
}
}
}
$innerArgs = New-Object System.Collections.Hashtable -ArgumentList @($PSBoundParameters)
[void]$innerArgs.Remove('ProductNameWithVersion')
Install-DotNetFrameworkOrDevPack @innerArgs -ExitCodeHandler $exitCodeHandler
}
function Get-DefaultChocolateyLocalFilePath
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory = $true)] [string] $OriginalFileName
)
# adapted from Install-ChocolateyPackage 0.10.8
$chocTempDir = $env:TEMP
$tempDir = Join-Path $chocTempDir "$($env:chocolateyPackageName)"
if ($env:chocolateyPackageVersion -ne $null) { $tempDir = Join-Path $tempDir "$($env:chocolateyPackageVersion)"; }
$tempDir = $tempDir -replace '\\chocolatey\\chocolatey\\', '\chocolatey\'
if (![System.IO.Directory]::Exists($tempDir)) { [System.IO.Directory]::CreateDirectory($tempDir) | Out-Null }
$downloadFilePath = Join-Path $tempDir $OriginalFileName
Write-Debug "Local file path: $downloadFilePath"
return $downloadFilePath
}
<#
.SYNOPSIS
Returns the exit code set earlier by a native installer executed via the Start-ChocolateyProcessAsAdmin helper.
.OUTPUT
System.Int32 or $null
#>
function Get-NativeInstallerExitCode
{
[CmdletBinding()]
Param
(
)
End
{
$exitCodeString = Get-EnvironmentVariable -Name ChocolateyExitCode -Scope Process
if ([string]::IsNullOrEmpty($exitCodeString))
{
return $null
}
[int] $exitCode = 0
if (-not ([int]::TryParse($exitCodeString, [ref]$exitCode)))
{
Write-Warning "Unable to parse ChocolateyExitCode value: $exitCodeString"
return $null
}
return $exitCode
}
}
function Install-ChocolateyInstallPackageAndHandleExitCode
{
[CmdletBinding()]
Param
(
# parameters of Install-ChocolateyInstallPackage (slightly modified to be more strict)
[parameter(Mandatory=$true)][string] $packageName,
[parameter(Mandatory=$true)][alias("installerType","installType")][string] $fileType,
[parameter(Mandatory=$false)][string[]] $silentArgs = '',
[parameter(Mandatory=$false)][alias("fileFullPath")][string] $file,
[parameter(Mandatory=$false)][alias("fileFullPath64")][string] $file64,
[parameter(Mandatory=$false)][int[]] $validExitCodes = @(0),
[parameter(Mandatory=$false)][alias("useOnlyPackageSilentArgs")][switch] $useOnlyPackageSilentArguments = $false,
[parameter(Mandatory=$false)][switch] $useOriginalLocation,
# new parameters
[Parameter(Mandatory=$false)][ScriptBlock] $ExitCodeHandler,
[Parameter(Mandatory=$false)][switch] $PassThru
)
Begin
{
Set-StrictMode -Version 2
$ErrorActionPreference = 'Stop'
}
End
{
$exitCode = $null
$invalidExitCodeErrorMessage = $null
Set-StrictMode -Off
try
{
# Start-ChocolateyProcessAsAdmin, invoked indirectly by Install-ChocolateyInstallPackage,
# overwrites a few arbitrary exit codes with 0. The only execution path
# which faithfully preserves the original exit code is the error path.
# Pass only 0 as a valid exit code and catch the error thrown when
# the exit code is "invalid".
$arguments = @{}
$parametersToRemove = @('validExitCodes', 'ExitCodeHandler', 'PassThru')
$PSBoundParameters.GetEnumerator() | Where-Object { $parametersToRemove -notcontains $_.Key } | ForEach-Object { $arguments[$_.Key] = $_.Value }
Install-ChocolateyInstallPackage `
-validExitCodes @(0) `
@arguments
}
catch [System.Management.Automation.RuntimeException]
{
Write-Debug "Caught $($_.Exception.GetType().FullName) with message = [$($_.Exception.Message)]"
if ($_.Exception.Message -notmatch '(?s)Running\s+.+\s+was\s+not\s+successful.+Exit\s+code\s+was')
{
Write-Debug 'Exception message was not recognized, rethrowing'
throw
}
Write-Debug 'Exception message was recognized as command execution failure with exit code.'
$invalidExitCodeErrorMessage = $_.Exception.Message
}
catch
{
Write-Debug "Caught and rethrowing unexpected $($_.Exception.GetType().FullName) with message = [$($_.Exception.Message)]"
throw
}
finally
{
Set-StrictMode -Version 2
}
$exitCode = Get-NativeInstallerExitCode
if ($exitCode -eq $null -and $invalidExitCodeErrorMessage -ne $null)
{
# 0.10.1 "Running [`"$exeToRun`" $wrappedStatements] was not successful. Exit code was '$exitCode'. See log for possible error messages."
# 0.9.10-rc1 "Running [`"$exeToRun`" $statements] was not successful. Exit code was '$exitCode'. See log for possible error messages."
# 0.9.9-beta3 "[ERROR] Running $exeToRun with $statements was not successful. Exit code was `'$($s.ExitCode)`' Error Message: $innerError."
# 0.9.9-alpha "[ERROR] Running $exeToRun with $statements was not successful. Exit code was `'$($s.ExitCode)`'."
# 0.9.8.28-alpha2 - 0.9.8.33 "[ERROR] Running $exeToRun with $statements was not successful. Exit code was `'$($s.ExitCode)`' Error Message: $innerError."
# 0.9.8.17-alpha1 "[ERROR] Running $exeToRun with $statements was not successful. Exit code was `'$($s.ExitCode)`'."
# 0.9.8.16? "[ERROR] Running $exeToRun with $statements was not successful. Exit code was `'$($s.ExitCode)`'."
# earlier "[ERROR] Running $exeToRun with $statements was not successful."
Write-Verbose 'Running on Chocolatey version which does not expose the native installer exit code (probably earlier than 0.9.10). Attempting to parse the exit code out of the error message.'
Write-Verbose "Error message from Install-ChocolateyPackage: $invalidExitCodeErrorMessage"
$rxExitCode = 'Running\ .+\ was\ not\ successful\.\ Exit\ code\ was\ ''(?<exitCode>-?\d+)'''
if ($invalidExitCodeErrorMessage -match $rxExitCode)
{
$exitCodeString = $matches['exitCode']
try
{
$exitCode = [int]::Parse($exitCodeString)
Write-Verbose "Exit code determined from the error message: $exitCode"
}
catch
{
Write-Verbose "Unable to parse the exit code string ($exitCodeString): $($_.Exception)"
}
}
if ($exitCode -eq $null)
{
# are we running PowerShell Chocolatey?
if ($Env:ChocolateyInstall -ne $null -and (Test-Path -Path (Join-Path -Path $Env:ChocolateyInstall -ChildPath 'chocolateyInstall\chocolatey.ps1')))
{
Write-Warning 'This Chocolatey version does not provide a way to determine the installation result (exit code). Please upgrade to a newer version (at least 0.9.8.17).'
}
else
{
Write-Warning 'Unable to determine the installation result (exit code). Please contact the maintainers of the ''chocolatey-windowsupdate.extension'' package.'
}
}
}
$shouldFail = $exitCode -ne $null -and ($validExitCodes | Measure-Object).Count -gt 0 -and $validExitCodes -notcontains $exitCode
if ($invalidExitCodeErrorMessage -eq $null)
{
$errorMessage = "Installation of $packageName was not successful (exit code: $exitCode)."
}
else
{
$errorMessage = $invalidExitCodeErrorMessage
}
if ($ExitCodeHandler -ne $null)
{
$context = New-Object -TypeName PSObject -Property @{ ExitCode = $exitCode; ErrorMessage = $errorMessage; ShouldFailInstallation = $shouldFail }
$_ = $context
& $exitCodeHandler
$shouldFail = $context.ShouldFailInstallation -eq $true
$shouldGenerateErrorMessage = $false
if ($context.ExitCode -ne $null -and $context.ExitCode -ne $exitCode)
{
$exitCode = $context.ExitCode
Set-PowerShellExitCode -ExitCode $exitCode
$shouldGenerateErrorMessage = $true
}
if ($context.ErrorMessage -ne $null -and $context.ErrorMessage -ne $errorMessage)
{
$errorMessage = $context.ErrorMessage
$shouldGenerateErrorMessage = $false
}
if ($shouldGenerateErrorMessage)
{
$errorMessage = "Installation of $packageName was not successful (exit code: $exitCode)."
}
}
if ($shouldFail)
{
throw $errorMessage
}
else
{
# prevent failure on PowerShell Chocolatey
$failureLogPath = "$Env:TEMP\chocolatey\$packageName\failure.log"
if (Test-Path -Path $failureLogPath)
{
Write-Verbose "Renaming file $failureLogPath so that Chocolatey does not treat the installation as failed"
Rename-Item -Path $failureLogPath -NewName 'failure.old.log' -Force
}
}
if ($PassThru)
{
$result = New-Object -TypeName PSObject -Property @{ ExitCode = $exitCode; ErrorMessage = $errorMessage }
return $result
}
}
}
function Set-PowerShellExitCode
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory = $true)] [int] $ExitCode
)
End
{
chocolateyInstaller\Set-PowerShellExitCode @PSBoundParameters
if ($ExitCode -eq 0 -and $Env:ChocolateyExitCode -ne '0')
{
Write-Debug 'chocolateyInstaller\Set-PowerShellExitCode ignored 0, setting the host exit code and environment variable manually'
$Host.SetShouldExit(0)
$Env:ChocolateyExitCode = '0'
}
}
}
Log in or click on link to see number of positives.
- netfx-4.8-devpack.4.8.0.0-rtw3.nupkg (94cd2411a49d) - ## / 61
- ndp48-devpack-enu.exe (0a7ac4a9b44c) - ## / 67
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 |
---|---|---|---|
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.20190930 | 22855 | Monday, September 30, 2019 | Approved |
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.0 | 1420 | Monday, August 26, 2019 | Approved |
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.0-rtw3 | 109 | Wednesday, August 21, 2019 | Exempted |
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.0-rtw2 | 616 | Friday, April 19, 2019 | Exempted |
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.0-rtw1 | 103 | Friday, April 19, 2019 | Exempted |
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.0-previewv0801 | 201 | Tuesday, February 26, 2019 | Exempted |
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.0-preview8 | 81 | Friday, February 22, 2019 | Exempted |
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.0-preview6 | 90 | Saturday, January 5, 2019 | Exempted |
Microsoft .NET Framework 4.8 Developer Pack 4.8.0.0-preview3 | 115 | Sunday, October 7, 2018 | Exempted |
Software
.NET Framework 4.8 announcement
.NET Framework 4.8 release notes
.NET Framework 4.8 changes
Package
4.8.0.0-rtw3: Updated installer url after .NET 4.8 release to Windows Update.
Ground Rules:
- This discussion is only about Microsoft .NET Framework 4.8 Developer Pack and the Microsoft .NET Framework 4.8 Developer Pack 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 Microsoft .NET Framework 4.8 Developer Pack, 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.