Downloads:
2,065,400
Downloads of v 1.9.25180:
7,160
Last Update:
28 Oct 2024
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
winget-cli winget- 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
WinGet Client (Install)
- 1
- 2
- 3
1.9.25180 | Updated: 28 Oct 2024
- 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:
2,065,400
Downloads of v 1.9.25180:
7,160
Maintainer(s):
Software Author(s):
- Microsoft
WinGet Client (Install) 1.9.25180
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install WinGet Client (Install), run the following command from the command line or from PowerShell:
To upgrade WinGet Client (Install), run the following command from the command line or from PowerShell:
To uninstall WinGet Client (Install), run the following command from the command line or from PowerShell:
Deployment Method:
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 winget-cli --internalize --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 winget-cli -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade winget-cli -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install winget-cli
win_chocolatey:
name: winget-cli
version: '1.9.25180'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'winget-cli' do
action :install
source 'INTERNAL REPO URL'
version '1.9.25180'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller winget-cli
{
Name = "winget-cli"
Version = "1.9.25180"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'winget-cli':
ensure => '1.9.25180',
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.
This package was approved by moderator flcdrg on 02 Nov 2024.
The winget command line tool enables users to discover, install, upgrade, remove and configure applications on Windows 10 and Windows 11 computers. This tool is the client interface to the Windows Package Manager service.
Notes:
- WinGet-CLI requires at least Windows 10 version 1809 (build 17763). See https://github.com/microsoft/winget-cli#installing-the-client for more information.
- WinGet-CLI requires 'Microsoft.UI.Xaml.2.7' Appx package and does not work if a later (2.8+) version only is installed. The Chocolatey package takes care of this by adding the
microsoft-ui-xaml-2-7
as a dependency. - This is an automatically updated package. If you find it is out-of-date by more than a week, please contact the maintainer(s), to let the know using the 'Package Source' link on the package page and raising an issue.
- If you find the package has issues (for software issues, please contact the vendor / author), please contact the maintainer(s), to let the know using the 'Package Source' link on the package page and raising an issue.
$ErrorActionPreference = 'Stop'
$toolsDir = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"
. $(Join-Path -Path $toolsDir -ChildPath "$($env:ChocolateyPackageName)-helpers.ps1")
$failToRemove = $false
Get-AppxProvisionedPackage -Online | Where-Object -Property DisplayName -eq $internalAppXPackage.PackageName | ForEach-Object {
# sometimes this cmdlet throws an error about a conflict ir dependency but goes ahead and removes it anyway.
# this is why we are trapping it. We check if the packages have actually been removed, below.
try {
Remove-AppxProvisionedPackage -Packagename $_.PackageName -AllUsers -Online | Out-Null
}
catch {
$failToRemove = $true
}
}
if ($failToRemove) {
# Lets check if the packages actually didn't get removed
if (@(Get-AppxProvisionedPackage -Online | Where-Object -Property DisplayName -eq $internalAppXPackage.PackageName) -gt 0) {
Write-Warning "At least one app package architecture failed to uninstall. PLease uninstall it manually."
}
}
$ErrorActionPreference = 'Stop'
$internalAppXPackage = @{
SoftwareName = 'WinGet-CLI'
PackageName = 'Microsoft.DesktopAppInstaller'
Version = '2024.1025.2351.0'
}
$packagedAppxVersion = '1.9.25180.0'
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
WinGet Client (Install) 1.9.25180 | 7160 | Monday, October 28, 2024 | Approved | |
WinGet Client (Install) 1.8.1911 | 202683 | Wednesday, July 10, 2024 | Approved | |
WinGet Client (Install) 1.8.1791 | 31 | Saturday, June 29, 2024 | Exempted | |
WinGet Client (Install) 1.7.11261 | 114149 | Tuesday, May 7, 2024 | Approved | |
WinGet Client (Install) 1.7.11132 | 21754 | Wednesday, April 24, 2024 | Exempted | |
WinGet Client (Install) 1.7.10861 | 140736 | Thursday, March 28, 2024 | Exempted | |
WinGet Client (Install) 1.7.10661 | 101058 | Wednesday, March 13, 2024 | Exempted | |
WinGet Client (Install) 1.7.10582 | 88910 | Wednesday, February 28, 2024 | Exempted | |
WinGet Client (Install) 1.6.3482 | 519476 | Tuesday, December 19, 2023 | Exempted | |
WinGet Client (Install) 1.6.3421 | 36183 | Tuesday, December 12, 2023 | Approved | |
WinGet Client (Install) 1.6.3133 | 320187 | Saturday, November 11, 2023 | Exempted | |
WinGet Client (Install) 1.6.2771 | 392149 | Friday, October 6, 2023 | Approved | |
WinGet Client (Install) 1.6.2721 | 13340 | Saturday, September 30, 2023 | Exempted | |
WinGet Client (Install) 1.5.2201 | 47165 | Thursday, August 10, 2023 | Approved | |
WinGet Client (Install) 1.5.1881 | 34816 | Monday, July 17, 2023 | Approved | |
WinGet Client (Install) 1.4.11071.0 | 25480 | Saturday, June 3, 2023 | Approved |
2023 Microsoft Corporation
This release represents our first stable Windows Package Manager 1.9 build for Windows 10 (1809+), and Windows 11.
This release includes the ability to enable experimental features unless blocked by Group Policy Objects (GPO)
Sixel support is here to display icons and a new progress visualization. To try out this new feature, you must be using a terminal that supports sixels, such as the latest Windows Terminal Preview build. To enable this feature, include the following snipping in your settings file:
{
"$schema": "https://aka.ms/winget-settings.schema.json",
"visual": {
"enableSixels": true,
"progressBar": "sixel"
}
}
WinGet Configuration files with DSC Resources requiring elevation can now be handled more gracefully. The "Configure Self Elevation" experimental feature can be enabled with the following snippet in your settings file:
{
"$schema": "https://aka.ms/winget-settings.schema.json",
"experimentalFeatures": {
"configureSelfElevate": true
}
}
Use "securityContext: elevated" under "directives:" for any resources requiring administrator. WinGet will trigger a single User Account Control (UAC) prompt when the configuration is run under user context. Resources requiring elevation are run elevated, and the rest are run in user context. The following example shows how the .NET Tutorial - Hello World in 5 minutes will be updated to provide a better user experience.
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
properties:
resources:
- resource: Microsoft.WinGet.DSC/WinGetPackage
id: install-dotnet8-SDK
directives:
description: Install .NET 8 SDK
securityContext: elevated
settings:
id: Microsoft.DotNet.SDK.8
source: winget
- resource: Microsoft.WinGet.DSC/WinGetPackage
id: install-vs-code
directives:
description: Install Visual Studio Code
settings:
id: Microsoft.VisualStudioCode
source: winget
- resource: Microsoft.VSCode.DSC/VSCodeExtension
id: install-csharp-dev-kit
dependsOn:
- install-vs-code
directives:
description: Install C# Dev Kit
allowPrerelease: true
settings:
name: ms-dotnettools.csdevkit
exist: true
configurationVersion: 0.2.0
What's Changed
- Increment version to 1.9 by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4522
- Update localization pipeline to new auth type by @florelis in https://github.com/microsoft/winget-cli/pull/4532
- Fix loc pipeline service connection by @florelis in https://github.com/microsoft/winget-cli/pull/4533
- Enable Microsoft Entra Id auth for displaycatalog and use enterprise offline sku by @yao-msft in https://github.com/microsoft/winget-cli/pull/4544
- Add tests for configure mixed elevation by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4487
- Make v2 index EF enabled by default by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4553
- Trim Version When Parsing by @Trenly in https://github.com/microsoft/winget-cli/pull/4554
- Add Tests for Parsing Versions with Whitespace by @Trenly in https://github.com/microsoft/winget-cli/pull/4557
- Winget Repair - Eliminate installer type mapping for MSI/WIX and MSIX NonStore ,code refactoring & E2E Test Coverage by @Madhusudhan-MSFT in https://github.com/microsoft/winget-cli/pull/4534
- Update Pipeline Component Versions by @Trenly in https://github.com/microsoft/winget-cli/pull/4560
- Add support for extracting archives using tar.exe by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4541
- Make SxS stable by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4563
- Use digest verification APIs for MSIX when available by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4564
- Improve Support for Versions with Preambles by @Trenly in https://github.com/microsoft/winget-cli/pull/4558
- Launch COM server for elevated use via packaged path by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4567
- Fix export manifest with multiple locales by @yao-msft in https://github.com/microsoft/winget-cli/pull/4569
- Configuration history support by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4552
- Make Store package download stable by @yao-msft in https://github.com/microsoft/winget-cli/pull/4570
- Update expired certificate with incoming one by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4568
- Apply latest patch for localized strings by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4578
- Update winget server com security by @yao-msft in https://github.com/microsoft/winget-cli/pull/4577
- Component Governance fix: Update libyaml by @yao-msft in https://github.com/microsoft/winget-cli/pull/4583
- Update valijson to v1.0.2 by @yao-msft in https://github.com/microsoft/winget-cli/pull/4588
- Use atomic functions to ensure single initialization of tracking catalog by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4592
- Standardize line endings in expect.txt by @Trenly in https://github.com/microsoft/winget-cli/pull/4595
- Fix service connection for ESRP codesigning for utils nuget package by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4597
- Configuration apply queueing by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4590
- Ensure Agreements don't terminate in dependency flow by @Trenly in https://github.com/microsoft/winget-cli/pull/4594
- Remove libyaml Dockerfile by @florelis in https://github.com/microsoft/winget-cli/pull/4604
- Update README.md and Pull Request and Issue templates by @skanda890 in https://github.com/microsoft/winget-cli/pull/4599
- Attempt to update dependencies when not registered by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4606
- Remove experimental from index v2 by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4607
- ARM64 build and test fixes by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4608
- Use shared manifest in COM server by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4605
- Add AnyCPU to .gitignore by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4621
- Fix for attempted use of capability API before it was introduced by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4620
- Fix Component Governance by @msftrubengu in https://github.com/microsoft/winget-cli/pull/4629
- Update documentation errors by @Trenly in https://github.com/microsoft/winget-cli/pull/4649
- Update Zlib library dependency for PureLib by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4654
- update curl vcpkg version to 8.8.0 by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4655
- Pull in latest SFSClient by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4670
- Remove prerelease, update icon uri, and clean up for PowerShell modules by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4672
- Use ContinueWith rather than finally for coroutine result types by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4669
- Store configuration status and enable remote watch events by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4647
- Update README.md by @skanda890 in https://github.com/microsoft/winget-cli/pull/4687
- Update metadata collection tooling by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4688
- Skip uninstall attempt when installed package version is not present by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4685
- Upgrade to check-spelling v0.0.22 by @jsoref in https://github.com/microsoft/winget-cli/pull/3896
- Fix downloader selection by @florelis in https://github.com/microsoft/winget-cli/pull/4696
- Split testing into separate pipeline job by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4675
- Update NOTICE by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4699
- Delete CodeCoverage and WinGetUtil NuGet pipelines by @florelis in https://github.com/microsoft/winget-cli/pull/4708
- WinRT activation shim for Microsoft.Management.Deployment by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4709
- Add missing solution dependency by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4717
- Fix the actual problem with the build... by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4719
- Send unit telemetry on success by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4720
- Pull in latest SFS client by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4725
- PowerShell Help for Microsoft.WinGet.Client by @denelon in https://github.com/microsoft/winget-cli/pull/4674
- Create public sample by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4734
- Generate Microsoft.WinGet.Client help docs in cmdlet output by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4731
- Remove preference for "installed" installer type by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4740
- Update curl to 8.9.1 by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4745
- Fix Reset-WinGetSource behavior by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4732
- External HR error message support by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4746
- Generate test certificates in pipeline by @florelis in https://github.com/microsoft/winget-cli/pull/4747
- [Spec] Windows Package Manager Repair functionality Design spec by @Madhusudhan-MSFT in https://github.com/microsoft/winget-cli/pull/3943
- Update build status badge by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4758
- Run test tasks if succeededOrFailed by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4759
- Binskim error EnableCriticalCompilerWarnings by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4764
- Run Unpackaged Unit Tests with winget-installed PsExec by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4760
- Spelling by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4772
- Updates to PowerShell help docs by @mdanish-kh in https://github.com/microsoft/winget-cli/pull/4781
- Repair-WinGetPackageManager improvements by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4774
- Allow for smaller configuration outputs by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4754
- Add diagnostics to dynamic factory by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4757
- PS Gallery tests are unreliable by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4791
- Add pwsh support for trust level and explicit by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4750
- Updates to the PowerShell modules by @kilasuit in https://github.com/microsoft/winget-cli/pull/4716
- Microsoft.WinGet.DSC improvements (and breaking change) by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4795
- Small build changes by @florelis in https://github.com/microsoft/winget-cli/pull/4807
- Add initial 1.9 manifest by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4811
- Fix Component Governance issues by @florelis in https://github.com/microsoft/winget-cli/pull/4814
- Fix grammatical issues in Bug Report.yml, and Update dependencies by @skanda890 in https://github.com/microsoft/winget-cli/pull/4788
- upgrading to similar-issues-ai by @denelon in https://github.com/microsoft/winget-cli/pull/4819
- Update nuget for E2E test project by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4821
- Fix PATH issue for archive containing nested portables with binary dependencies by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4816
- Revert PowerShell modules to alpha by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4823
- Update fuzzing template area path by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4824
- Add a few more command aliases by @Trenly in https://github.com/microsoft/winget-cli/pull/4822
- Fix issue with unicode characters in symlink target path by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4834
- Pull in latest localized strings by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4840
- Sixel support by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4828
- More messages for common Store package download scenarios by @yao-msft in https://github.com/microsoft/winget-cli/pull/4841
- WinGet COM API for Repair by @Madhusudhan-MSFT in https://github.com/microsoft/winget-cli/pull/4736
- Improve configuration self elevation flow by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4844
- Pull in latest localized strings by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4855
- Update curl by @florelis in https://github.com/microsoft/winget-cli/pull/4856
- Add extended error codes to results without them by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4858
- Change enum value name by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4864
- Set WindowsSdkPackageVersion to older value by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4860
- Enable USE_PROD_CLSIDS switch in CommonCore by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4865
- Make dependency lookup case insensitive by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4866
- Documentation - added
Microsoft.Rest
as a supported source type by @bubbletroubles in https://github.com/microsoft/winget-cli/pull/4873 - Add hash mismatch telemetry details by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4857
- Update package with CVEs by @florelis in https://github.com/microsoft/winget-cli/pull/4881
- Add ADMX policies for security features in App Installer by @florelis in https://github.com/microsoft/winget-cli/pull/4726
- Consume all input during extract sequence by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4882
- Fix for Source Argument Validation in SourceWorkflow for Default Source Type by @Madhusudhan-MSFT in https://github.com/microsoft/winget-cli/pull/4891
- Add latest localized strings by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4892
- Add support for 1.9 manifest in rest source parsing and winget utils interop by @yao-msft in https://github.com/microsoft/winget-cli/pull/4906
New Contributors
- @skanda890 made their first contribution in https://github.com/microsoft/winget-cli/pull/4599
- @kilasuit made their first contribution in https://github.com/microsoft/winget-cli/pull/4716
- @bubbletroubles made their first contribution in https://github.com/microsoft/winget-cli/pull/4873
Full Changelog: https://github.com/microsoft/winget-cli/compare/v1.8.1911...v1.9.25180
-
- microsoft-ui-xaml-2-7 (≥ 2.7.0)
- microsoft-vclibs-140-00 (≥ 14.0.30704)
Ground Rules:
- This discussion is only about WinGet Client (Install) and the WinGet Client (Install) 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 WinGet Client (Install), 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.