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...
-
STEP1
Package Review
-
STEP2
Integration Method
-
STEP3
Internal Repo Url
-
STEP4
Environment Setup
-
STEP5
Install Script
Step 1: Review Your Packages
Step 2: Choose Your Integration Method
Step 3: Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
Step 3: Copy Your Script or Download Config
Option 1: Copy Script
Option 2: Download Config
Step 4: Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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 packages and push them to a repository
Download Packages
-
Open Source
-
Download the packages:
Download Packages - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
-
For package and dependencies run:
- Automate package internalization
-
Run: (additional options)
Step 5: Copy Your Script
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:
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### We initialize a few things that are needed by this script - there are no other requirements.
$ErrorActionPreference = "Stop"
#### Set TLS 1.2 (3072) as that is the minimum required by various up-to-date repositories.
#### Use integers because the enumeration value for TLS 1.2 won't exist
#### in .NET 4.0, even though they are addressable if .NET 4.5+ is
#### installed (.NET 4.5 is an in-place upgrade).
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
#### We use this variable for future REST calls.
$RequestArguments = @{
UseBasicParsing = $true
}
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# )
# $RequestArguments.Credential = $NugetRepositoryCredential
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it
$ChocolateyDownloadUrl = "$($NugetRepositoryUrl.TrimEnd('/'))/package/chocolatey.1.1.0.nupkg"
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
#### Download the Nupkg, appending .zip to the filename to handle archive cmdlet limitations
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
$TempDirectory = Join-Path $env:Temp "chocolateyInstall"
if (-not (Test-Path $TempDirectory -PathType Container)) {
$null = New-Item -Path $TempDirectory -ItemType Directory
}
$DownloadedNupkg = Join-Path $TempDirectory "$(Split-Path $ChocolateyDownloadUrl -Leaf).zip"
Invoke-WebRequest -Uri $ChocolateyDownloadUrl -OutFile $DownloadedNupkg @RequestArguments
#### Extract the Nupkg, and run the chocolateyInstall script
if (Get-Command Microsoft.PowerShell.Archive\Expand-Archive -ErrorAction SilentlyContinue) {
Microsoft.PowerShell.Archive\Expand-Archive -Path $DownloadedNupkg -DestinationPath $TempDirectory -Force
} else {
# PowerShell versions <4.0 do not have this function available
try {
$shellApplication = New-Object -ComObject Shell.Application
$zipPackage = $shellApplication.NameSpace($DownloadedNupkg)
$destinationFolder = $shellApplication.NameSpace($TempDirectory)
$destinationFolder.CopyHere($zipPackage.Items(), 0x10)
} catch {
Write-Warning "Unable to unzip package using built-in compression."
throw $_
}
}
& $(Join-Path $TempDirectory "tools\chocolateyInstall.ps1")
}
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
refreshenv
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# choco feature enable -n useFipsCompliantChecksums
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
choco config set --name cacheLocation --value C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
choco config set --name commandExecutionTimeoutSeconds --value 14400
#### Turn off download progress when running choco through integrations
choco feature disable --name showDownloadProgress
### c. Sources ###
#### Remove the default community package repository source
choco source list --limitoutput | ConvertFrom-Csv -Header 'Name', 'Location' -Delimiter '|' | ForEach-Object {
if ($_.Location -eq 'https://community.chocolatey.org/api/v2/') {
choco source remove -n $_.Name
}
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
if ($NugetRepositoryCredential) {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --user $NugetRepositoryCredential.UserName --password $NugetRepositoryCredential.GetNetworkCredential().Password --priority 1
} else {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --priority 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
choco upgrade chocolatey --confirm
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
choco install chocolatey-license --source $NugetRepositoryUrl --confirm
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco source disable --name chocolatey.licensed
} else {
Write-Warning "Not disabling 'chocolatey.licensed' feed, as Chocolatey-License has not been installed."
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco install chocolatey.extension --source $NugetRepositoryUrl --confirm
} else {
Write-Warning "Not installing 'chocolatey.extension', as Chocolatey-License has not been installed."
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
choco feature disable --name showNonElevatedWarnings
choco feature enable --name useBackgroundService
choco feature enable --name useBackgroundServiceWithNonAdministratorsOnly
choco feature enable --name allowBackgroundServiceUninstallsFromUserInstallsOnly
choco config set --name allowedBackgroundServiceCommands --value "install,upgrade,uninstall"
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
choco install chocolatey-agent --source $NugetRepositoryUrl --confirm
choco config set --name CentralManagementServiceUrl --value $ChocolateyCentralManagementUrl
if ($ChocolateyCentralManagementClientSalt) {
choco config set --name centralManagementClientCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementClientSalt
}
if ($ChocolateyCentralManagementServiceSalt) {
choco config set --name centralManagementServiceCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementServiceSalt
}
choco feature enable --name useChocolateyCentralManagement
choco feature enable --name useChocolateyCentralManagementDeployments
}
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. chocolatey.chocolatey
##### You will require the chocolatey.chocolatey collection to be installed
##### on all machines using this playbook.
##### Please see https://github.com/chocolatey/chocolatey-ansible/#installing-the-collection-from-ansible-galaxy
- name: Install and Configure Chocolatey
hosts: all
## 2. TOP LEVEL VARIABLES ##
vars:
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
nuget_repository_url: INTERNAL REPO URL
### b. Internal Repository Credential ###
#### If required, add the repository access credential here and
#### uncomment lines with source_username and source_password below
# nuget_repository_username: username
# nuget_repository_password: password
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# chocolatey_central_management_url: https://chocolatey-central-management:24020/ChocolateyManagementService
#### ii. If using a Client Salt, add it here
# chocolatey_central_management_client_salt: clientsalt
#### iii. If using a Service Salt, add it here
# chocolatey_central_management_service_salt: servicesalt
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
tasks:
- name: Install chocolatey
win_chocolatey:
name: chocolatey
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# - name: Enable FIPS compliance
# win_chocolatey_feature:
# name: useFipsCompliantChecksums
# state: enabled
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
- name: Set the cache location
win_chocolatey_config:
name: cacheLocation
state: present
value: C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
- name: Set the command execution timeout
win_chocolatey_config:
name: commandExecutionTimeoutSeconds
state: present
value: 14400
#### Turn off download progress when running choco through integrations
- name: Disable showing download progress
win_chocolatey_feature:
name: showDownloadProgress
state: disabled
### c. Sources ###
#### Remove the default community package repository source
- name: Remove Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey
state: absent
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
- name: Add Internal Repository
win_chocolatey_source:
name: ChocolateyInternal
state: present
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
priority: 1
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
- name: Upgrade Chocolatey
win_chocolatey:
name: chocolatey
state: latest
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
- name: Install Chocolatey License
win_chocolatey:
name: chocolatey-license
source: ChocolateyInternal
state: latest
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
- name: Disable Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey.licensed
state: disabled
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
- name: Install Chocolatey Extension
win_chocolatey:
name: chocolatey.extension
source: ChocolateyInternal
state: latest
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
- name: Hide not-elevated warnings
win_chocolatey_feature:
name: showNonElevatedWarnings
state: disabled
- name: Use background mode for self-service
win_chocolatey_feature:
name: useBackgroundService
state: enabled
- name: Use background service for non-admins
win_chocolatey_feature:
name: useBackgroundServiceWithNonAdministratorsOnly
state: enabled
- name: Allow background uninstallation for user installs
win_chocolatey_feature:
name: allowBackgroundServiceUninstallsFromUserInstallsOnly
state: enabled
- name: Set allowed background service commands
win_chocolatey_config:
name: backgroundServiceAllowedCommands
state: present
value: install,upgrade,uninstall
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
- name: Install Chocolatey Agent
when: chocolatey_central_management_url is defined
win_chocolatey:
name: chocolatey-agent
source: ChocolateyInternal
state: latest
- name: Set the Central Management Service URL
when: chocolatey_central_management_url is defined
win_chocolatey_config:
name: CentralManagementServiceUrl
state: present
value: {{ chocolatey_central_management_url }}
- name: Set the Central Management Client Salt
when: chocolatey_central_management_client_salt is defined
win_chocolatey_config:
name: centralManagementClientCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_client_salt }}
- name: Set the Central Management Service Salt
when: chocolatey_central_management_service_salt is defined
win_chocolatey_config:
name: centralManagementServiceCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_service_salt }}
- name: Use Central Management
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagement
state: enabled
- name: Use Central Management Deployments
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagementDeployments
state: enabled
See docs at https://docs.chef.io/resource_chocolatey_package.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### The Chocolatey resources are available with any recent version of Chef.
#### We utilise the Chocolatey recipe to install the Chocolatey binaries.
include_recipe "chocolatey"
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# NugetRepositoryUsername = "username"
# NugetRepositoryPassword = "password"
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
node['chocolatey']['install vars'] = {
'chocolateyDownloadUrl' => "#{ChocolateyNupkgUrl}",
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# chocolatey_feature 'useFipsCompliantChecksums' do
# action :enable
# end
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolatey_config 'cacheLocation' do
value 'C:\ProgramData\chocolatey\cache'
end
#### Increase timeout to at least 4 hours
chocolatey_config 'commandExecutionTimeoutSeconds' do
value '14400'
end
#### Turn off download progress when running choco through integrations
chocolatey_feature 'showDownloadProgress' do
action :disable
end
### c. Sources ###
#### Remove the default community package repository source
chocolatey_source 'chocolatey' do
action :remove
end
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
chocolatey_source 'ChocolateyInternal' do
source "#{NugetRepositoryUrl}"
priority 1
action :add
end
execute 'ChocolateyInternal' do
command "choco source add --name ChocolateyInternal -s #{NugetRepositoryUrl} -u=#{NugetRepositoryUsername} -p=#{NugetRepositoryPassword} --priority=1"
only_if { NugetRepositoryUsername != nil || NugetRepositoryPassword != nil }
end
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
chocolatey_package 'chocolatey' do
action :upgrade
source "#{NugetRepositoryUrl}"
end
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
chocolatey_package 'chocolatey-license' do
action :install
source "#{NugetRepositoryUrl}"
end
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
chocolatey_source 'chocolatey.licensed' do
action :disable
end
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
chocolatey_package 'chocolatey.extention' do
action install
source "#{NugetRepositoryUrl}"
end
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolatey_feature 'showNonElevatedWarnings' do
action :disable
end
chocolatey_feature 'useBackgroundService' do
action :enable
end
chocolatey_feature 'useBackgroundServiceWithNonAdministratorsOnly' do
action :enable
end
chocolatey_feature 'allowBackgroundServiceUninstallsFromUserInstallsOnly' do
action :enable
end
chocolatey_config 'backgroundServiceAllowedCommands' do
value 'install,upgrade,uninstall'
end
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
chocolatey_package 'chocolatey-agent' do
action install
source "#{NugetRepositoryUrl}"
# user "#{NugetRepositoryUsername}"
# password "#{NugetRepositoryPassword}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'CentralManagementServiceUrl' do
value "#{ChocolateyCentralManagementUrl}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'centralManagementClientCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementClientSalt}"
only_if { ChocolateyCentralManagementClientSalt != nil }
end
chocolatey_config 'centralManagementServiceCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementServiceSalt}"
only_if { ChocolateyCentralManagementServiceSalt != nil }
end
chocolatey_feature 'useChocolateyCentralManagement' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_feature 'useChocolateyCentralManagementDeployments' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
If Applicable - Chocolatey Configuration/Installation
#requires -Modules cChoco
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires chocolatey\cChoco DSC module to be installed on the machine compiling the DSC manifest
#### NOTE: This will need to be installed before running the DSC portion of this script
if (-not (Get-Module cChoco -ListAvailable)) {
$null = Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
if (($PSGallery = Get-PSRepository -Name PSGallery).InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
}
Install-Module -Name cChoco
if ($PSGallery.InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy $PSGallery.InstallationPolicy
}
}
#### ii. Requires a hosted copy of the install.ps1 script
##### This should be available to download without authentication.
##### The original script can be found here: https://community.chocolatey.org/install.ps1
Configuration ChocolateyConfig {
## 2. TOP LEVEL VARIABLES ##
param(
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL",
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### c. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# ),
### d. Install.ps1 URL
#### The path to the hosted install script:
$ChocolateyInstallPs1Url = "https://community.chocolatey.org/install.ps1"
### e. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService",
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt",
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Import-DscResource -ModuleName cChoco
Node 'localhost' {
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
Environment chocoDownloadUrl {
Name = "chocolateyDownloadUrl"
Value = $ChocolateyNupkgUrl
}
cChocoInstaller installChocolatey {
DependsOn = "[Environment]chocoDownloadUrl"
InstallDir = Join-Path $env:ProgramData "chocolatey"
ChocoInstallScriptUrl = $ChocolateyInstallPs1Url
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# cChocoFeature featureFipsCompliance {
# FeatureName = "useFipsCompliantChecksums"
# }
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
cChocoConfig cacheLocation {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "cacheLocation"
Value = "C:\ProgramData\chocolatey\cache"
}
#### Increase timeout to at least 4 hours
cChocoConfig commandExecutionTimeoutSeconds {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "commandExecutionTimeoutSeconds"
Value = 14400
}
#### Turn off download progress when running choco through integrations
cChocoFeature showDownloadProgress {
DependsOn = "[cChocoInstaller]installChocolatey"
FeatureName = "showDownloadProgress"
Ensure = "Absent"
}
### c. Sources ###
#### Remove the default community package repository source
cChocoSource removeCommunityRepository {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "chocolatey"
Ensure = "Absent"
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here.
#### NOTE: This EXAMPLE may require changes
cChocoSource addInternalSource {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "ChocolateyInternal"
Source = $NugetRepositoryUrl
Credentials = $NugetRepositoryCredential
Priority = 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
cChocoPackageInstaller updateChocolatey {
DependsOn = "[cChocoSource]addInternalSource", "[cChocoSource]removeCommunityRepository"
Name = "chocolatey"
AutoUpgrade = $true
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
cChocoPackageInstaller chocolateyLicense {
DependsOn = "[cChocoPackageInstaller]updateChocolatey"
Name = "chocolatey-license"
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
Script disableLicensedSource {
DependsOn = "[cChocoPackageInstaller]chocolateyLicense"
GetScript = {
$Source = choco source list --limitoutput | `
ConvertFrom-Csv -Delimiter '|' -Header Name, Source, Disabled | `
Where-Object Name -eq "chocolatey.licensed"
return @{
Result = if ($Source) {
[bool]::Parse($Source.Disabled)
} else {
Write-Warning "Source 'chocolatey.licensed' was not present."
$true # Source does not need disabling
}
}
}
SetScript = {
$null = choco source disable --name "chocolatey.licensed"
}
TestScript = {
$State = [ScriptBlock]::Create($GetScript).Invoke()
return $State.Result
}
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
cChocoPackageInstaller chocolateyLicensedExtension {
DependsOn = "[Script]disableLicensedSource"
Name = "chocolatey.extension"
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
cChocoFeature hideElevatedWarnings {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "showNonElevatedWarnings"
Ensure = "Absent"
}
cChocoFeature useBackgroundService {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundService"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceWithNonAdmins {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundServiceWithNonAdministratorsOnly"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceUninstallsForUserInstalls {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "allowBackgroundServiceUninstallsFromUserInstallsOnly"
Ensure = "Present"
}
cChocoConfig allowedBackgroundServiceCommands {
DependsOn = "[cChocoFeature]useBackgroundService"
ConfigName = "backgroundServiceAllowedCommands"
Value = "install,upgrade,uninstall"
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
cChocoPackageInstaller chocolateyAgent {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
Name = "chocolatey-agent"
}
cChocoConfig centralManagementServiceUrl {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "CentralManagementServiceUrl"
Value = $ChocolateyCentralManagementUrl
}
if ($ChocolateyCentralManagementClientSalt) {
cChocoConfig centralManagementClientSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementClientCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementClientSalt
}
}
if ($ChocolateyCentralManagementServiceSalt) {
cChocoConfig centralManagementServiceSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementServiceCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementServiceSalt
}
}
cChocoFeature useCentralManagement {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagement"
Ensure = "Present"
}
cChocoFeature useCentralManagementDeployments {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagementDeployments"
Ensure = "Present"
}
}
}
}
# If working this into an existing configuration with a good method for
$ConfigData = @{
AllNodes = @(
@{
NodeName = "localhost"
PSDscAllowPlainTextPassword = $true
}
)
}
try {
Push-Location $env:Temp
$Config = ChocolateyConfig -ConfigurationData $ConfigData
Start-DscConfiguration -Path $Config.PSParentPath -Wait -Verbose -Force
} finally {
Pop-Location
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires puppetlabs/chocolatey module
#### See https://forge.puppet.com/puppetlabs/chocolatey
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$_repository_url = 'INTERNAL REPO URL'
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$_choco_download_url = 'INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg'
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $_chocolatey_central_management_url = 'https://chocolatey-central-management:24020/ChocolateyManagementService'
#### ii. If using a Client Salt, add it here
# $_chocolatey_central_management_client_salt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $_chocolatey_central_management_service_salt = 'servicesalt'
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
### Note: `chocolatey_download_url is completely different than normal
### source locations. This is directly to the bare download url for the
### chocolatey.nupkg, similar to what you see when you browse to
### https://community.chocolatey.org/api/v2/package/chocolatey
class {'chocolatey':
chocolatey_download_url => $_choco_download_url,
use_7zip => false,
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
#chocolateyfeature {'useFipsCompliantChecksums':
# ensure => enabled,
#}
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolateyconfig {'cacheLocation':
value => 'C:\ProgramData\chocolatey\cache',
}
#### Increase timeout to at least 4 hours
chocolateyconfig {'commandExecutionTimeoutSeconds':
value => '14400',
}
#### Turn off download progress when running choco through integrations
chocolateyfeature {'showDownloadProgress':
ensure => disabled,
}
### c. Sources ###
#### Remove the default community package repository source
chocolateysource {'chocolatey':
ensure => absent,
location => 'https://community.chocolatey.org/api/v2/',
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE requires changes
chocolateysource {'internal_chocolatey':
ensure => present,
location => $_repository_url,
priority => 1,
username => 'optional',
password => 'optional,not ensured',
bypass_proxy => true,
admin_only => false,
allow_self_service => false,
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
package {'chocolatey':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-4-create-a-package-for-the-license
# TODO: Add resource for installing/ensuring the chocolatey-license package
package {'chocolatey-license':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
## Disabled sources still need all other attributes until
## https://tickets.puppetlabs.com/browse/MODULES-4449 is resolved.
## Password is necessary with user, but not ensurable, so it should not
## matter what it is set to here. If you ever do get into trouble here,
## the password is your license GUID.
chocolateysource {'chocolatey.licensed':
ensure => disabled,
priority => '10',
user => 'customer',
password => '1234',
require => Package['chocolatey-license'],
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
package {'chocolatey.extension':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolateyfeature {'showNonElevatedWarnings':
ensure => disabled,
}
chocolateyfeature {'useBackgroundService':
ensure => enabled,
}
chocolateyfeature {'useBackgroundServiceWithNonAdministratorsOnly':
ensure => enabled,
}
chocolateyfeature {'allowBackgroundServiceUninstallsFromUserInstallsOnly':
ensure => enabled,
}
chocolateyconfig {'backgroundServiceAllowedCommands':
value => 'install,upgrade,uninstall',
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if $_chocolatey_central_management_url {
package {'chocolatey-agent':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
chocolateyconfig {'CentralManagementServiceUrl':
value => $_chocolatey_central_management_url,
}
if $_chocolatey_central_management_client_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
if $_chocolatey_central_management_service_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
chocolateyfeature {'useChocolateyCentralManagement':
ensure => enabled,
require => Package['chocolatey-agent'],
}
chocolateyfeature {'useChocolateyCentralManagementDeployments':
ensure => enabled,
require => Package['chocolatey-agent'],
}
}
Need Help? View our docs or file an issue.
There is already a version of this package in your Script Builder
Current Version | New Version |
---|---|
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
114,792
Downloads of v 1.0.141:
1,045
Last Update:
11 Mar 2021
Package Maintainer(s):
Software Author(s):
- Chrissy LeMaire
Tags:
admin powershell module template dba sqlserver sql tools database- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

dbatools (PowerShell Module)
This is not the latest version of dbatools (PowerShell Module) available.
- 1
- 2
- 3
1.0.141 | Updated: 11 Mar 2021
- Software Specific:
- Software Site
- Software Source
- 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:
114,792
Downloads of v 1.0.141:
1,045
Maintainer(s):
Software Author(s):
- Chrissy LeMaire
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.
- 1
- 2
- 3
dbatools (PowerShell Module)
1.0.141
This is not the latest version of dbatools (PowerShell Module) available.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install dbatools (PowerShell Module), run the following command from the command line or from PowerShell:
To upgrade dbatools (PowerShell Module), run the following command from the command line or from PowerShell:
To uninstall dbatools (PowerShell Module), 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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download dbatools --internalize --version=1.0.141 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade dbatools -y --source="'INTERNAL REPO URL'" --version="'1.0.141'" [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 dbatools -y --source="'INTERNAL REPO URL'" --version="'1.0.141'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install dbatools
win_chocolatey:
name: dbatools
version: '1.0.141'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'dbatools' do
action :install
source 'INTERNAL REPO URL'
version '1.0.141'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller dbatools
{
Name = "dbatools"
Version = "1.0.141"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'dbatools':
ensure => '1.0.141',
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.
There are versions of this package awaiting moderation . See the Version History section below.
This package was approved as a trusted package on 11 Mar 2021.
dbatools is sort of like a command-line SQL Server Management Studio. The project initially started out as Start-SqlMigration.ps1, but has now grown into a collection of over 300 commands that help automate SQL Server tasks and encourage best practices.
NOTE: This module requires a minimum of PowerShell v3.
NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.
$ErrorActionPreference = 'Stop'
$moduleName = 'dbatools' # this could be different from package name
$module = Get-Module -Name $moduleName
if ($module) {
Write-Verbose "Module '$moduleName' is imported into the session. Removing it."
Remove-Module -Name $moduleName -Force -ErrorAction SilentlyContinue
if ($lib = [appdomain]::CurrentDomain.GetAssemblies() | Where-Object FullName -like "dbatools, *") {
Write-Verbose "Found locked DLL files for module '$moduleName'."
$moduleDir = Split-Path $module.Path -Parent
if ($lib.Location -like "$moduleDir\*") {
Write-Warning @"
We have detected dbatools to be already imported from '$moduleDir' and the dll files have been locked and cannot be updated.
Please close all consoles that have dbatools imported (Remove-Module dbatools is NOT enough).
"@
throw
}
}
}
$ErrorActionPreference = 'Stop'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$moduleName = 'dbatools' # this may be different from the package name and different case
if ($PSVersionTable.PSVersion.Major -lt 3) {
throw "$moduleName) module requires a minimum of PowerShell v3."
}
# module may already be installed outside of Chocolatey
Remove-Module -Name $moduleName -Force -ErrorAction SilentlyContinue
$sourcePath = Join-Path -Path $toolsDir -ChildPath "$modulename.zip"
$destPath = Join-Path -Path $env:ProgramFiles -ChildPath "WindowsPowerShell\Modules\$moduleName"
if ($PSVersionTable.PSVersion.Major -ge 5)
{
$destPath = Join-Path -Path $destPath -ChildPath $env:ChocolateyPackageVersion
}
Write-Verbose "Creating destination directory '$destPath' for module."
New-Item -Path $destPath -ItemType Directory -Force -ErrorAction SilentlyContinue | Out-Null
Write-Verbose "Extracting '$moduleName' files from '$sourcePath' to '$destPath'."
Get-ChocolateyUnzip -FileFullPath $sourcePath -Destination $destPath
if ($PSVersionTable.PSVersion.Major -lt 4)
{
$modulePaths = [Environment]::GetEnvironmentVariable('PSModulePath', 'Machine') -split ';'
if ($modulePaths -notcontains $destPath)
{
Write-Verbose "Adding '$destPath' to PSModulePath."
$newModulePath = @($destPath, $modulePaths) -join ';'
[Environment]::SetEnvironmentVariable('PSModulePath', $newModulePath, 'Machine')
$env:PSModulePath = $newModulePath
}
}
$ErrorActionPreference = 'Stop'
$moduleName = 'dbatools'
$sourcePath = Join-Path -Path $env:ProgramFiles -ChildPath "WindowsPowerShell\Modules\$moduleName"
Write-Verbose "Removing all version of '$moduleName' from '$sourcePath'."
Remove-Item -Path $sourcePath -Recurse -Force -ErrorAction SilentlyContinue
if ($PSVersionTable.PSVersion.Major -lt 4) {
$modulePaths = [Environment]::GetEnvironmentVariable('PSModulePath', 'Machine') -split ';'
Write-Verbose "Removing '$sourcePath' from PSModulePath."
$newModulePath = $modulePaths | Where-Object { $_ -ne $sourcePath }
[Environment]::SetEnvironmentVariable('PSModulePath', $newModulePath, 'Machine')
$env:PSModulePath = $newModulePath
}
md5: 68B540807BB988D8BD50291C844DBC41 | sha1: 1B17513F79328B5B4FC79A7D95AB78D5DBEC7548 | sha256: 5445EDA842A424470F7639CF38581BE4D832D73F32B8A5DF76F8BFEFFC311F7B | sha512: 0BC14E5F6F0548F4E71CCC8AAF89511CCAB2F29CDC3AA07966145043881511760E5DDD97ADD6E893144CE14E97D3E8E323E2BD03DE410826C0D5D58080F384E3
From: https://raw.githubusercontent.com/sqlcollaborative/dbatools/master/LICENSE
LICENSE
MIT License
Copyright (c) 2018 Chrissy LeMaire
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy.
To verify the files using the project source:
1. Please go to the project source location (https://github.com/sqlcollaborative/dbatools) and download the source files;
2. Build the source to create the binary files to verify;
3. Use Get-FileHash -Path <FILE TO VERIFY> to get the file hash value from both the built file (from step 1 above) and the file from the dbatools.zip within the package and compare them;
Alternatively you can download the module from the PowerShell Gallery ...
Save-Module -Name dbatools -Path <PATH TO DOWNLOAD TO>
... and compare the files from the package against those in the installed module. Again use Get-FileHash -Path <FILE TO VERIFY> to retrieve those hash values.
Log in or click on link to see number of positives.
- Microsoft.IdentityModel.Clients.ActiveDirectory.dll (7405912bd18c) - ## / 68
- Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll (7baa1546633d) - ## / 68
- bcp.exe (d59d296e846c) - ## / 67
- Microsoft.SqlServer.Replication.dll (10f625817467) - ## / 68
- Microsoft.SqlServer.Rmo.dll (c16be1791f42) - ## / 69
- Microsoft.SqlServer.XEvent.Linq.dll (df1eba2d957e) - ## / 69
- SQLCMD.EXE (eb9153a1b0ee) - ## / 70
- LumenWorks.Framework.IO.dll (8b86914d5046) - ## / 68
- Microsoft.Data.Tools.Schema.Sql.dll (1bd2bcac522c) - ## / 67
- Microsoft.Data.Tools.Utilities.dll (69c4506e42ea) - ## / 68
- Microsoft.SqlServer.Dac.dll (19424a535bd8) - ## / 66
- Microsoft.SqlServer.Dac.Extensions.dll (106604d0fe26) - ## / 62
- Microsoft.SqlServer.TransactSql.ScriptDom.dll (2c8359841ef3) - ## / 69
- Microsoft.SqlServer.Types.dll (e8fc85f664e3) - ## / 69
- System.Security.SecureString.dll (8db04a3ac036) - ## / 68
- Bogus.dll (ea6693548eb2) - ## / 68
- Microsoft.Build.Framework.dll (c37b3d02c22f) - ## / 68
- Microsoft.Azure.KeyVault.dll (26325ecfa138) - ## / 68
- Microsoft.Azure.KeyVault.WebKey.dll (2cdb13724b64) - ## / 69
- Microsoft.Rest.ClientRuntime.Azure.dll (0696ca20c08f) - ## / 69
- Microsoft.Rest.ClientRuntime.dll (742e44b31690) - ## / 68
- Microsoft.Data.Tools.Sql.BatchParser.dll (9fe9c2d98227) - ## / 71
- Microsoft.SqlServer.BatchParser.dll (ffca8dc9b2b8) - ## / 67
- Microsoft.SqlServer.BatchParserClient.dll (9bc107ca828e) - ## / 64
- Microsoft.SqlServer.Diagnostics.Strace.dll (7db6473eae65) - ## / 69
- Microsoft.SqlServer.Management.Dmf.dll (a0ebb781b4b8) - ## / 68
- Microsoft.SqlServer.SqlTDiagm.dll (62938fe0017f) - ## / 66
- Microsoft.SqlServer.SString.dll (a001c53256d3) - ## / 65
- Microsoft.SqlServer.XE.Core.dll (e358adc5830c) - ## / 70
- System.Composition.AttributedModel.dll (72b0e41403c1) - ## / 68
- System.Composition.Convention.dll (d687b7f5a5cf) - ## / 63
- System.Composition.TypedParts.dll (fe3635bff3ac) - ## / 67
- msvcp120.dll (e299b35d1e3b) - ## / 68
- msvcr120.dll (0d00bf1756a9) - ## / 68
- dbatools.dll (32c843a34ef1) - ## / 71
- dbatools.dll (e105f511eb95) - ## / 66
- dbatools.dll (fe3a24ba4337) - ## / 71
- sqlpackage.exe (dd09b800962c) - ## / 69
- DataSec.Common.dll (cc989f1e41ac) - ## / 71
- DataSec.PAL.Interfaces.dll (cf485efa9756) - ## / 71
- DataSec.PAL.Local.dll (237baf7b0572) - ## / 72
- DataSec.PAL.Local.Storage.dll (cbb6cfaf36df) - ## / 71
- DataSec.VA.Common.Imp.dll (e7d5c2f4a9fa) - ## / 70
- DataSec.VA.Core.Baseline.dll (7f2313da619b) - ## / 72
- DataSec.VA.Core.Contract.dll (6dc0d197d3c2) - ## / 70
- DataSec.VA.Core.Engine.dll (e8adf7b92205) - ## / 71
- DataSec.VA.Core.Exporter.dll (6b740d3bb77c) - ## / 64
- DataSec.VA.Core.Model.Converter.dll (872cd3d69e4e) - ## / 70
- DataSec.VA.Core.Model.dll (8278ce85dc0b) - ## / 71
- DataSec.VA.Core.Rules.dll (8c4197b375e6) - ## / 70
- DataSec.VA.Core.VACore.dll (278247133612) - ## / 54
- DocumentFormat.OpenXml.dll (09520a299242) - ## / 69
- Microsoft.AnalysisServices.Core.dll (5abcdac33e8d) - ## / 69
- Microsoft.AnalysisServices.dll (d89fdac780ba) - ## / 69
- Microsoft.AnalysisServices.PowerShell.Cmdlets.dll (b6c83e7186d9) - ## / 64
- Microsoft.AnalysisServices.PowerShell.Provider.dll (31e219dc2580) - ## / 70
- Microsoft.AnalysisServices.Tabular.dll (02b4e4607503) - ## / 69
- Microsoft.Data.Tools.Schema.Sql.dll (27bd69fbf0eb) - ## / 72
- Microsoft.Data.Tools.Utilities.dll (f19b78884dd7) - ## / 63
- Microsoft.InformationProtection.dll (b8aad1bee849) - ## / 72
- Microsoft.PolyKit.dll (b17ef39e0d3f) - ## / 69
- Microsoft.SqlServer.Assessment.Cmdlets.dll (e5fedbe149c9) - ## / 71
- Microsoft.SqlServer.Assessment.dll (ecb0d991aaa9) - ## / 71
- Microsoft.SqlServer.Assessment.Types.dll (583bac64ea6d) - ## / 72
- Microsoft.SqlServer.AzureStorageEnum.dll (b3c46d2ac489) - ## / 72
- Microsoft.SqlServer.ConnectionInfo.dll (171280c82c12) - ## / 70
- Microsoft.SqlServer.ConnectionInfoExtended.dll (2cb185ec3af3) - ## / 71
- Microsoft.SqlServer.Dac.dll (e79ed27a90d6) - ## / 71
- Microsoft.SqlServer.Dac.Extensions.dll (ae200ab049ff) - ## / 71
- Microsoft.SqlServer.DC.Contract.dll (b9a27e4b8333) - ## / 71
- Microsoft.SqlServer.DC.Engine.dll (b757fecac247) - ## / 71
- Microsoft.SqlServer.Dmf.Common.dll (5e1a2e380c1a) - ## / 70
- Microsoft.SqlServer.Dmf.dll (3ce9426540bc) - ## / 67
- Microsoft.SqlServer.IntegrationServices.Common.ObjectModel.dll (9d01b0507270) - ## / 71
- Microsoft.SqlServer.Management.AlwaysEncrypted.AzureKeyVaultProvider.dll (fece3d1ccf55) - ## / 71
- Microsoft.SqlServer.Management.AlwaysEncrypted.Management.dll (9c74527e2604) - ## / 72
- Microsoft.SqlServer.Management.AlwaysEncrypted.Types.dll (f763dd2d9014) - ## / 72
- Microsoft.SqlServer.Management.AzureAuthenticationManagement.dll (f9deff6ca33e) - ## / 71
- Microsoft.SqlServer.Management.CloudAdapter.Client.dll (8a024a830cd1) - ## / 72
- Microsoft.SqlServer.Management.CloudAdapter.Data.dll (8e2d4d2ea92d) - ## / 70
- Microsoft.SqlServer.Management.Collector.dll (87861ac30557) - ## / 70
- Microsoft.SqlServer.Management.CollectorEnum.dll (759196c88899) - ## / 72
- Microsoft.SqlServer.Management.Dac.UniversalAuthProvider.dll (f24d29e51d33) - ## / 70
- Microsoft.SqlServer.Management.HadrDMF.dll (d8d8d59578cf) - ## / 58
- Microsoft.SqlServer.Management.InMemoryOLTPMigrationAdvisor.dll (bcd02f8b5f4e) - ## / 70
- Microsoft.SqlServer.Management.PSProvider.dll (fe91aecd7a36) - ## / 70
- Microsoft.SqlServer.Management.PSSnapins.dll (5c6ed17f1a4e) - ## / 69
- Microsoft.SqlServer.Management.RegisteredServers.dll (8b80405bad16) - ## / 72
- Microsoft.SqlServer.Management.Sdk.Scripting.dll (19fb95bc3693) - ## / 72
- Microsoft.SqlServer.Management.Sdk.Sfc.dll (1fc1113a9999) - ## / 68
- Microsoft.SqlServer.Management.SDK.SqlStudio.dll (c74533883e8a) - ## / 72
- Microsoft.SqlServer.Management.Utility.dll (5221b1001b1b) - ## / 71
- Microsoft.SqlServer.Management.UtilityEnum.dll (5a34096addc6) - ## / 71
- Microsoft.SqlServer.Management.XEvent.dll (7cf506add1bb) - ## / 67
- Microsoft.SqlServer.Management.XEventDbScoped.dll (730cca43be0e) - ## / 71
- Microsoft.SqlServer.Management.XEventDbScopedEnum.dll (5031b965a892) - ## / 63
- Microsoft.SqlServer.Management.XEventEnum.dll (5b2ad839a10d) - ## / 71
- Microsoft.SqlServer.OlapEnum.dll (2bdc4b2d07c7) - ## / 72
- Microsoft.SqlServer.PolicyEnum.dll (31d202219532) - ## / 70
- Microsoft.SqlServer.RegSvrEnum.dll (4d2cbdd904df) - ## / 70
- Microsoft.SqlServer.ReplEnum.dll (533dd0ccbb7c) - ## / 71
- Microsoft.SqlServer.ServiceBrokerEnum.dll (91a41a5e00f6) - ## / 59
- Microsoft.SqlServer.Smo.dll (d6c0de2715d4) - ## / 71
- Microsoft.SqlServer.SmoExtended.dll (8cbb478250b6) - ## / 71
- Microsoft.SqlServer.SqlClrProvider.dll (066fb6ed8f67) - ## / 72
- Microsoft.SqlServer.SqlEnum.dll (541f203ffc07) - ## / 71
- Microsoft.SqlServer.SqlWmiManagement.dll (e34878c67f36) - ## / 72
- Microsoft.SqlServer.TransactSql.ScriptDom.dll (c445dfb9d7c1) - ## / 67
- Microsoft.SqlServer.Types.dll (127af23a9be6) - ## / 67
- Microsoft.SqlServer.VA.Model.dll (3c8e986a285d) - ## / 51
- Microsoft.SqlServer.WmiEnum.dll (9c9a1c3e6f50) - ## / 72
- Microsoft.SqlServer.XEvent.XELite.dll (b5c36e5e93dc) - ## / 71
- Newtonsoft.Json.dll (c52f9fa8f8a0) - ## / 71
- Microsoft.Data.Tools.Sql.BatchParser.dll (d2401f9ba374) - ## / 72
- Microsoft.SqlServer.Assessment.Cmdlets.dll (009a01f9b67a) - ## / 67
- Microsoft.SqlServer.Assessment.dll (dc2af28192e7) - ## / 63
- Microsoft.SqlServer.ConnectionInfo.dll (f6555bca6c5b) - ## / 71
- Microsoft.SqlServer.Management.Dmf.dll (99be92f5378c) - ## / 72
- Microsoft.SqlServer.Management.PSProvider.dll (3c2f2896f638) - ## / 71
- Microsoft.SqlServer.Management.PSSnapins.dll (13b7ba8641f9) - ## / 71
- Microsoft.SqlServer.Management.RegisteredServers.dll (a34db88d81e3) - ## / 72
- Microsoft.SqlServer.Management.Sdk.Sfc.dll (c8c4301101ed) - ## / 72
- Microsoft.SqlServer.Management.XEvent.dll (eb556db39b17) - ## / 51
- Microsoft.SqlServer.Management.XEventDbScoped.dll (514000cdcafe) - ## / 70
- Microsoft.SqlServer.Management.XEventDbScopedEnum.dll (16ceb9f18824) - ## / 71
- Microsoft.SqlServer.Management.XEventEnum.dll (c4a56580f010) - ## / 70
- Microsoft.SqlServer.Smo.dll (f5943ca02d1d) - ## / 72
- Microsoft.SqlServer.SmoExtended.dll (f042dd490fd9) - ## / 72
- Microsoft.SqlServer.SqlEnum.dll (33ee011d0723) - ## / 70
- Microsoft.SqlServer.XEvent.XELite.dll (c6ce3f62147d) - ## / 72
- Microsoft.SqlTools.Hosting.dll (3363f9b0cf87) - ## / 68
- Microsoft.SqlTools.ManagedBatchParser.dll (8235a94cace0) - ## / 69
- System.Data.SqlClient.dll (5a89fae18dd5) - ## / 69
- Microsoft.SqlServer.Management.IntegrationServices.dll (ab5cf3219bf2) - ## / 68
- Microsoft.SqlServer.Management.IntegrationServicesEnum.dll (a4e449bcf99c) - ## / 67
- dbatools.1.0.141.nupkg (cd18061e074b) - ## / 59
- dbatools.zip (5445eda842a4) - ## / 53
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 |
---|---|---|---|---|
dbatools (PowerShell Module) 1.1.95 | 854 | Wednesday, May 11, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.94 | 3 | Tuesday, May 10, 2022 |
Waiting for Maintainer
|
|
dbatools (PowerShell Module) 1.1.93 | 180 | Tuesday, May 10, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.92 | 307 | Sunday, May 8, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.91 | 269 | Friday, May 6, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.90 | 269 | Wednesday, May 4, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.89 | 586 | Thursday, April 28, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.88 | 1333 | Friday, April 8, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.87 | 209 | Wednesday, April 6, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.86 | 196 | Monday, April 4, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.85 | 266 | Saturday, April 2, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.84 | 438 | Thursday, March 31, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.83 | 198 | Tuesday, March 29, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.82 | 615 | Friday, March 25, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.81 | 866 | Wednesday, March 16, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.80 | 152 | Tuesday, March 15, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.79 | 103 | Monday, March 14, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.78 | 542 | Friday, March 11, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.77 | 48 | Friday, March 11, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.76 | 717 | Saturday, March 5, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.75 | 743 | Saturday, February 26, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.74 | 153 | Thursday, February 24, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.73 | 178 | Tuesday, February 22, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.72 | 202 | Monday, February 21, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.71 | 639 | Tuesday, February 15, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.70 | 726 | Wednesday, February 9, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.69 | 220 | Monday, February 7, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.68 | 105 | Monday, February 7, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.67 | 478 | Saturday, February 5, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.66 | 120 | Friday, February 4, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.65 | 198 | Thursday, February 3, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.64 | 64 | Wednesday, February 2, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.63 | 202 | Tuesday, February 1, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.62 | 294 | Sunday, January 30, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.61 | 318 | Saturday, January 29, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.60 | 266 | Tuesday, January 25, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.59 | 591 | Thursday, January 20, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.58 | 66 | Thursday, January 20, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.57 | 89 | Thursday, January 20, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.56 | 184 | Tuesday, January 18, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.55 | 95 | Tuesday, January 18, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.54 | 501 | Saturday, January 15, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.53 | 106 | Friday, January 14, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.52 | 52 | Friday, January 14, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.51 | 112 | Thursday, January 13, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.50 | 167 | Tuesday, January 11, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.49 | 582 | Thursday, January 6, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.48 | 197 | Tuesday, January 4, 2022 | Approved | |
dbatools (PowerShell Module) 1.1.46 | 792 | Thursday, December 23, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.45 | 128 | Wednesday, December 22, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.44 | 693 | Tuesday, December 14, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.43 | 566 | Friday, December 10, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.42 | 162 | Wednesday, December 8, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.41 | 616 | Friday, December 3, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.40 | 175 | Wednesday, December 1, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.39 | 157 | Monday, November 29, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.38 | 627 | Wednesday, November 24, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.37 | 134 | Tuesday, November 23, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.36 | 591 | Friday, November 19, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.35 | 322 | Monday, November 15, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.34 | 517 | Thursday, November 11, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.33 | 190 | Tuesday, November 9, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.32 | 555 | Saturday, November 6, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.31 | 381 | Monday, November 1, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.30 | 50 | Monday, November 1, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.29 | 426 | Thursday, October 28, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.28 | 55 | Thursday, October 28, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.27 | 245 | Tuesday, October 26, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.26 | 418 | Saturday, October 23, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.25 | 263 | Wednesday, October 20, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.24 | 772 | Tuesday, October 12, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.23 | 681 | Wednesday, October 6, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.22 | 220 | Tuesday, October 5, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.21 | 791 | Monday, September 27, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.20 | 565 | Wednesday, September 22, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.19 | 570 | Saturday, September 18, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.18 | 299 | Wednesday, September 15, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.17 | 57 | Tuesday, September 14, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.16 | 76 | Tuesday, September 14, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.15 | 958 | Thursday, September 2, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.14 | 28 | Tuesday, August 31, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.13 | 233 | Tuesday, August 31, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.12 | 737 | Tuesday, August 24, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.11 | 1019 | Wednesday, August 11, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.10 | 181 | Tuesday, August 10, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.9 | 579 | Thursday, August 5, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.8 | 71 | Thursday, August 5, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.7 | 198 | Tuesday, August 3, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.6 | 161 | Monday, August 2, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.5 | 473 | Saturday, July 31, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.4 | 112 | Friday, July 30, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.3 | 103 | Friday, July 30, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.1 | 156 | Tuesday, July 27, 2021 | Approved | |
dbatools (PowerShell Module) 1.1.0 | 598 | Friday, July 23, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.173 | 711 | Tuesday, July 13, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.171 | 219 | Monday, July 12, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.170 | 563 | Wednesday, July 7, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.169 | 144 | Tuesday, July 6, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.168 | 347 | Sunday, July 4, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.167 | 263 | Saturday, July 3, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.166 | 127 | Friday, July 2, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.165 | 293 | Tuesday, June 29, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.164 | 410 | Friday, June 25, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.163 | 174 | Thursday, June 24, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.162 | 205 | Tuesday, June 22, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.161 | 129 | Monday, June 21, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.160 | 285 | Friday, June 18, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.156 | 560 | Friday, June 11, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.155 | 245 | Wednesday, June 9, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.153 | 941 | Wednesday, May 26, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.152 | 174 | Tuesday, May 25, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.151 | 337 | Sunday, May 23, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.150 | 93 | Saturday, May 22, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.149 | 357 | Wednesday, May 19, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.148 | 294 | Friday, May 14, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.147 | 492 | Thursday, May 6, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.146 | 170 | Wednesday, May 5, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.145 | 770 | Sunday, April 18, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.144 | 96 | Sunday, April 18, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.142 | 801 | Sunday, April 4, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.141 | 1045 | Thursday, March 11, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.140 | 753 | Tuesday, February 23, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.139 | 459 | Tuesday, February 16, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.138 | 169 | Monday, February 15, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.137 | 1560 | Tuesday, January 19, 2021 | Approved | |
dbatools (PowerShell Module) 1.0.136 | 970 | Monday, December 28, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.135 | 994 | Sunday, December 6, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.134 | 114 | Friday, December 4, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.133 | 478 | Monday, November 23, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.131 | 371 | Monday, November 16, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.130 | 624 | Friday, November 6, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.128 | 456 | Monday, November 2, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.127 | 268 | Wednesday, October 28, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.126 | 525 | Thursday, October 22, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.125 | 427 | Saturday, October 17, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.124 | 524 | Wednesday, October 7, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.123 | 398 | Friday, October 2, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.122 | 144 | Thursday, October 1, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.121 | 314 | Friday, September 25, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.120 | 507 | Friday, September 18, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.119 | 329 | Monday, September 14, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.116 | 739 | Friday, August 28, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.115 | 1345 | Saturday, July 25, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.114 | 1048 | Saturday, July 4, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.113 | 869 | Monday, June 15, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.112 | 787 | Tuesday, June 2, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.111 | 717 | Friday, May 22, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.110 | 113 | Thursday, May 21, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.109 | 558 | Thursday, May 14, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.108 | 691 | Wednesday, May 6, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.107 | 605 | Monday, April 27, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.106 | 449 | Monday, April 20, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.105 | 425 | Wednesday, April 15, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.104 | 761 | Monday, March 30, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.103 | 484 | Monday, March 23, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.102 | 353 | Thursday, March 19, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.101 | 613 | Tuesday, March 3, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.100 | 351 | Friday, February 28, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.99 | 186 | Thursday, February 27, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.97 | 585 | Saturday, February 15, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.96 | 156 | Saturday, February 15, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.95 | 156 | Friday, February 14, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.93 | 192 | Wednesday, February 12, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.92 | 249 | Monday, February 10, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.91 | 316 | Thursday, February 6, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.90 | 206 | Monday, February 3, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.89 | 216 | Saturday, February 1, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.88 | 385 | Saturday, January 25, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.87 | 202 | Thursday, January 23, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.86 | 183 | Thursday, January 23, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.85 | 189 | Monday, January 20, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.84 | 320 | Friday, January 17, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.83 | 349 | Friday, January 10, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.81 | 232 | Wednesday, January 8, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.80 | 233 | Monday, January 6, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.79 | 219 | Friday, January 3, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.78 | 178 | Thursday, January 2, 2020 | Approved | |
dbatools (PowerShell Module) 1.0.77 | 227 | Friday, December 20, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.75 | 428 | Sunday, December 8, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.74 | 285 | Monday, December 2, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.73 | 325 | Friday, November 22, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.72 | 280 | Tuesday, November 19, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.71 | 274 | Thursday, November 14, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.68 | 208 | Monday, November 11, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.67 | 506 | Tuesday, November 5, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.66 | 155 | Monday, November 4, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.65 | 249 | Friday, November 1, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.64 | 236 | Tuesday, October 29, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.62 | 211 | Monday, October 28, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.61 | 224 | Thursday, October 24, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.60 | 200 | Tuesday, October 22, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.59 | 177 | Monday, October 21, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.58 | 207 | Sunday, October 20, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.57 | 187 | Friday, October 18, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.55 | 146 | Friday, October 18, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.54 | 199 | Thursday, October 17, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.53 | 203 | Tuesday, October 15, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.52 | 250 | Monday, October 7, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.51 | 255 | Wednesday, October 2, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.50 | 233 | Friday, September 27, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.49 | 262 | Tuesday, September 24, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.48 | 193 | Monday, September 23, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.47 | 206 | Friday, September 20, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.46 | 315 | Saturday, September 14, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.45 | 185 | Friday, September 13, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.44 | 176 | Thursday, September 12, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.43 | 214 | Tuesday, September 10, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.42 | 196 | Sunday, September 8, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.41 | 161 | Saturday, September 7, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.40 | 179 | Thursday, September 5, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.39 | 458 | Wednesday, September 4, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.38 | 382 | Wednesday, August 28, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.36 | 197 | Tuesday, August 27, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.35 | 280 | Thursday, August 22, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.34 | 212 | Monday, August 19, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.33 | 231 | Thursday, August 15, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.32 | 191 | Wednesday, August 14, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.30 | 264 | Thursday, August 8, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.29 | 225 | Saturday, August 3, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.28 | 168 | Friday, August 2, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.27 | 220 | Wednesday, July 31, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.26 | 174 | Monday, July 29, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.25 | 161 | Monday, July 29, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.23 | 268 | Tuesday, July 23, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.22 | 276 | Tuesday, July 16, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.21 | 253 | Friday, July 12, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.20 | 232 | Wednesday, July 10, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.19 | 187 | Wednesday, July 10, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.17 | 198 | Tuesday, July 9, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.15 | 229 | Saturday, July 6, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.14 | 155 | Friday, July 5, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.13 | 175 | Thursday, July 4, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.12 | 235 | Tuesday, July 2, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.11 | 153 | Monday, July 1, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.10 | 176 | Saturday, June 29, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.9 | 247 | Wednesday, June 26, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.6 | 179 | Wednesday, June 26, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.5 | 178 | Monday, June 24, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.4 | 230 | Sunday, June 23, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.3 | 190 | Sunday, June 23, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.2 | 202 | Friday, June 21, 2019 | Approved | |
dbatools (PowerShell Module) 1.0.0 | 246 | Thursday, June 20, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.834 | 386 | Friday, May 31, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.833 | 157 | Thursday, May 30, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.832 | 228 | Friday, May 24, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.831 | 208 | Thursday, May 23, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.830 | 215 | Tuesday, May 21, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.829 | 131 | Friday, May 17, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.828 | 222 | Wednesday, May 15, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.827 | 206 | Tuesday, May 14, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.826 | 197 | Monday, May 13, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.825 | 238 | Friday, May 10, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.824 | 190 | Friday, May 10, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.823 | 197 | Wednesday, May 8, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.822 | 214 | Monday, May 6, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.821 | 248 | Friday, May 3, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.819 | 199 | Wednesday, May 1, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.818 | 202 | Tuesday, April 30, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.817 | 169 | Tuesday, April 30, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.815 | 169 | Tuesday, April 30, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.814 | 180 | Monday, April 29, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.812 | 210 | Saturday, April 27, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.811 | 173 | Thursday, April 25, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.810 | 203 | Thursday, April 25, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.809 | 244 | Saturday, April 20, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.808 | 176 | Thursday, April 18, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.807 | 162 | Wednesday, April 17, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.804 | 206 | Monday, April 15, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.803 | 224 | Wednesday, April 10, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.802 | 239 | Sunday, April 7, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.801 | 202 | Thursday, April 4, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.800 | 221 | Monday, April 1, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.799 | 186 | Sunday, March 31, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.798 | 200 | Thursday, March 28, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.797 | 191 | Tuesday, March 26, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.795 | 181 | Sunday, March 24, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.794 | 186 | Saturday, March 23, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.793 | 194 | Thursday, March 21, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.792 | 203 | Wednesday, March 20, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.785 | 151 | Saturday, March 16, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.784 | 161 | Tuesday, March 12, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.782 | 117 | Monday, March 11, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.781 | 137 | Saturday, March 9, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.780 | 160 | Thursday, March 7, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.779 | 135 | Wednesday, March 6, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.778 | 101 | Tuesday, March 5, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.777 | 108 | Monday, March 4, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.775 | 188 | Tuesday, February 26, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.774 | 113 | Tuesday, February 26, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.773 | 175 | Monday, February 25, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.772 | 130 | Sunday, February 24, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.771 | 152 | Wednesday, February 20, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.770 | 182 | Sunday, February 17, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.757 | 159 | Tuesday, February 12, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.755 | 162 | Sunday, February 10, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.754 | 145 | Thursday, February 7, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.753 | 114 | Thursday, February 7, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.752 | 137 | Sunday, February 3, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.751 | 139 | Thursday, January 31, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.750 | 256 | Friday, January 25, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.749 | 205 | Thursday, January 24, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.748 | 181 | Thursday, January 24, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.747 | 346 | Thursday, January 24, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.745 | 142 | Wednesday, January 23, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.744 | 142 | Wednesday, January 23, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.743 | 250 | Monday, January 21, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.742 | 194 | Tuesday, January 15, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.740 | 233 | Friday, January 11, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.739 | 124 | Friday, January 11, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.738 | 146 | Thursday, January 10, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.737 | 147 | Wednesday, January 9, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.735 | 129 | Tuesday, January 8, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.734 | 206 | Thursday, January 3, 2019 | Approved | |
dbatools (PowerShell Module) 0.9.733 | 174 | Monday, December 31, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.732 | 165 | Thursday, December 27, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.731 | 155 | Sunday, December 23, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.730 | 216 | Friday, December 21, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.725 | 164 | Thursday, December 20, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.724 | 151 | Thursday, December 20, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.722 | 137 | Wednesday, December 19, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.721 | 160 | Tuesday, December 18, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.720 | 199 | Sunday, December 16, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.719 | 154 | Saturday, December 15, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.718 | 158 | Friday, December 14, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.717 | 160 | Friday, December 14, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.715 | 161 | Thursday, December 13, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.714 | 206 | Monday, December 10, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.712 | 260 | Sunday, December 9, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.711 | 405 | Friday, December 7, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.710 | 332 | Thursday, December 6, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.709 | 142 | Tuesday, December 4, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.707 | 100 | Tuesday, December 4, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.704 | 169 | Monday, December 3, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.703 | 142 | Monday, December 3, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.702 | 96 | Sunday, December 2, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.701 | 123 | Saturday, December 1, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.538 | 140 | Friday, November 30, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.537 | 138 | Friday, November 30, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.535 | 112 | Thursday, November 29, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.533 | 160 | Wednesday, November 28, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.532 | 143 | Tuesday, November 27, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.531 | 132 | Sunday, November 25, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.530 | 131 | Saturday, November 24, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.527 | 119 | Saturday, November 24, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.523 | 109 | Friday, November 23, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.521 | 168 | Thursday, November 22, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.520 | 145 | Thursday, November 22, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.519 | 154 | Sunday, November 18, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.518 | 102 | Friday, November 16, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.517 | 150 | Friday, November 16, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.512 | 126 | Wednesday, November 14, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.510 | 160 | Wednesday, November 14, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.509 | 146 | Monday, November 12, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.508 | 140 | Monday, November 12, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.507 | 126 | Saturday, November 10, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.504 | 125 | Thursday, November 8, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.503 | 111 | Thursday, November 8, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.502 | 119 | Wednesday, November 7, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.501 | 140 | Monday, November 5, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.500 | 132 | Saturday, November 3, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.499 | 126 | Friday, November 2, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.498 | 96 | Friday, November 2, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.497 | 105 | Wednesday, October 31, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.495 | 137 | Tuesday, October 30, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.494 | 116 | Tuesday, October 30, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.492 | 115 | Sunday, October 28, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.491 | 137 | Friday, October 26, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.490 | 103 | Wednesday, October 24, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.489 | 112 | Wednesday, October 24, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.487 | 154 | Friday, October 19, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.485 | 86 | Thursday, October 18, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.484 | 130 | Tuesday, October 16, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.483 | 128 | Monday, October 15, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.481 | 152 | Monday, October 15, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.479 | 127 | Monday, October 15, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.477 | 109 | Friday, October 12, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.475 | 100 | Friday, October 12, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.472 | 140 | Tuesday, October 9, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.471 | 117 | Monday, October 8, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.470 | 120 | Sunday, October 7, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.459 | 111 | Sunday, October 7, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.458 | 136 | Saturday, October 6, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.455 | 147 | Friday, October 5, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.454 | 120 | Thursday, October 4, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.450 | 125 | Monday, October 1, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.447 | 139 | Saturday, September 29, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.445 | 95 | Thursday, September 27, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.442 | 119 | Wednesday, September 26, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.440 | 101 | Wednesday, September 26, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.439 | 124 | Wednesday, September 26, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.438 | 142 | Wednesday, September 26, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.435 | 132 | Monday, September 24, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.434 | 124 | Sunday, September 23, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.433 | 128 | Friday, September 21, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.432 | 108 | Friday, September 21, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.431 | 127 | Wednesday, September 19, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.428 | 112 | Wednesday, September 19, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.427 | 109 | Tuesday, September 18, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.424 | 115 | Tuesday, September 18, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.422 | 152 | Monday, September 17, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.419 | 128 | Friday, September 14, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.417 | 390 | Sunday, September 9, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.415 | 114 | Saturday, September 8, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.412 | 104 | Saturday, September 8, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.411 | 112 | Friday, September 7, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.410 | 143 | Friday, September 7, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.402 | 112 | Thursday, September 6, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.400 | 106 | Wednesday, September 5, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.399 | 130 | Friday, August 31, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.398 | 140 | Friday, August 31, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.395 | 198 | Tuesday, August 28, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.394 | 124 | Monday, August 27, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.393 | 154 | Friday, August 24, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.392 | 124 | Wednesday, August 22, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.390 | 120 | Tuesday, August 21, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.389 | 126 | Sunday, August 19, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.388 | 104 | Friday, August 17, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.387 | 153 | Thursday, August 16, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.385 | 170 | Wednesday, August 8, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.384 | 162 | Friday, August 3, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.383 | 120 | Thursday, August 2, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.382 | 160 | Thursday, July 26, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.381 | 115 | Thursday, July 26, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.380 | 148 | Tuesday, July 24, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.378 | 166 | Monday, July 23, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.377 | 149 | Saturday, July 21, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.376 | 168 | Wednesday, July 18, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.375 | 166 | Monday, July 16, 2018 | Approved | |
dbatools (PowerShell Module) 0.9.362 | 173 | Friday, June 29, 2018 | Approved |
2018 Chrissy LeMaire
This package has no dependencies.
Ground Rules:
- This discussion is only about dbatools (PowerShell Module) and the dbatools (PowerShell Module) 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 dbatools (PowerShell Module), 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.