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:
390,196
Downloads of v 2.1.1:
584
Last Update:
03 Nov 2016
Package Maintainer(s):
Software Author(s):
Tags:
InfoSec Tools
osquery
This is not the latest version of osquery available.
Downloads:
390,196
Downloads of v 2.1.1:
584
Software Author(s):
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.
osquery 2.1.1
This is not the latest version of osquery available.
All Checks are Passing
2 Passing Test
To install osquery, run the following command from the command line or from PowerShell:
To upgrade osquery, run the following command from the command line or from PowerShell:
To uninstall osquery, 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 osquery --internalize --version=2.1.1 --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 osquery -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 osquery -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 osquery installed
win_chocolatey:
name: osquery
state: present
version: 2.1.1
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 'osquery' do
action :install
version '2.1.1'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: osquery,
Version: 2.1.1,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller osquery
{
Name = 'osquery'
Ensure = 'Present'
Version = '2.1.1'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'osquery':
provider => 'chocolatey',
ensure => '2.1.1',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install osquery version="2.1.1" 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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator gep13 on 07 Nov 2016.
osquery allows you to easily ask questions about your Linux, OSX, and
Windows infrastructure. Whether your goal is intrusion detection,
infrastructure reliability, or compliance, osquery gives you the ability
to empower and inform a broad set of organizations within your company.
function Remove-DenyWriteAcl {
[CmdletBinding(SupportsShouldProcess=$true,ConfirmImpact="Medium")]
param(
[string] $targetDir = ''
)
if($PSCmdlet.ShouldProcess($targetDir)){
$acl = Get-Acl $targetDir
$inheritanceFlag = [System.Security.AccessControl.InheritanceFlags]::ContainerInherit -bor [System.Security.AccessControl.InheritanceFlags]::ObjectInherit
$propagationFlag = [System.Security.AccessControl.PropagationFlags]::None
$permType = [System.Security.AccessControl.AccessControlType]::Deny
$permission = "everyone","write",$inheritanceFlag,$propagationFlag,$permType
$accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule $permission
$acl.RemoveAccessRule($accessRule)
$acl | Set-Acl $targetDir
}
}
$progData = [System.Environment]::GetEnvironmentVariable('ProgramData')
$targetFolder = Join-Path $progData "osquery"
$daemonFolder = Join-Path $targetFolder "osqueryd"
# Before we install, we check to see if the package is already installed
# as we need to remove the DenyWrite ACLs required by osqueryd, along with
# stopping the service.
if ((Get-Service "osqueryd" -ErrorAction SilentlyContinue) -and (Get-Service "osqueryd").Status -eq 'Running') {
Stop-Service osqueryd
Set-Service osqueryd -startuptype "manual"
Get-CimInstance -ClassName Win32_Service -Filter "Name='osqueryd'" | Invoke-CimMethod -methodName Delete
}
if (Test-Path $daemonFolder) {
Remove-DenyWriteAcl $daemonFolder
}
function Set-DenyWriteAcl {
[CmdletBinding(SupportsShouldProcess=$true,ConfirmImpact="Medium")]
param(
[string] $targetDir = ''
)
if($PSCmdlet.ShouldProcess($targetDir)){
$acl = Get-Acl $targetDir
$inheritanceFlag = [System.Security.AccessControl.InheritanceFlags]::ContainerInherit -bor [System.Security.AccessControl.InheritanceFlags]::ObjectInherit
$propagationFlag = [System.Security.AccessControl.PropagationFlags]::None
$permType = [System.Security.AccessControl.AccessControlType]::Deny
$permission = "everyone","write",$inheritanceFlag,$propagationFlag,$permType
$accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule $permission
$acl.SetAccessRule($accessRule)
$acl | Set-Acl $targetDir
}
}
$packageName = 'osquery'
$url = 'https://osquery-packages.s3.amazonaws.com/choco/osquery-2.1.1.zip'
$progData = [System.Environment]::GetEnvironmentVariable('ProgramData')
$targetFolder = Join-Path $progData "osquery"
$daemonFolder = Join-Path $targetFolder "osqueryd"
$packageArgs = @{
packageName = $packageName
url = $url
unzipLocation = $targetFolder
checkSum = 'BD95ECE4EC3C4E418275AB6B9DED61DD'
checksumType = 'md5'
}
New-Item -Force -Type directory -Path $daemonFolder
Install-ChocolateyZipPackage @packageArgs
# In order to run osqueryd as a service, we need to have a folder that has a
# Deny Write ACL to everyone.
$targetDaemonBin = Join-Path $targetFolder "osqueryd.exe"
$destDaemonBin = Join-Path $daemonFolder "osqueryd.exe"
Move-Item -Force -Path $targetDaemonBin -Destination $destDaemonBin
Set-DenyWriteAcl $daemonFolder
# Add the osquery dir to the system path, to leverage osqueryi.exe
$oldPath = [System.Environment]::GetEnvironmentVariable('Path', 'Machine')
[System.Environment]::SetEnvironmentVariable('Path', "$oldPath;$targetFolder", 'Machine')
if (Test-Path $targetFolder) {
Write-Output "osquery was successfully installed to $targetFolder."
} else {
Write-Output 'There was an error installing osquery.'
}
$progData = [System.Environment]::GetEnvironmentVariable('ProgramData')
$targetFolder = Join-Path $progData "osquery"
# Remove the osquery path from the System PATH variable. Note: Here
# we don't make use of our local vars, as Regex requires escaping the '\'
$oldPath = [System.Environment]::GetEnvironmentVariable('Path', 'Machine')
$newPath = $oldPath -replace ";C:\\ProgramData\\osquery",$NULL
[System.Environment]::SetEnvironmentVariable('Path', $newPath, 'Machine')
if (Test-Path $targetFolder) {
Remove-Item -Force -Recurse $targetFolder
if(Test-Path $targetFolder) {
Write-Output 'osquery uninstallation was unsuccessful.'
} else {
Write-Output 'osquery was uninstalled successfully.'
}
} else {
Write-Output 'osquery was not found on the system. Nothing to do.'
}
Log in or click on link to see number of positives.
- osquery.2.1.1.nupkg (cfaef7a25c00) - ## / 56
- osqueryd.exe (f266c33b6872) - ## / 57
- osqueryi.exe (813412ab7ac2) - ## / 57
- osquery-2.1.1.zip (32c91f871fd8) - ## / 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 |
---|---|---|---|
osquery 4.5.1 | 12840 | Monday, November 9, 2020 | Approved |
osquery 4.5.0 | 10081 | Thursday, October 1, 2020 | Approved |
osquery 4.4.0 | 12890 | Friday, July 31, 2020 | Approved |
osquery 4.3.0 | 20834 | Saturday, May 9, 2020 | Approved |
osquery 4.2.0 | 28928 | Tuesday, February 25, 2020 | Approved |
osquery 4.0.2 | 58328 | Friday, September 13, 2019 | Approved |
osquery 4.0.1 | 492 | Wednesday, September 11, 2019 | Approved |
osquery 3.4.0 | 9514 | Thursday, May 23, 2019 | Approved |
osquery 3.3.2 | 31574 | Monday, January 28, 2019 | Approved |
osquery 3.3.1 | 43551 | Tuesday, October 2, 2018 | Approved |
osquery 3.3.0 | 3170 | Monday, August 20, 2018 | Approved |
osquery 3.2.9 | 74676 | Monday, July 2, 2018 | Approved |
osquery 3.2.6 | 52723 | Monday, July 2, 2018 | Approved |
osquery 3.2.4 | 3011 | Friday, May 4, 2018 | Approved |
osquery 2.11.2 | 5626 | Monday, February 5, 2018 | Approved |
osquery 2.11.0 | 1955 | Friday, January 12, 2018 | Approved |
osquery 2.10.4 | 1763 | Sunday, December 3, 2017 | Approved |
osquery 2.10.2 | 956 | Thursday, November 16, 2017 | Approved |
osquery 2.9.0 | 2393 | Friday, October 20, 2017 | Approved |
osquery 2.8.0 | 1243 | Wednesday, September 27, 2017 | Approved |
osquery 2.7.0 | 1372 | Wednesday, August 23, 2017 | Approved |
osquery 2.6.1 | 816 | Sunday, August 6, 2017 | Approved |
osquery 2.6.0 | 531 | Friday, July 28, 2017 | Approved |
osquery 2.5.0 | 4548 | Tuesday, June 20, 2017 | Approved |
osquery 2.4.2 | 1343 | Tuesday, May 9, 2017 | Approved |
osquery 2.4.0 | 744 | Saturday, April 15, 2017 | Approved |
osquery 2.3.2 | 1440 | Thursday, February 16, 2017 | Approved |
osquery 2.2.1 | 733 | Thursday, December 22, 2016 | Approved |
osquery 2.2.1-gd6630be | 350 | Tuesday, December 27, 2016 | Exempted |
osquery 2.2.0 | 394 | Tuesday, December 13, 2016 | Approved |
osquery 2.1.1 | 584 | Thursday, November 3, 2016 | Approved |
osquery 2.0.0 | 632 | Tuesday, October 11, 2016 | Approved |
Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
This package has no dependencies.
Ground Rules:
- This discussion is only about osquery and the osquery 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 osquery, 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.