Unpacking Software Livestream

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

Learn More

Chocolatey Product Spotlight

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

Learn More

Chocolatey Coding Livestream

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

Learn More

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

Webinar from
Wednesday, 17 January 2024

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

Watch On-Demand
Chocolatey Community Coffee Break

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

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

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

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

Livestream from
Thursday, 9 June 2022

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

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

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

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

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

Watch On-Demand

Downloads:

57,911

Downloads of v 0.3.0:

19,078

Last Update:

29 Sep 2021

Package Maintainer(s):

Software Author(s):

  • Rob Reynolds

Tags:

nuget odata iis repository chocolatey simple-server simple.server

Chocolatey Server (Simple)

  • 1
  • 2
  • 3

0.3.0 | Updated: 29 Sep 2021

Downloads:

57,911

Downloads of v 0.3.0:

19,078

Maintainer(s):

Software Author(s):

  • Rob Reynolds

Chocolatey Server (Simple) 0.3.0

  • 1
  • 2
  • 3

Some Checks Are Exempted or Have Failed

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Requires .NET Framework 4.6, which needs a reboot.

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Chocolatey Server (Simple), run the following command from the command line or from PowerShell:

>

To upgrade Chocolatey Server (Simple), run the following command from the command line or from PowerShell:

>

To uninstall Chocolatey Server (Simple), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade chocolatey.server -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 chocolatey.server -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 chocolatey.server
  win_chocolatey:
    name: chocolatey.server
    version: '0.3.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'chocolatey.server' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.3.0'
end

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


cChocoPackageInstaller chocolatey.server
{
    Name     = "chocolatey.server"
    Version  = "0.3.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'chocolatey.server':
  ensure   => '0.3.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 29 Sep 2021.

Description

Chocolatey Server is a simple OData feed built on top of NuGet.Server.

Chocolatey Server builds on NuGet.Server with a few minor adjustments:

  • This is a packaged site, ready to deploy.
  • The apikey is already set.
  • There is more helpful information on the site when accessing locally:
    • There is a link to the Elmah logs
    • The api key is given on the page.
  • The location of packages defaults to a more secure location.

Notes

This package will NOT give you a local copy of what is available on https://community.chocolatey.org.

Chocolatey.Server is not recommended for most organizational use cases. There are more robust options out there. However
if you have a very simple use case or are conducting a POC, Chocolatey.Server may be good enough for your needs. If you
don't find it robust enough, our recommendation is to look to something more robust like Artifactory, Nexus, or ProGet
(two of which are also free to use).


tools\chocolatey.server\7za.exe
md5: AB6228BFB7C3F584651663E0E1649907 | sha1: 1DC195F0F38D66AFD2544809B1DD29A7412BDB57 | sha256: AD81023B5A8B12C07E89C7F56725A34797F5AB94EB2878E87029ED5A4AB6D79B | sha512: D4514358C9671BE365C8B70B74ED59D8C4E90F942381ED57709D8A2FECF7752BAEC65BE8293F5408BB3A021E65425188EA30B61FF87C5CBA50BD3D52CEFA3B06
tools\chocolatey.server\App_Data\Packages\Readme.txt
To add packages to the repository place package files (.nupkg files) in this folder or use choco push (see readme on the repo url main page). 

The server will find packages and automatically convert/index them from here.
tools\chocolatey.server\bin\de\Microsoft.Data.Edm.resources.dll
md5: 8E4CD4E166121042C9648CABD7384F2C | sha1: 732B5421FD09D90671D491CFC94776D3EEB5C379 | sha256: 680B77128DC796084F6D767569769DBEFD9C495BA1DB8B8466359CA0BA358CFB | sha512: 43C5D612353DC3162C3197F28EABBAF4D415EEC4D84E291A658F2F8EDFE4EB44D85B02958AF40D64E8ED64BC31567AE7D4F90929FB0CB4D69C13C9170E498147
tools\chocolatey.server\bin\de\Microsoft.Data.OData.resources.dll
md5: F83E9598DAE7BFAE3192FBA3A1324F17 | sha1: 8603B4D2840EE784F7FA2AD2F3463783E41892FC | sha256: CFDE54704DBA457325DEE7777659D124ED480C041EAE4BD60D482A47B7C27E05 | sha512: DBC3D8C28A52EC13E503010D04DBCFFD45950AEFB7DC138D93576F61C387E734C7C88225CF945AF24A2F4AC7A8031D4F75F9A817DFC46EEB7817BFB426647D20
tools\chocolatey.server\bin\de\System.Spatial.resources.dll
md5: 36812CCE1C326CBA56F111344CB4D428 | sha1: A18286EA3E5A243357338AC52002246BB839E7C4 | sha256: F82029AEC41E9ECE5C1DE32C50483A27563669432A8F0A54310D5A990B71191A | sha512: 8E741AC9F7138C1D35C2B7FB63D2EEE790F1ECFEFB29F9B568BE2706A705608ACB8C92E63DA8C08D72010C2AFABC0EEB46FABDCC253E75A30198E3B6CB655823
tools\chocolatey.server\bin\Elmah.dll
md5: 5F9FBA56E86C63D985C5108544EC5473 | sha1: 1C0452B49290CE5CC919CA18D76533B4C4267BDA | sha256: 24154C679DE6858BB53C03339FBBE275499280E7A6BC1F9E9586A72063EC6133 | sha512: 750344D705C99A18266F6C7CE21F38C4F42A1C25B9677FD7BB9009F7449CCE02F91033F9FF52AD9C1196C3B8053A42BFE1EB8DB61F755A20CECB3BEE33E7756F
tools\chocolatey.server\bin\es\Microsoft.Data.Edm.resources.dll
md5: 545CE75843FC45CF0A5BEA4CF207D5A9 | sha1: 9C3E69751F20C57DAB59EBB0FC58B5B182F0AEA6 | sha256: 4446032E5977A0095F41ADEEB74D740B9EB8987BE0EE88B5105AC161786B3A2F | sha512: E2F6F7F33745637EA479088683C7369CBC500DDF91B10A8FF85588590CFC6BCC1733CE193E42E6293B83EDB2999B98C5F2FF389AA8C78F646876F1E6E6A2ED6D
tools\chocolatey.server\bin\es\Microsoft.Data.OData.resources.dll
md5: 9C199629046393884F82327AF1FD7081 | sha1: 99E37E1621376F4C7E9F2444C889753B17178092 | sha256: 9BF5996F7E326E3F60E08E75A3B6981924A1B0C2989BE76C6A896D49031E3EFB | sha512: D9EC702BAE7B85B1561364C34BE0ADA66D7A8A4DAEC9C3C2B7BEC3561D7F1E8F34ED1E89801399AC600619925BE4CB7AE942DC9F3E0955B5E2B36889890CBF99
tools\chocolatey.server\bin\es\System.Spatial.resources.dll
md5: 59E11CB295B315032C227C840851BC29 | sha1: 910C24E31C23E830054888910BBDC8A3F1BB2156 | sha256: 6D0FE349866E63AC5171BDAB2A7679898593B90A53C153D2A4588B9B3B194F2F | sha512: A842F7791C2DC50DBCBCF4CF00E1D8693D29E8888229937E01AB7984091D46141EBB9BAB1FBE58950E95DC26937A415D841EC270BF3EFBA17ECA3E076DC69948
tools\chocolatey.server\bin\fr\Microsoft.Data.Edm.resources.dll
md5: E144807B16852149E11AE7BD56CBA2B0 | sha1: 6223311B2C82C00E2FCDE7D39033FCCD1DC17DEF | sha256: F79BB55DD6CBB91979384302070A8D439DA1C9041C1109560962EE1DE20F8BCB | sha512: C87EB6E1CC3C0BACE0F7ED1E33C7799022DA857511518A1E5CA8D81CD17733F0BE57F511CAB57B964AC8830A91EFC1F7D55359F4D60F5EF93864A8B98A4F6B7C
tools\chocolatey.server\bin\fr\Microsoft.Data.OData.resources.dll
md5: 47995D3C8E5288F21F0FC872260FEC14 | sha1: 216A1B4629D540C4FBB3C759217AF9763EE72470 | sha256: 3D50AE279A78DFBC05A5419CA765DDF5A488AD03F7FECDE9C3146683CECE9FA5 | sha512: AE27362E0AF4628489E32A8F39FFD80A8CE37FA48E8ED73D7AEB0632734E93821C5ACA8DEC9512AC80DC7399449EFC688A23594A3A998E5C4826DFBE1DC753E8
tools\chocolatey.server\bin\fr\System.Spatial.resources.dll
md5: D4DE11937E997EEA26DD19A759F99277 | sha1: 2182F5048F1F3F56092295A9291CC052F830E42F | sha256: DE02D1B60E63B1C7B0DE3B56B35889B4AC5E2686A57C2E98D2D930D8E736C944 | sha512: E4E7A086093527652B04EEBD15B3A056351390D658A8A3665B714EE04E4017B7C2A77A4193A734462294A372C65C346AE8546AE8DB834D4C6EC195D12F161550
tools\chocolatey.server\bin\HttpAuthenticationModule.dll
md5: C744A02CE9A66E017C921731C2B6D0B0 | sha1: 4154CE2453064D47A4FD4D368A6A56B8300BFE90 | sha256: B6264BF82760ABF5C941654D1964EC7092B17BDD98FA144311B6B1DECCE54222 | sha512: F1CA9D361120A622C068DE7E4D048E400F6D75954C451D9EEFC16BDC87B08393B6DEB7ED58C8EC93B909CB6C966C9AA520D3A7AA792EDF819BE8038C981C21B8
tools\chocolatey.server\bin\it\Microsoft.Data.Edm.resources.dll
md5: D779680256F4C9EF139F3F12EA522548 | sha1: 606FBD140C8E838325709C34306A290A063B1788 | sha256: B51AE82BD57E0934432025D17FB45F3848FCC91A5D203A63B49EA1E2F850FCC0 | sha512: 3B682A5EA4EC8C7F80500F228A95CF68EEDC1A39F38BF10F8E935A86B8928D6D3DCE8F4C79E37498267BCAEA5CCF35C58203623C4604D1162427D2D6CDF687B2
tools\chocolatey.server\bin\it\Microsoft.Data.OData.resources.dll
md5: 0B7B8279FE6CA7091E4D69D22A1C424D | sha1: 4D35832FB14AAEF917CB12E9147D6F08D268E95F | sha256: 4A28BF648D7B440298781EF0F9BEFD600690C69426A55F6D3956641021635D51 | sha512: 1EBC5CFBA6024495509DBA8C3B8C30389B65F86DAE6719846D4705B0BA64167A8FD180261A712E8CE5B5C6063B0FCF9F7E254E64C5B272A21E1E0F3406F5B93A
tools\chocolatey.server\bin\it\System.Spatial.resources.dll
md5: F64E322D382AFCA751589B08032C65CA | sha1: DFE74A55EE7C6DE9025CECF6602AD5628E4F5C52 | sha256: 921567D87F7D097A04FBE7999B843B678268767918D2F03B38DAFFC15C7DAE2B | sha512: A482730FEA0D3972F1D0F7E801BFAD471506F4752A1A30DFEFADF3C0A3EE3CECE1531BAE7D19A90F7FFB3B347349D26D8959914F8871CBF676152DA9C087BAF1
tools\chocolatey.server\bin\ja\Microsoft.Data.Edm.resources.dll
md5: 525F3B5477791C6A2353B83D25C48CE2 | sha1: 28BDE7C86CD63354D9FC8DE49465D83B9B2FC862 | sha256: 9F7FCF491B8A2644E257D2866FDB12035E78624A6EF639640E1F12F0D90461BB | sha512: 4B473661BB442A33A0E4450576331044498B5B680A5922AFFFEF16B814E58B5D05AA1676A5739DFB63987BA39B7DD2BF847C25C322FF59642CE6A299423DF9D4
tools\chocolatey.server\bin\ja\Microsoft.Data.OData.resources.dll
md5: 85C6C686D301CE73F2CE4FC6685BFC8F | sha1: 67AABD30EE29AABD6EAB905A3F75C5139DFBBE0A | sha256: 7363365CE9C676B261885B72411BA7E6EB6EC4932B3CE97FC4B6F0BF2C81E5DB | sha512: C1485A1CE7AD6B0CFA86DFDB895682454949FC690527D9ED14A4606D65D7F2B11A5663D698B68562581EE1CC685E960F56589D7EF76BB109E4BA6B5171E7D090
tools\chocolatey.server\bin\ja\System.Spatial.resources.dll
md5: 7BB3B561432283B616A0DDFEFE164D99 | sha1: 55A727C3BD4AE52FB7DAB8348285DEB4ED1618B6 | sha256: D88E1FA24D00E2CC2CD0BFFF91235D41E52F0BCED43315F0FB8CE90DDF81BF54 | sha512: 115ACA3AC827A7358134833E7128A0F165C7450A7AEE297FB0241A0EA1FAA6489B7EE6FEC348B41111D1DA99757C669D73803125A997D491725210CC08364764
tools\chocolatey.server\bin\ko\Microsoft.Data.Edm.resources.dll
md5: A2960108379F05A02A5A8EDD4F9A9CCB | sha1: 6D1D0B97CA61DDDF65AEE81CF34547A4DA3EB436 | sha256: 5DBAE0FE7258C5561E67A4AB266DB2A14A8EE33BE0ECA5511BC0D04299C389F0 | sha512: 4267A51BE95F17D528F7B1C0867468D5E371FE0F5DCBAAABF65A8C670BFE0693AEEE38E74C66C70E1D12C070C61D1D6E3D29C834B95B648FB8AE9B8A7BA76609
tools\chocolatey.server\bin\ko\Microsoft.Data.OData.resources.dll
md5: 4D8FABD3FE0D7EE67C7920B5399FC77E | sha1: 697E56CF966E2B13AC38715352D8B39BFDA6CE15 | sha256: 1B78D04734DC7E54BD8CB6C74C53F4DCE7BAD51D09FB071A66039C542EEBF494 | sha512: 5EBFA2291977883667F53F14A2A1540A0DF59A6026B2144AB0DF81538C607973C81CEBFE8FA9A962ABBF9F37E4546486CD700E8588A9CE75E4335BC2290F4858
tools\chocolatey.server\bin\ko\System.Spatial.resources.dll
md5: 4D9033E0A80CB642DBF1F21230040E97 | sha1: A7F3999A892F3CA741BD459185B17927C50554B2 | sha256: 1AF03A2CFE532855492A14860E561373EC24FD0142078141F7AAAB004881C68F | sha512: 9C503A01B0EDE0FC6E499E95F2E5E34790082B05552FC447266F5A6C752725606B33C3B845AD883D85F4F55BC0F8899DBC8CEE1416DE4ADF4D9C81CE45D1D0FD
tools\chocolatey.server\bin\Microsoft.Data.Edm.dll
md5: A8486FAC81BEE58BAC2C80AD624029A7 | sha1: E06A1CB1C3DCE96C0D1B528FBE29DCF94C7C0F66 | sha256: E21E5F786B177B97091659F1AA692456F0A61DD16C5A7E2EC15C56B8630A0C42 | sha512: 037FF92080BAABF918015CF110BBDB106647A01AF165F269FEFF13B70770458D5E066D2765380CA834483ECD9CA2A5E79519247004292F2F75239FD78F969847
tools\chocolatey.server\bin\Microsoft.Data.OData.dll
md5: 2D9EFDE9E7A6F09FFB613D2C8E0D6856 | sha1: 10BD091F79E25024903C8CF19568946410F286A8 | sha256: 453F00BC1F81FE757F2397CE0079A01CA94F20E5D3AADDB08565AED152A11D81 | sha512: CCDC8FF8AE011B03863458261D95EF9844F0CC0659B549DD07586D8FDAF621451D33C3615586D288629AFC9F12A6A8532F21BC193BA33EF57B8F531120011D42
tools\chocolatey.server\bin\Microsoft.Web.Infrastructure.dll
md5: 969D6CAF273394F064475292D549516E | sha1: 91F688C235388C8BCEE03FF20D0C8A90DBDD4E3E | sha256: FE18F4259C947C1FD6D74F1827370E72D7AD09AEFB4B720AF227333583E0169F | sha512: B4F6A614E5FC52850E3D02EBF7E85ABF1EBE3FB4EBD6B4F03EC9DC4989CCE88E44714CA2198DD7E632F5ED0F15225A68B31052DA33E5AC3CE48A1C91C3C04446
tools\chocolatey.server\bin\Microsoft.Web.XmlTransform.dll
md5: 6AD7D1E92C9833F4BDDE6A4BC84F2E1A | sha1: B38D23B6A960F5F07664565835137FE3C8FDB7ED | sha256: 13DCF5066E00152238191314D4A46605204FFABDBB830BDD0C97DF3027D1261D | sha512: 01C4ECC46576618394FBBEE701F5A726F97D31FB39D5F1C6305D21CA7AD0B0ABC09B69FB733C42D4D1203FCE78DD3F3D5129C21EA0BC9B92D0AB3A7BF09C006C
tools\chocolatey.server\bin\Newtonsoft.Json.dll
md5: F33CBE589B769956284868104686CC2D | sha1: 2FB0BE100DE03680FC4309C9FA5A29E69397A980 | sha256: 973FD70CE48E5AC433A101B42871680C51E2FEBA2AEEC3D400DEA4115AF3A278 | sha512: FFD65F6487BC71C967ABCF90A666080C67B8DB010D5282D2060C9D87A9828519A14F5D3A6FE76D81E1D3251C2104A2E9E6186AF0EFFD5F331B1342682811EBF4
tools\chocolatey.server\bin\NuGet.Core.dll
md5: 7E2E527AE1442CE50DB65FEFE07FE32F | sha1: 9007FECFA7CDD9851D340084183774876F6F2728 | sha256: 9CF411844161052D76D6ED6327C61790C0AB18497695DDC7E6E18728D23D5CD6 | sha512: E3C988D2843B11302195D7A3AF8E43658F19BD3022F8A10D5010ECBBA4A17D9898C749B7F88C7EEE5BF5D8B83208C7621C9CAD56B13D17EF2079686EDD31F2DC
tools\chocolatey.server\bin\NuGet.Server.Core.dll
md5: DB78DA875C6474644DBC56A79AC278F5 | sha1: 94579EC6C4E2B326D4A1A3F2850F37B1D27F7F0A | sha256: 6D7842B2C4E7443F7B84D5AC0974355F29AFC161437258D883193E188F1D835A | sha512: 7F7DF9142C5752CCB1724E08E8B125A8BE01E0F0345CF0BCF4F0199F63FE8CAD8AADDF80AB4DD5DFC1DFA0632EB7E9D0EDCC374AECF7BFBC8C979D3B97DEB5AC
tools\chocolatey.server\bin\NuGet.Server.dll
md5: DEC70A1C21F284D09C11A27DCD818E04 | sha1: AC0B2878E224BA70A5CA29AC4438AD38F3D103E8 | sha256: E0295AB239A971D8BC27AC7D9DE2E1D0BE1AB4330A04F9E24E197CFD64E9EA1B | sha512: E5EACB51FAE58DB3A50BB7E2056A096AF23CCB18EA9781BE8A22BEA9D272FD605EFBEAB9698202BAFC8D7DCAA8E17A70E34BD8E458FDC3E943F3D5FECA968E71
tools\chocolatey.server\bin\NuGet.Server.V2.dll
md5: 4F6B6C2F0BC96271BAD3D1433B88CC46 | sha1: BB2A7D61F5262C550C60C25D24C64913D5F5FD29 | sha256: 55CECB7B131D0ACDA9B9B54D2CD1EBC4D87D2FE16072BEA6D9E34E2BD1CC44E0 | sha512: 7A6F1C207D4659A5645AB91DA3E4992E32EE689D823F26063D0A19AD28C85D03F2E0F924B73B6D9E3F1E644BFA9B7FAD39AA9C4976B72860CEA2CE4E36C179D8
tools\chocolatey.server\bin\ru\Microsoft.Data.Edm.resources.dll
md5: 26D987A429491DCAB9E82CE461A0A0DE | sha1: 03BC2B2AE8F3EE236A0F1BD966F8FE506D28BDDE | sha256: EFDFEF09FADF2E5DDCA50292F573B65AA083825BA4694E9565B1A7A61555AFE4 | sha512: D236476A014CE54EFAD5518A4043A90FFE0DB9058AE3497ED0462A6DF758699592CD3D8CC5A32C902D9B06D2DB4BFB8E7C7E49455AE8891C56F6D91A1F32889B
tools\chocolatey.server\bin\ru\Microsoft.Data.OData.resources.dll
md5: 7797413A339E75F9A50DFA795CB3D209 | sha1: 4832CA95C9F4E2C46650D7781B25DDC6151B968A | sha256: 0EAD601AD6D06E9AAB0BC12ECD7180E15AF32AFFE2B67725752CAD19155DDCB2 | sha512: 75C27AC97604C800656025DEDCCE6F9D150AC10D3866BB25756EA7572BDDD83658EBB2C22260C1E2E26C7A42565B5C8A3CC8A0C1EDC5755A3A551D21062018E5
tools\chocolatey.server\bin\ru\System.Spatial.resources.dll
md5: B34274F7D20DA79A18CA0FF162D803A3 | sha1: 348784FA5344A6D1EB392FBAA342182CAF4FA125 | sha256: D7F3D34CAA1719767B7810CFA28C25BDEF4F6B7BC75FDDA9BB8FA49BE15470D3 | sha512: F0875CDCC4EE3E61C33D254C8CDD8BC62EF5C58A47A7D2D38DC46D0B571D2119F800B2311B3C7A895F640C89A0C9CAB2A0179CDE4631F27357FD6F5787172B20
tools\chocolatey.server\bin\SimpleChocolateyServer.dll
md5: DF1F12FAD404461B35BE05D817D54BB1 | sha1: 5092AAA6DCF1FA608E83E779E7D0507D9E18FC78 | sha256: 22DC88CDAAC308B4CA9D805F939C354DC5C58154033631BDAFB16FF48A518EEB | sha512: BFFFB863555F9928448E475384484807B88066B2CCF5627482625557257E66F397DBCBD9A86872FCEF4A22FED220A1A5D5CE74FFA207AEB0379615DCFBAF4FAD
tools\chocolatey.server\bin\System.Net.Http.Formatting.dll
md5: 589E1B764C0DC53BF645054960626AB1 | sha1: A5616537CA4E4AD5EB0BEB48863AE65E9EA91080 | sha256: 1C7FA94DE5E727852934387B6B0094ABC16F660C6C91B38FB3F5BC580CFBDC1F | sha512: DFD6924DD7BAF7EB1B8D3CC862FD7FB4A311818EE5684C7A85E3106EAD0F3DAE2A79956AAD9B5404C88A1D2607CAD627D0EFD729E9A9C1C1425B907884FBD1D7
tools\chocolatey.server\bin\System.Spatial.dll
md5: 6FC50411D2011D0DB6600D4A6915E049 | sha1: 9D287DF5F8021E39B909DAEA6AD2FC569B871707 | sha256: 736B13A63D61C8F4F3E1C87F0836FCB2EB80BC099BA2DCE339797B3A7EF7AF8B | sha512: 49511AD2322511168B2E6528D9819D68FB1D563FB575495BA807D3BC3AFB832DF4C559AE5606E1A0EF3228021892422233EA4A53E783006110CB9ABF002504B2
tools\chocolatey.server\bin\System.Web.Http.dll
md5: 1982B5586DE16B532074211AB7DA1CA6 | sha1: ED3E73BA41910D32618EBBB5E82BF9E74B51B062 | sha256: A47387C4A098DF3A57B967F1FF8604C7578F75B1481B2B969DF68DCEEF83ADFA | sha512: CBFFC5946773805EC1AE610C222EC8ABC65E39D561BD7E8CC98DC86655C218B5BD0CC15896D1F63FB061E493D7E5B88F26CF41FB5FAA24C4C754ADDE3792FC2B
tools\chocolatey.server\bin\System.Web.Http.OData.dll
md5: 937424C2BAB4E83D73F0F827DF2593EB | sha1: C7E4BEC513915A79687B379A626B4F5AE1997575 | sha256: 5058695333451AC9358AFE43AD6B37A8D141AA37D4D7EF8EACA702C833CC8B85 | sha512: A2D50C0D9148CEBCE4DCB619AC7517BA58611D2CD479AE754AA8E44C34D3FE1073B9E93C2D5D115949FB5009B8BF09FF9F302B89701F0C3462EE555EDDAA3078
tools\chocolatey.server\bin\System.Web.Http.WebHost.dll
md5: C3138D9BC26BCD3D225F551ED8C41792 | sha1: 60E5E95F4D0B06978636760F3375D6E23B28530B | sha256: ACEE4E07C74C6E0E10CFD25111D1E2E6A213EF6DB97449551C0E665250C5C3E9 | sha512: 3B8F4974E8755D4875DA125F2F04B7916C4B1F555E033E02A566F6037AC9A642CFFA4F5F36C83310223C41E1F1F44156C1763F241E7167D3E8CAB6F1A84D3177
tools\chocolatey.server\bin\WebActivatorEx.dll
md5: E6EBF27FA68C47A434C2E6AC0C08CF5A | sha1: 113B4FBD946CD38A296FF07C6562A88676D7B79B | sha256: D3DA14B92659035996CB517E0A9001093780104F6018D56894355A53CF014900 | sha512: 2CBCDBDBE9C17A09173C36EF35AE4DECAC7D4AB54342E8443781E772C595CAA23E2735533E1BD330C4D6DA52574B3D281714514A35D988AC1E0A0BDD99948968
tools\chocolatey.server\bin\zh-Hans\Microsoft.Data.Edm.resources.dll
md5: B612C7AC7BF05FE840EE140E465CDC5F | sha1: CC3006CCCB98C7DDF1E59D06DE2522C3A392276C | sha256: CC2B253B14925F006C2EBB3B4A3DC189CFAB5CC704FAB380FA7591360F0113A7 | sha512: 03FB993EC17FF7E25FDFE5D1B0708703E7910F1117A6A8D333103C79DC427743250FB81D90AC58B0BF2D56CD88AF0BEAA0842B5A8FFAF1AD8952E10DD8699548
tools\chocolatey.server\bin\zh-Hans\Microsoft.Data.OData.resources.dll
md5: 9B7A0D1CA2C7D98EF2DBD26E021611DA | sha1: 25D24F42A8D9E514AAFE68F0020D0002B7DECCAD | sha256: B9E746B03E24B42422D43073F776D4B30A0CFCF2EE1DFBDF237AAC2133ACFF6F | sha512: 8E45E1B947D9582946B6CCFF7F2412F496CE95BF608A9E57735B66DF325F4DBE4133D86C9D7D3E1AA4955B3AA0AD6C01E2811543B83BB512D049EAD512D7440B
tools\chocolatey.server\bin\zh-Hans\System.Spatial.resources.dll
md5: 16DF744479F52983772CF561D7E4A24C | sha1: DB12A18DC824F94F5555579BF3F314E4D8AA1341 | sha256: 5C8A543B0FD9BD4D710B7DCF64A263B746AE16BB1C9C557A5A10D57B23545C0D | sha512: 9F21CC776BCB479A049895EA585363E40A200C399D4DAA4472EF90316E561D1A43F2D3BEBFC235682A8D7B2A2BA3518AEA586E377ABCA4460A56DBB2409CB12D
tools\chocolatey.server\bin\zh-Hant\Microsoft.Data.Edm.resources.dll
md5: 6B407EFAA54B7763623C334F79DD9A0C | sha1: 35EF4A971633FBF5EF55211A7FEC57E21CE701FE | sha256: AFBBCCE2A14A193223698DCAB7BE7B68146894D1A53C0CFB98A482C22E7D7E4F | sha512: C1AC7B7B5E63CB2E26EC280D737BFC6C597A6FB2716B45E3B30F024619BF2E2AA3A0254165E071D7E94DDD723FB50AF9559C6A18E955D1BA268E5AF2028A06CE
tools\chocolatey.server\bin\zh-Hant\Microsoft.Data.OData.resources.dll
md5: BD42C348476F9C172036B4604FA77723 | sha1: 2A72E6DDB25E492409E03603FBD175CE15A45AA7 | sha256: C274591B89543501FF49A21235CBF4461F705115C6E174797674E3DD1D6CCCF0 | sha512: 3004AA7F3F5FBC85252FAD9FAB234D2C3E862621CF84AEA6A31B2F5787B77F981E15848784A1B41F23B95337F8A2C2399E76B3872BF0C189F6FAD6CD26371828
tools\chocolatey.server\bin\zh-Hant\System.Spatial.resources.dll
md5: F6C85650676D5D8DF7301C993867B72C | sha1: 09147FC3AC4EBD2499B3DAC3B66493ABE2A969EA | sha256: CD931B09AA038748705AA11D10544B11C483B610B47F955C34323C8B00408829 | sha512: 0644F4037E5F8674E96EC5F72E59EA4F7FBE6FE8A9AD0FB826530BD3756B9D3BC54CAF59344B7711439CF983CF2B4C2FA033BB14D5F8F085F63A7B649428EED2
tools\chocolatey.server\Content\images\chocolatey.png
 
tools\chocolatey.server\Content\images\MarksUsePolicy.pdf
md5: E7C0A980A8DD520512A54A07495018C7 | sha1: 9611B8E9646B2F29449BFDF6DFC3FE70FE0F9213 | sha256: 4F15703E1B5B57287FDA91E3C341479233CCEC5ACB21A383135B1917CCF49C95 | sha512: 55925B4B93E66FBEA63908A1D29B2729C6A50DE4B36EB40BA74D427F8DFFE13330CB0331F63BCB247F7D6DC95004BA409C4336BB2C767693678604D80158E3DB
tools\chocolatey.server\Default.aspx
 
tools\chocolatey.server\favicon.ico
 
tools\chocolatey.server\Web.config
<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  https://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <configSections>
    <section name="httpAuth" type="HttpAuth.Configuration.HttpAuthSection,HttpAuthenticationModule" />
    <sectionGroup name="elmah">
      <section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
      <section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
      <section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
      <section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
    </sectionGroup>
  </configSections>
  <!-- To turn on basic auth with the HttpAuth Module, perform the following:
       - Set up your users in the credentials section below.
       - In system.web/authorization (section after httpAuth), find the allow 
         without verbs and change the word "allow" to "deny". Leave the allow 
         with 'verbs="PUT,POST"' alone or you won't be able to push packages.
       - If you want to use the local install.ps1, change 
         appSettings/forceLocalChocolateyPackage to "true" and ensure you 
         have a local Chocolatey nupkg on the server.
    -->
  <httpAuth mode="Basic" realm="Chocolatey Simple Server">
    <!-- The above values have been tested to work. Possible values you can 
         set (with no guarantees or support):
         - Mode - {None|Basic|Digest}
         - Realm - {Plain|Secret|<Pick some value>} 
      -->
    <credentials source="Inline" passwordFormat="Clear">
      <!--The above values have been tested to work. Possible values you can 
          set (with no guarantees or support):
          - Source - {Inline|FormsAuthentication|MembershipProvider}
          - PasswordFormat - {Clear|SHA1|MD5|MD5Digest} - MD5Digest only with Digest mode
        -->
      <!-- remove or change this user -->
      <user name="choco" password="rocks" />
      <!-- add users here -->
    </credentials>
  </httpAuth>
  <system.web>
    <compilation debug="false" targetFramework="4.6" />
    <!-- maxRequestLength is specified in Kb -->
    <httpRuntime targetFramework="4.6" executionTimeout="1200" maxRequestLength="2147482548" />
    <!-- <authentication mode="Windows|Forms|Passport|None">-->
    <authentication mode="None" />
    <authorization>
      <!-- leave this alone or you won't be able to push packages -->
      <allow users="?" verbs="PUT, POST" />
      <!-- change "allow" below to "deny" to turn on basic auth -->
      <allow users="?" />
    </authorization>
    <httpModules>
      <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
      <add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" />
      <add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
      <add name="HttpAuthenticationModule" type="HttpAuth.HttpAuthenticationModule, HttpAuthenticationModule" />
    </httpModules>
    <customErrors mode="RemoteOnly" />
  </system.web>
  <system.webServer>
    <handlers>
      <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
      <remove name="OPTIONSVerbHandler" />
      <remove name="TRACEVerbHandler" />
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
      <remove name="WebDAV" />
      <add name="PowerShell-Integrated-4.0" path="*.ps1" verb="GET,HEAD" type="System.Web.UI.PageHandlerFactory" modules="ManagedPipelineHandler" preCondition="integratedMode,runtimeVersionv4.0" />
      <!-- Depending on IIS configuration, these may have to be added.
      <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,PUT,DEBUG" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
      <remove name="OPTIONSVerbHandler" /><remove name="TRACEVerbHandler" />
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
        -->
    </handlers>
    <staticContent>
      <remove fileExtension=".ps1" />
      <mimeMap fileExtension=".nupkg" mimeType="application/zip" />
    </staticContent>
    <modules runAllManagedModulesForAllRequests="true">
      <remove name="WebDAVModule" />
      <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" preCondition="managedHandler" />
      <add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" preCondition="managedHandler" />
      <add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" preCondition="managedHandler" />
    </modules>
    <security>
      <requestFiltering>
        <!-- maxAllowedContentLength is specified in Bytes -->
        <requestLimits maxAllowedContentLength="2147482548" />
      </requestFiltering>
    </security>
    <validation validateIntegratedModeConfiguration="false" />
  </system.webServer>
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
  </system.serviceModel>
  <!-- The following parts are necessary if you turn on basic authentication and want to use the local install.ps1 script
      You must also make the following adjustments:
      - You must put a chocolatey nupkg on your local instance
      - You must set appSettings/forceLocalChocolateyPackage to true
  -->
  <location path="install.ps1" inheritInChildApplications="false">
    <system.web>
      <authorization>
        <allow users="?"/>
      </authorization>
    </system.web>
  </location>
  <location path="7za.exe" inheritInChildApplications="false">
    <system.web>
      <authorization>
        <allow users="?"/>
      </authorization>
    </system.web>
  </location>
  <location path="chocolatey/Packages(Id='chocolatey')/Download" inheritInChildApplications="false">
    <system.web>
      <authorization>
        <allow users="?"/>
      </authorization>
    </system.web>
  </location>
  <elmah>
    <!--
        See http://code.google.com/p/elmah/wiki/SecuringErrorLogPages for 
        more information on remote access and securing ELMAH.
    -->
    <security allowRemoteAccess="false" />
    <errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data/Logs" />
  </elmah>
  <location path="elmah.axd" inheritInChildApplications="false">
    <system.web>
      <httpHandlers>
        <add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
      </httpHandlers>
      <!-- 
        See http://code.google.com/p/elmah/wiki/SecuringErrorLogPages for 
        more information on using ASP.NET authorization securing ELMAH.

      <authorization>
        <allow roles="admin" />
        <deny users="*" />  
      </authorization>
      -->
    </system.web>
    <system.webServer>
      <handlers>
        <add name="ELMAH" verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
      </handlers>
    </system.webServer>
  </location>
  <appSettings>
    <!--
    Determines if an Api Key is required to push\delete packages from the server. 
    -->
    <add key="requireApiKey" value="true" />

    <!-- 
    Set the value here to allow people to push/delete packages from the server.
    NOTE: This is a shared key (password) for all users.
    -->
    <add key="apiKey" value="chocolateyrocks" />

    <!--
    Change the path to the packages folder. Default is ~/Packages.
    This can be a virtual or physical path.
    -->
    <add key="packagesPath" value="~/App_Data/Packages" />

    <!--
    Set allowOverrideExistingPackageOnPush to false if attempts to upload a package that already exists should fail (do not allow overwriting packages with same id + version).
    -->
    <add key="allowOverrideExistingPackageOnPush" value="false" />

    <!--
    Set ignoreSymbolsPackages to true to filter out symbols packages. Since NuGet.Server does not come with a symbol server,
    it makes sense to ignore this type of packages. When enabled, files named `.symbols.nupkg` or packages containing a `/src` folder will be ignored.
    
    If you only push .symbols.nupkg packages, set this to false so that packages can be uploaded.
    -->
    <add key="ignoreSymbolsPackages" value="true" />

    <!--
    Set enableDelisting to true to enable delist instead of delete as a result of a "nuget delete" command.
    - delete: package is deleted from the repository's local filesystem.
    - delist: 
      - "nuget delete": the "hidden" file attribute of the corresponding nupkg on the repository local filesystem is turned on instead of deleting the file.
      - "nuget list" skips delisted packages, i.e. those that have the hidden attribute set on their nupkg.
      - "nuget install packageid -version version" command will succeed for both listed and delisted packages.
        e.g. delisted packages can still be downloaded by clients that explicitly specify their version.
    -->
    <add key="enableDelisting" value="true" />

    <!--
    Set enableFrameworkFiltering to true to enable filtering packages by their supported frameworks during search.
    -->
    <add key="enableFrameworkFiltering" value="false" />

    <!--
    When running NuGet.Server in a NAT network, ASP.NET may embed the server's internal IP address in the V2 feed.
    Uncomment the following configuration entry to enable NAT support.
    -->
    <!-- <add key="aspnet:UseHostHeaderForRequestUrl" value="true" /> -->
    <!--
    Set enableFileSystemMonitoring to true (default) to enable file system monitoring (which will update the package cache appropriately on file system changes).
    Set it to false to disable file system monitoring.
    NOTE: Disabling file system monitoring may result in increased storage capacity requirements as package cache may only be purged by a background job running 
    on a fixed 1-hour interval.
    -->
    <add key="enableFileSystemMonitoring" value="true" />
    <!--
      Turns off ASP.NET's built in simple membership provider
    -->
    <add key="enableSimpleMembership" value="false" />
    <!--
      Force using a locally deployed Chocolatey package instead of performing a check.
      This must be set to true if you turn on basic authentication and want to use the local install.ps1 script
      You must also make the following adjustments:
      - You must put a chocolatey nupkg on your local instance
    -->
    <add key="forceLocalChocolateyPackage" value="false"/>
    <!--
      Use host header for url 
    -->
    <add key="aspnet:UseHostHeaderForRequestUrl" value="true" />
  </appSettings>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Data.Edm" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.8.4.0" newVersion="5.8.4.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Data.OData" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.8.4.0" newVersion="5.8.4.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Spatial" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.8.4.0" newVersion="5.8.4.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
tools\chocolatey.server\Web.config.install.xdt
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <configSections xdt:Transform="InsertIfMissing">
    <section name="httpAuth" type="HttpAuth.Configuration.HttpAuthSection,HttpAuthenticationModule" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
  </configSections>
  <httpAuth mode="Basic" realm="Chocolatey Simple Server" xdt:Transform="InsertIfMissing">
    <!-- To turn on basic auth with the HttpAuth Module, perform the following:
       - Set up your users in the credentials section below.
       - In system.web/authorization (section after httpAuth), find the allow 
         without verbs and change the word "allow" to "deny". Leave the allow 
         with 'verbs="PUT,POST"' alone or you won't be able to push packages.
	  -->
	<!-- The above values have been tested to work. Possible values you can 
         set (with no guarantees or support):
         - Mode - {None|Basic|Digest}
         - Realm - {Plain|Secret|<Pick some value>} 
      -->
    <credentials source="Inline" passwordFormat="Clear">
	  <!--The above values have been tested to work. Possible values you can 
          set (with no guarantees or support):
          - Source - {Inline|FormsAuthentication|MembershipProvider}
          - PasswordFormat - {Clear|SHA1|MD5|MD5Digest} - MD5Digest only with Digest mode
        -->
      <!-- remove or change this user -->
      <user name="choco" password="rocks" />
      <!-- add users here -->
    </credentials>
  </httpAuth>
  <system.web>
    <compilation debug="false" targetFramework="4.6" xdt:Transform="SetAttributes(targetFramework)" />
    <httpRuntime targetFramework="4.6" xdt:Transform="SetAttributes(targetFramework,executionTimeout,maxRequestLength)" executionTimeout="1200" maxRequestLength="2147482548" />
    <authentication mode="None" xdt:Transform="InsertIfMissing"/>
    <httpModules xdt:Transform="InsertIfMissing">
      <add name="HttpAuthenticationModule" type="HttpAuth.HttpAuthenticationModule, HttpAuthenticationModule" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
    </httpModules>
	<customErrors mode="RemoteOnly" xdt:Transform="InsertIfMissing" />
	<authorization xdt:Transform="InsertIfMissing">
      <allow users="?" verbs="PUT, POST" xdt:Transform="InsertIfMissing" />
      <!-- change "allow" below to "deny" to turn on basic auth -->
      <allow users="?" />
    </authorization>
  </system.web>
  <system.webServer>
    <handlers xdt:Transform="InsertIfMissing">
      <remove name="ExtensionlessUrlHandler-Integrated-4.0" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
      <remove name="OPTIONSVerbHandler" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
      <remove name="TRACEVerbHandler" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
      <remove name="WebDAV" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
      <add name="PowerShell-Integrated-4.0" path="*.ps1" verb="GET,HEAD" type="System.Web.UI.PageHandlerFactory" modules="ManagedPipelineHandler" preCondition="integratedMode,runtimeVersionv4.0" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
    </handlers>
    <staticContent xdt:Transform="InsertIfMissing">
      <mimeMap fileExtension=".nupkg" mimeType="application/zip" xdt:Locator="Match(fileExtension)" xdt:Transform="InsertIfMissing" />
      <remove fileExtension=".ps1" xdt:Locator="Match(fileExtension)" xdt:Transform="InsertIfMissing" />
    </staticContent>
    <modules runAllManagedModulesForAllRequests="true" xdt:Transform="InsertIfMissing">
      <remove name="WebDAVModule" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
    </modules>
    <security xdt:Transform="InsertIfMissing">
      <requestFiltering xdt:Transform="InsertIfMissing">
        <requestLimits maxAllowedContentLength="2147482548" xdt:Transform="InsertIfMissing" />
      </requestFiltering>
    </security>
  </system.webServer>
  <location path="api/v2/package" xdt:Locator="Match(path)" xdt:Transform="InsertIfMissing" />
  <location path="api/v2/package" xdt:Locator="Match(path)" xdt:Transform="Remove" />
  <location path="chocolatey" xdt:Locator="Match(path)" xdt:Transform="InsertIfMissing" />
  <location path="chocolatey" xdt:Locator="Match(path)" xdt:Transform="Remove" />
  <location path="install.ps1" inheritInChildApplications="false" xdt:Locator="Match(path)" xdt:Transform="InsertIfMissing">
    <system.web>
      <authorization>
        <allow users="?"/>
      </authorization>
    </system.web>
  </location>
  <location path="7za.exe" inheritInChildApplications="false" xdt:Locator="Match(path)" xdt:Transform="InsertIfMissing">
    <system.web>
      <authorization>
        <allow users="?"/>
      </authorization>
    </system.web>
  </location>
  <location path="chocolatey/Packages(Id='chocolatey')/Download" inheritInChildApplications="false" xdt:Locator="Match(path)" xdt:Transform="InsertIfMissing">
    <system.web>
      <authorization>
        <allow users="?"/>
      </authorization>
    </system.web>
  </location>
  <appSettings>
    <add key="ignoreSymbolsPackages" value="true" xdt:Locator="Match(key)" xdt:Transform="InsertIfMissing" />
    <add key="enableFileSystemMonitoring" value="true" xdt:Locator="Match(key)" xdt:Transform="InsertIfMissing" />
    <add key="enableSimpleMembership" value="false" xdt:Locator="Match(key)" xdt:Transform="InsertIfMissing" />
    <add key="forceLocalChocolateyPackage" value="false" xdt:Locator="Match(key)" xdt:Transform="InsertIfMissing" />
    <add key="aspnet:UseHostHeaderForRequestUrl" value="true" xdt:Locator="Match(key)" xdt:Transform="InsertIfMissing" />
  </appSettings>
  <runtime xdt:Transform="InsertIfMissing">
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" xdt:Transform="InsertIfMissing">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
        <bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" xdt:Transform="InsertIfMissing" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
        <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" xdt:Transform="InsertIfMissing" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
        <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" xdt:Transform="InsertIfMissing" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Data.Edm" publicKeyToken="31bf3856ad364e35" culture="neutral" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
        <bindingRedirect oldVersion="0.0.0.0-5.8.4.0" newVersion="5.8.4.0" xdt:Transform="InsertIfMissing" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Data.OData" publicKeyToken="31bf3856ad364e35" culture="neutral" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
        <bindingRedirect oldVersion="0.0.0.0-5.8.4.0" newVersion="5.8.4.0" xdt:Transform="InsertIfMissing" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Spatial" publicKeyToken="31bf3856ad364e35" culture="neutral" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
        <bindingRedirect oldVersion="0.0.0.0-5.8.4.0" newVersion="5.8.4.0" xdt:Transform="InsertIfMissing" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  <system.codedom xdt:Transform="InsertIfMissing" />
  <system.codedom xdt:Transform="Remove" />
</configuration>
tools\chocolateybeforemodify.ps1
$packageName       = $env:ChocolateyPackageName
$toolsDir          = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$webToolsDir       = Join-Path $toolsDir $packageName
$packageWebConfig  = Join-Path $webToolsDir 'Web.config'
$webInstallDir     = Join-Path (Get-ToolsLocation) $packageName
$existingWebConfig = Join-Path $webInstallDir 'Web.config'

If (Test-Path $existingWebConfig) {
  Write-Output "Copying existing web.config to package directory to allow proper updates"
  Copy-Item $existingWebConfig $packageWebConfig -Force -ErrorAction SilentlyContinue
}
tools\chocolateyInstall.ps1
$packageName   = $env:ChocolateyPackageName
$toolsDir      = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$webToolsDir   = Join-Path $toolsDir $packageName
$packageWebConfig  = Join-Path $webToolsDir 'Web.config'
$webInstallDir     = Join-Path (Get-ToolsLocation) $packageName
$existingWebConfig = Join-Path $webInstallDir 'Web.config'

#Enable Web Services
#cinst IIS-WebServerRole -source WindowsFeatures
#cinst IIS-ISAPIFilter -source WindowsFeatures
#cinst IIS-ISAPIExtensions -source WindowsFeatures

# https://github.com/chocolatey/chocolatey/wiki/DevelopmentEnvironmentSetup
# cinst ASPNET -source webpi
# cinst ASPNET_REGIIS -source webpi
# cinst DefaultDocument -source webpi
# cinst DynamicContentCompression -source webpi
# cinst HTTPRedirection -source webpi
# cinst IIS7_ExtensionLessURLs -source webpi
# cinst IISManagementConsole -source webpi
# cinst ISAPIExtensions -source webpi
# cinst ISAPIFilters -source webpi
# cinst NETExtensibility -source webpi
# cinst RequestFiltering -source webpi
# cinst StaticContent -source webpi
# cinst StaticContentCompression -source webpi
# cinst UrlRewrite2 -source webpi

# W3SVC should be running

# http://msdn.microsoft.com/en-us/library/windows/desktop/ms724832.aspx
$osVersion = [Environment]::OSVersion.Version
if ($osVersion -ge [Version]'6.2') #8/2012+
{
#cinst IIS-NetFxExtensibility45 -source WindowsFeatures
#cinst NetFx4Extended-ASPNET45 -source WindowsFeatures
#cinst IIS-ASPNet45 -source WindowsFeatures

} else { #Windows 7/2008 and below
."$env:windir\microsoft.net\framework\v4.0.30319\aspnet_regiis.exe" -i
}

If (Test-Path -Path $existingWebConfig) {
  Write-Output "Copying existing web.config to package directory to allow proper updates"
  Copy-Item $existingWebConfig $packageWebConfig -Force -ErrorAction SilentlyContinue
  Write-Warning "Due to transforms happening AFTER this script completes, you will likely need to manually migrate '$packageWebConfig' back to '$existingWebConfig' once upgrade is complete. Also check the config file to make sure that it was not malformed by the XDT transform."
}

if (! (Test-Path -Path $webInstallDir)) {
  New-Item $webInstallDir -ItemType Directory -Force | Out-Null
  Copy-Item $webToolsDir\* $webInstallDir -Recurse -Force
} else {
  try {
    Write-Debug "Removing all but the App_Data folder in the existing '$webInstallDir'"
    Get-ChildItem -Path "$webInstallDir" -Recurse | % {
      if ($_.FullName -match 'App_Data' -or $_.FullName -match 'Web.config') {
        Write-Debug " - Skipping $($_.FullName)"
      } else {
        Write-Debug " - Removing $($_.FullName)"
        Remove-Item $_.FullName -Recurse -Force -ErrorAction SilentlyContinue
      }
    }
  } catch {
    Write-Warning "Had an error deleting files from '$webInstallDir'. You will need to manually remove files. `n Error: $($_.Message)"
  }

  # Now copy all new except the App_Data folder
  Write-Debug "Copying files from '$webToolsDir' to '$webInstallDir'"
  Get-ChildItem -Path $webToolsDir -Recurse | % {
    if ($_.FullName -match 'App_Data') {
      # leave these items
      Write-Debug "- Skipping $($_.FullName)"
    } else {
      if (! ($_.PSIsContainer)) {
        $srcFile = $_.FullName
        $destinationFile = Join-Path $webInstallDir ($srcFile.Substring($webToolsDir.length))
        $destinationDir = $destinationFile.Replace($destinationFile.Split("\")[-1],"")
        #$destinationDir = Join-Path $webInstallDir ($_.Parent.FullName.Substring($webToolsDir.length))
        if (! (Test-Path -Path $destinationDir)) {
          Write-Debug " - Creating $destinationDir"
          New-Item $destinationDir -ItemType Directory -Force | Out-Null
        }
        try {
          Write-Debug " - Copying '$srcFile' to '$destinationFile'"
          Copy-Item $srcFile -Destination $destinationFile -Force -ErrorAction Stop
        } catch {
          Write-Warning "Unable to copy '$srcFile' to '$destinationFile'. `n Error: $_"
        }
      }
    }
  }
}

#Import-Module WebAdministration
#Remove-WebSite -Name "Default Web Site" -ErrorAction SilentlyContinue
#Remove-WebSite -Name "ChocolateyServer" -ErrorAction SilentlyContinue
#New-WebSite -ID 1 -Name "ChocolateyServer" -Port 80 -PhysicalPath "$webInstallDir" -Force

# $networkSvc = 'NT AUTHORITY\NETWORK SERVICE'
# Write-Host "Setting folder permissions on `'$webInstallDir`' to 'Read' for user $networkSvc"
# $acl = Get-Acl $webInstallDir
# $acl.SetAccessRuleProtection($False, $True)
# $rule = New-Object System.Security.AccessControl.FileSystemAccessRule("$networkSvc","Read", "ContainerInherit, ObjectInherit", "None", "Allow");
# $acl.AddAccessRule($rule);
# Set-Acl $webInstallDir $acl

# $webInstallAppDataDir = Join-Path $webInstallDir 'App_Data'
# Write-Host "Setting folder permissions on `'$webInstallAppDataDir`' to 'Modify' for user $networkSvc"
# $acl = Get-Acl $webInstallAppDataDir
# $acl.SetAccessRuleProtection($False, $True)
# $rule = New-Object System.Security.AccessControl.FileSystemAccessRule("$networkSvc","Modify", "ContainerInherit, ObjectInherit", "None", "Allow");
# $acl.AddAccessRule($rule);
# Set-Acl $webInstallAppDataDir $acl
#
# Import-Module WebAdministration
# $appPoolPath = "IIS:\AppPools\$projectName"
# #$pool = new-object
# Write-Warning "You can safely ignore the next error if it occurs related to getting an app pool that doesn't exist"
# $pool = Get-Item $appPoolPath
# if ($pool -eq $null) {
#   Write-Host "Creating the app pool `'$appPoolPath`'"
#   $pool = New-Item $appPoolPath
# }
#
# $pool.processModel.identityType = "NetworkService"
# $pool | Set-Item
# Set-itemproperty $appPoolPath -Name "managedRuntimeVersion" -Value "v4.0"
# #Set-itemproperty $appPoolPath -Name "managedPipelineMode" -Value "Integrated"
# Start-WebAppPool "$projectName"
# Write-Host "Creating the site `'$projectName`' with appPool `'$projectName`'"
# New-WebApplication "$projectName" -Site "Default Web Site" -PhysicalPath $srcDir -ApplicationPool "$projectName" -Force

#Client SKUs need to enable firewall
#netsh advfirewall firewall add rule name="Open Port 80" dir=in action=allow protocol=TCP localport=80
tools\chocolateyuninstall.ps1
$packageName   = $env:ChocolateyPackageName
$webInstallDir = Join-Path (Get-ToolsLocation) $packageName

if (Test-Path $webInstallDir) {
  try {
    Write-Debug "Removing all but the App_Data folder in the existing '$webInstallDir'"
    Get-ChildItem -Path "$webInstallDir" -Recurse | % {
      if ($_.FullName -match 'App_Data' -or $_.FullName -match 'Web.config') {
        Write-Debug " - Skipping $($_.FullName)"
      } else {
        Write-Debug " - Removing $($_.FullName)"
        Remove-Item $_.FullName -Recurse -Force -ErrorAction SilentlyContinue
      }
    }
  }
  catch {
    Write-Warning "Had an error deleting files from '$webInstallDir'. You will need to manually remove files. Error: $_"
  }

  Write-Warning "Removed all from '$webInstallDir' except for App_Data. You should inspect and remove packages/logs manually."
}
tools\LICENSE.txt
                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.
tools\VERIFICATION.txt
Chocolatey Server is from Chocolatey Software, and we maintain the package.

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
Chocolatey Server (Simple) 0.2.5 23916 Thursday, June 14, 2018 Approved
Chocolatey Server (Simple) 0.2.5-beta-20180418 501 Wednesday, April 18, 2018 Approved
Chocolatey Server (Simple) 0.2.4 3943 Monday, February 26, 2018 Approved
Chocolatey Server (Simple) 0.2.3 679 Sunday, February 11, 2018 Approved
Chocolatey Server (Simple) 0.2.2 920 Thursday, January 11, 2018 Approved
Chocolatey Server (Simple) 0.2.1 474 Monday, January 8, 2018 Approved
Chocolatey Server (Simple) 0.2.0 564 Thursday, January 4, 2018 Approved
Chocolatey Server (Simple) 0.1.4 489 Tuesday, January 2, 2018 Approved
Chocolatey Server (Simple) 0.1.3 1425 Friday, October 6, 2017 Approved
Chocolatey Server (Simple) 0.1.2 2811 Thursday, November 17, 2016 Approved
Chocolatey Server (Simple) 0.1.1 2523 Saturday, September 20, 2014 Approved
Chocolatey Server (Simple) 0.1.0 588 Saturday, September 20, 2014 Approved
Discussion for the Chocolatey Server (Simple) Package

Ground Rules:

  • This discussion is only about Chocolatey Server (Simple) and the Chocolatey Server (Simple) 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 Chocolatey Server (Simple), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus