Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

192,202

Downloads of v 4.0.7512:

609

Last Update:

07 Jul 2025

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

Azure Function Core Tools

  • 1
  • 2
  • 3

4.0.7512 | Updated: 07 Jul 2025

Downloads:

192,202

Downloads of v 4.0.7512:

609

Maintainer(s):

Software Author(s):

  • Microsoft

Azure Function Core Tools 4.0.7512

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Requires reboot due to dependency.

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Azure Function Core Tools, run the following command from the command line or from PowerShell:

>

To upgrade Azure Function Core Tools, run the following command from the command line or from PowerShell:

>

To uninstall Azure Function Core Tools, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade azure-functions-core-tools -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 azure-functions-core-tools -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 azure-functions-core-tools
  win_chocolatey:
    name: azure-functions-core-tools
    version: '4.0.7512'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'azure-functions-core-tools' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '4.0.7512'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller azure-functions-core-tools
{
    Name     = "azure-functions-core-tools"
    Version  = "4.0.7512"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'azure-functions-core-tools':
  ensure   => '4.0.7512',
  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.

Package Approved

This package was approved as a trusted package on 08 Jul 2025.

Description

The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'STOP';

$packageName= 'azure-functions-core-tools'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url_arm64      = 'https://cdn.functions.azure.com/public/4.0.226050/Azure.Functions.Cli.win-arm64.4.0.7512.zip'
$url_x86        = 'https://cdn.functions.azure.com/public/4.0.226050/Azure.Functions.Cli.win-x86.4.0.7512.zip'
$url_x64        = 'https://cdn.functions.azure.com/public/4.0.226050/Azure.Functions.Cli.win-x64.4.0.7512.zip'
$checksum_arm64 = '0F3E5B2A432A8243A7D4F44CCA7F1F02975CCFDF94CEDC57EE82DD75C7EEF183BCE495C276339A175D654E80C944FFB3A99DB1E6085CA9F07B6C5012C1AB5934'
$checksum_x86   = 'BF5D5979ADDD4093947BBD3331E8E2CA07B5FFBEA1BC04437F78E8192621FA656DA90A8F06F1C8957EB3BCBB2A3564E4D7DDBCB1F17470E175138695E61CB7FC'
$checksum_x64   = '0141EC8D2251445C2EA502016549BB8DF945547458E8FCD2C698B58D693AC4A7297E78BD1884220A0D83B507EB645175A56F0179379636F775772ED84B646BA7'

# Get-PackageParameters returns a hash table array of values
$pp = Get-PackageParameters
# If specifically asked for x64 or arm64, we use that
if ($pp.ContainsKey('x64'))
{
  $url = $url_x64
  $checksum = $checksum_x64
}
elseif ($pp.ContainsKey('arm64'))
{
  $url =  $url_arm64
  $checksum = $checksum_arm64
}
else
{
  # By default, we want the x86 installer
  $url = $url_x86
  $checksum = $checksum_x86
}

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  url           = $url
  checksum      = $checksum
  checksumType  = 'SHA512'
}

Install-ChocolateyZipPackage @packageArgs

# only symlink for func.exe
$files = Get-ChildItem $toolsDir -filter *.exe -Recurse -File
foreach ($file in $files) {
  if (!$file.Name.Equals("func.exe") -or (!($file.DirectoryName -eq $toolsDir) -and
      $file.Name.Equals("func.exe"))) {
    #generate an ignore file
    $ignoreFilePath = Join-Path -Path $file.DirectoryName -ChildPath "$($file.Name).ignore"
    New-Item -Path $ignoreFilePath -Type File -Force | Out-Null
  }
}

try {
  New-Item -type File -Path $toolsDir -Name "telemetryDefaultOn.sentinel" | Out-Null

  # show telemetry information
  ""
  "Telemetry"
  "---------"
  "The Azure Functions Core tools collect usage data in order to help us improve your experience."
  "The data is anonymous and doesn't include any user specific or personal information. The data is collected by Microsoft."
  ""
  "You can opt-out of telemetry by setting the FUNCTIONS_CORE_TOOLS_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell."
  ""
}
catch
{
  # That's ok
}

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.

Add to Builder Version Downloads Last Updated Status
Azure Function Core Tools 4.0.7317 2403 Tuesday, May 27, 2025 Approved
Azure Function Core Tools 4.0.7030 4442 Wednesday, March 26, 2025 Approved
Azure Function Core Tools 4.0.6821 7207 Tuesday, January 14, 2025 Approved
Azure Function Core Tools 4.0.6610 7690 Thursday, November 14, 2024 Approved
Azure Function Core Tools 4.0.6594 841 Monday, November 11, 2024 Approved
Azure Function Core Tools 4.0.6543 1550 Wednesday, October 30, 2024 Approved
Azure Function Core Tools 4.0.6280 6329 Monday, September 9, 2024 Approved
Azure Function Core Tools 4.0.5907 8771 Friday, June 28, 2024 Approved
Azure Function Core Tools 4.0.5858 1227 Thursday, June 20, 2024 Approved
Azure Function Core Tools 4.0.5801 4078 Thursday, May 16, 2024 Approved
Azure Function Core Tools 4.0.5700 1849 Monday, May 6, 2024 Approved
Azure Function Core Tools 4.0.5611 10567 Monday, March 25, 2024 Approved
Azure Function Core Tools 4.0.5571 2608 Monday, March 11, 2024 Approved
Azure Function Core Tools 4.0.5530 4107 Friday, February 16, 2024 Approved
Azure Function Core Tools 4.0.5455 11709 Wednesday, November 8, 2023 Approved
Azure Function Core Tools 4.0.5441 2639 Wednesday, October 25, 2023 Approved
Azure Function Core Tools 4.0.5413 2115 Friday, October 13, 2023 Approved
Azure Function Core Tools 4.0.5390 3004 Wednesday, September 27, 2023 Approved
Azure Function Core Tools 4.0.5382 769 Monday, September 25, 2023 Approved
Azure Function Core Tools 4.0.5348 2581 Monday, September 11, 2023 Approved
Azure Function Core Tools 4.0.5312 1991 Thursday, August 31, 2023 Approved
Azure Function Core Tools 4.0.5274 1771 Monday, August 21, 2023 Approved
Azure Function Core Tools 4.0.5198 11848 Tuesday, May 23, 2023 Approved
Azure Function Core Tools 4.0.5174 514 Friday, May 19, 2023 Approved
Azure Function Core Tools 4.0.5148 2740 Monday, May 1, 2023 Approved
Azure Function Core Tools 4.0.5085 5649 Monday, March 20, 2023 Approved
Azure Function Core Tools 4.0.5030 2317 Thursday, February 23, 2023 Approved
Azure Function Core Tools 4.0.4915 6647 Monday, December 5, 2022 Approved
Azure Function Core Tools 4.0.4895 2175 Wednesday, November 16, 2022 Approved
Azure Function Core Tools 4.0.4865 1082 Monday, November 7, 2022 Approved
Azure Function Core Tools 4.0.4829 3012 Wednesday, October 12, 2022 Approved
Azure Function Core Tools 4.0.4785 1778 Monday, September 19, 2022 Approved
Azure Function Core Tools 4.0.4736 1986 Wednesday, August 17, 2022 Approved
Azure Function Core Tools 4.0.4704 497 Wednesday, August 10, 2022 Approved
Azure Function Core Tools 4.0.4653 1253 Monday, July 18, 2022 Approved
Azure Function Core Tools 4.0.4629 638 Wednesday, July 6, 2022 Approved
Azure Function Core Tools 4.0.4590 1292 Friday, June 10, 2022 Approved
Azure Function Core Tools 4.0.4544 1038 Monday, May 23, 2022 Approved
Azure Function Core Tools 4.0.4483 1852 Friday, April 15, 2022 Approved
Azure Function Core Tools 4.0.4426 586 Tuesday, April 5, 2022 Approved
Azure Function Core Tools 3.0.5682 48 Monday, April 29, 2024 Approved
Azure Function Core Tools 3.0.5542 42 Friday, March 22, 2024 Approved
Azure Function Core Tools 3.0.5373 50 Wednesday, September 27, 2023 Approved
Azure Function Core Tools 3.0.4899 84 Thursday, December 1, 2022 Approved
Azure Function Core Tools 3.0.4868 69 Wednesday, November 2, 2022 Approved
Azure Function Core Tools 3.0.4837 67 Friday, October 21, 2022 Approved
Azure Function Core Tools 3.0.4806 88 Friday, September 30, 2022 Approved
Azure Function Core Tools 3.0.4753 80 Wednesday, August 31, 2022 Exempted
Azure Function Core Tools 3.0.4727 80 Friday, August 12, 2022 Exempted
Azure Function Core Tools 3.0.4669 78 Tuesday, August 9, 2022 Exempted
Azure Function Core Tools 3.0.4626 74 Friday, July 22, 2022 Exempted
Azure Function Core Tools 3.0.4585 84 Thursday, June 2, 2022 Exempted
Azure Function Core Tools 3.0.4502 92 Monday, April 25, 2022 Exempted
Azure Function Core Tools 3.0.4484 88 Thursday, April 14, 2022 Exempted
Azure Function Core Tools 3.0.4425 82 Tuesday, April 5, 2022 Exempted
Azure Function Core Tools 3.0.3442 8236 Friday, April 9, 2021 Approved
Azure Function Core Tools 3.0.3331 1092 Tuesday, March 2, 2021 Approved
Azure Function Core Tools 3.0.3284 745 Thursday, February 11, 2021 Approved
Azure Function Core Tools 2.7.3023 1695 Friday, November 13, 2020 Approved
Azure Function Core Tools 2.7.2936 1172 Thursday, October 1, 2020 Approved
Azure Function Core Tools 2.7.2913 686 Tuesday, September 15, 2020 Approved
Azure Function Core Tools 2.7.2883 508 Thursday, September 3, 2020 Approved
Azure Function Core Tools 2.7.2855 295 Wednesday, September 2, 2020 Approved
Azure Function Core Tools 2.7.2796 802 Thursday, August 13, 2020 Approved
Azure Function Core Tools 2.7.2748 350 Tuesday, August 11, 2020 Approved
Azure Function Core Tools 2.7.2628 2041 Tuesday, June 23, 2020 Approved
Azure Function Core Tools 2.7.2508 2378 Wednesday, May 6, 2020 Approved
Azure Function Core Tools 2.7.2184 3697 Wednesday, February 12, 2020 Approved
Azure Function Core Tools 2.7.2100 675 Tuesday, February 4, 2020 Approved
Azure Function Core Tools 2.7.1948 2534 Tuesday, November 26, 2019 Approved
Azure Function Core Tools 2.7.1846 1523 Saturday, November 2, 2019 Approved
Azure Function Core Tools 2.7.1724 1413 Tuesday, October 15, 2019 Approved
Azure Function Core Tools 2.7.1704 409 Thursday, October 10, 2019 Approved
Azure Function Core Tools 2.7.1633 395 Monday, October 7, 2019 Approved
Azure Function Core Tools 2.7.1585 1650 Friday, September 6, 2019 Approved
Azure Function Core Tools 2.7.1575 1314 Saturday, August 17, 2019 Approved
Azure Function Core Tools 2.7.1558 315 Friday, August 16, 2019 Approved
Azure Function Core Tools 2.7.1505 861 Friday, August 2, 2019 Approved
Azure Function Core Tools 2.7.1480 736 Friday, July 19, 2019 Approved
Azure Function Core Tools 2.7.1468 294 Wednesday, July 17, 2019 Approved
Azure Function Core Tools 2.7.1373 1348 Thursday, June 13, 2019 Approved
Azure Function Core Tools 2.7.1158 1014 Friday, May 10, 2019 Approved
Azure Function Core Tools 2.7.1149 459 Sunday, May 5, 2019 Approved
Azure Function Core Tools 2.6.1080 322 Tuesday, April 30, 2019 Approved
Azure Function Core Tools 2.6.1048 351 Thursday, April 25, 2019 Approved
Azure Function Core Tools 2.5.553 670 Friday, March 29, 2019 Approved
Azure Function Core Tools 2.4.498 281 Wednesday, March 27, 2019 Approved
Azure Function Core Tools 2.4.419 713 Thursday, February 28, 2019 Approved
Azure Function Core Tools 2.4.401 288 Monday, February 25, 2019 Approved
Azure Function Core Tools 2.4.317 647 Thursday, January 31, 2019 Approved
Azure Function Core Tools 2.4.299 292 Tuesday, January 29, 2019 Approved
Azure Function Core Tools 2.4.290 410 Wednesday, January 23, 2019 Approved
Azure Function Core Tools 2.3.199 775 Friday, December 21, 2018 Approved
Azure Function Core Tools 2.3.148 434 Tuesday, December 11, 2018 Approved
Azure Function Core Tools 2.2.70 558 Friday, November 16, 2018 Approved
Azure Function Core Tools 2.2.32 379 Friday, November 9, 2018 Approved
Azure Function Core Tools 2.1.748 489 Tuesday, October 23, 2018 Approved
Azure Function Core Tools 2.1.725 320 Thursday, October 18, 2018 Approved
Azure Function Core Tools 2.0.3 641 Thursday, September 20, 2018 Approved
Azure Function Core Tools 2.0.2 300 Wednesday, September 19, 2018 Approved
Azure Function Core Tools 2.0.1-beta39 306 Monday, September 17, 2018 Approved
Azure Function Core Tools 2.0.1-beta38 367 Thursday, September 6, 2018 Approved
Azure Function Core Tools 2.0.1-beta37 296 Wednesday, September 5, 2018 Approved
Azure Function Core Tools 2.0.1-beta35 426 Thursday, August 16, 2018 Approved
Azure Function Core Tools 2.0.1-beta34 394 Monday, August 6, 2018 Approved
Azure Function Core Tools 2.0.1-beta33 363 Monday, July 23, 2018 Approved
Azure Function Core Tools 2.0.1-beta32 282 Friday, July 20, 2018 Approved
Azure Function Core Tools 2.0.1-beta31 395 Wednesday, June 27, 2018 Approved
Azure Function Core Tools 2.0.1-beta29 315 Friday, June 22, 2018 Approved
Azure Function Core Tools 2.0.1-beta26 480 Tuesday, May 22, 2018 Approved
Azure Function Core Tools 2.0.1-beta25 497 Wednesday, April 4, 2018 Exempted
Azure Function Core Tools 2.0.1-beta24 328 Wednesday, March 28, 2018 Exempted
Azure Function Core Tools 1.0.15 962 Thursday, August 30, 2018 Approved
Azure Function Core Tools 1.0.12 690 Tuesday, May 1, 2018 Approved
Azure Function Core Tools 1.0.11 308 Thursday, April 26, 2018 Approved
Azure Function Core Tools 1.0.9 407 Saturday, March 31, 2018 Approved

This package has no dependencies.

Discussion for the Azure Function Core Tools Package

Ground Rules:

  • This discussion is only about Azure Function Core Tools and the Azure Function Core Tools 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 Azure Function Core Tools, 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.
comments powered by Disqus