gitextract_fwssxpyf/ ├── .appveyor.yml ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── DISCUSSION_TEMPLATE/ │ │ ├── ideas.yml │ │ └── migrations.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ ├── config.yml │ │ └── outdated-report.yml │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── respond-to-issue.yaml │ ├── respond-to-pr.yaml │ ├── stale.yml │ └── toc.yml ├── .gitignore ├── COMMITTERS.md ├── CONTRIBUTING.md ├── LICENSE.md ├── PSScriptAnalyzerSettings.psd1 ├── README.md ├── automatic/ │ ├── .gitignore │ ├── 1password/ │ │ ├── 1password.json │ │ ├── 1password.nuspec │ │ ├── update.ps1 │ │ └── update_helper.ps1 │ ├── 1password7/ │ │ ├── 1password7.nuspec │ │ ├── Readme.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── 1password8/ │ │ ├── 1password8.nuspec │ │ ├── Readme.md │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── 360ts/ │ │ ├── 360ts.json │ │ ├── 360ts.nuspec │ │ ├── README.md │ │ ├── README_ts.md │ │ ├── README_tse.md │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── 7zip/ │ │ ├── 7zip.json │ │ ├── 7zip.nuspec │ │ ├── README.md │ │ └── update.ps1 │ ├── 7zip.install/ │ │ ├── 7zip.install.json │ │ ├── 7zip.install.nuspec │ │ ├── Changelog.md │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── 7zip.portable/ │ │ ├── 7zip.portable.json │ │ ├── 7zip.portable.nuspec │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── README.md │ ├── absolute-uninstaller/ │ │ ├── README.md │ │ ├── absolute-uninstaller.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── activepresenter/ │ │ ├── README.md │ │ ├── activepresenter.nuspec │ │ ├── legal/ │ │ │ ├── License.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── alldup/ │ │ ├── README.md │ │ ├── alldup.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── ant-renamer/ │ │ ├── Changelog.md │ │ ├── Readme.md │ │ ├── ant-renamer.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── aptana-studio/ │ │ ├── README.md │ │ ├── aptana-studio.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── url.json │ ├── audacity/ │ │ ├── README.md │ │ ├── audacity.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── autohotkey/ │ │ ├── README.md │ │ ├── autohotkey.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── autohotkey.install/ │ │ ├── README.md │ │ ├── autohotkey.install.nuspec │ │ ├── tools/ │ │ │ ├── VERIFICATION.txt │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── license.txt │ │ └── update.ps1 │ ├── autohotkey.portable/ │ │ ├── README.md │ │ ├── autohotkey.portable.nuspec │ │ ├── tools/ │ │ │ ├── VERIFICATION.txt │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── license.txt │ │ └── update.ps1 │ ├── autoit/ │ │ ├── README.md │ │ ├── autoit.nuspec │ │ └── update.ps1 │ ├── autoit.install/ │ │ ├── README.md │ │ ├── autoit.install.nuspec │ │ ├── tools/ │ │ │ ├── LICENSE.txt │ │ │ ├── VERIFICATION.txt │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── autoit.portable/ │ │ ├── README.md │ │ ├── autoit.portable.nuspec │ │ ├── tools/ │ │ │ ├── LICENSE.txt │ │ │ ├── VERIFICATION.txt │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── avidemux/ │ │ ├── README.md │ │ ├── avidemux.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── avidemux.qs │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── azcopy10/ │ │ ├── azcopy10.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── bleachbit/ │ │ ├── README.md │ │ ├── bleachbit.nuspec │ │ └── update.ps1 │ ├── bleachbit.install/ │ │ ├── README.md │ │ ├── bleachbit.install.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── blender/ │ │ ├── Readme.md │ │ ├── blender.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── bluefish/ │ │ ├── Readme.md │ │ ├── bluefish.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── brackets/ │ │ ├── README.md │ │ ├── brackets.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── brave/ │ │ ├── README-beta.md │ │ ├── README-release.md │ │ ├── brave.json │ │ ├── brave.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── bulk-crap-uninstaller/ │ │ ├── README.md │ │ ├── bulk-crap-uninstaller.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── calibre/ │ │ ├── Changelog.md │ │ ├── Readme.md │ │ ├── calibre.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── ccleaner/ │ │ ├── README.md │ │ ├── ccleaner.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── cdrtfe/ │ │ ├── README.md │ │ ├── cdrtfe.json │ │ ├── cdrtfe.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── chromium/ │ │ ├── README.md │ │ ├── chromium.json │ │ ├── chromium.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helper.ps1 │ │ └── update.ps1 │ ├── classic-shell/ │ │ ├── README.md │ │ ├── classic-shell.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1.archived │ ├── clementine/ │ │ ├── README.md │ │ ├── clementine.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── clipboardfusion/ │ │ ├── README.md │ │ ├── clipboardfusion.json │ │ ├── clipboardfusion.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── clipgrab/ │ │ ├── README.md │ │ ├── clipgrab.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── cmake/ │ │ ├── Readme.md │ │ ├── cmake.json │ │ ├── cmake.nuspec │ │ └── update.ps1 │ ├── cmake.install/ │ │ ├── Readme.md │ │ ├── cmake.install.json │ │ ├── cmake.install.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── cmake.portable/ │ │ ├── Readme.md │ │ ├── cmake.portable.json │ │ ├── cmake.portable.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── codeblocks/ │ │ ├── README.md │ │ ├── codeblocks.nuspec │ │ ├── tools/ │ │ │ ├── .skipAutoUninstaller │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── codelite/ │ │ ├── Readme.md │ │ ├── codelite.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── composer/ │ │ ├── ReadMe.md │ │ ├── composer.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyinstall.ps1 │ │ └── update.ps1 │ ├── curl/ │ │ ├── README.md │ │ ├── curl.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── cutepdf/ │ │ ├── README.md │ │ ├── cutepdf.nuspec │ │ ├── info │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── update_helper.ps1 │ ├── cygwin/ │ │ ├── Changelog.md │ │ ├── Readme.md │ │ ├── cygwin.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── datagrip/ │ │ ├── README.md │ │ ├── datagrip.nuspec │ │ ├── tools/ │ │ │ ├── ChocolateyInstall.ps1 │ │ │ ├── ChocolateyUnInstall.ps1 │ │ │ └── silent.config │ │ └── update.ps1 │ ├── defraggler/ │ │ ├── README.md │ │ ├── defraggler.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── diskdefragtouch/ │ │ ├── README.md │ │ ├── _update.ps1 │ │ ├── diskdefragtouch.nuspec │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── displayfusion/ │ │ ├── Readme.md │ │ ├── displayfusion.json │ │ ├── displayfusion.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── djv/ │ │ ├── README.md │ │ ├── djv.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.md │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── dropbox/ │ │ ├── Readme.md │ │ ├── dropbox.json │ │ ├── dropbox.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyinstall.ps1 │ │ │ ├── chocolateyuninstall.ps1 │ │ │ └── helper.ps1 │ │ ├── update.ps1 │ │ └── update_helper.ps1 │ ├── encfs4win/ │ │ ├── README.md │ │ ├── encfs4win.json │ │ ├── encfs4win.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── es/ │ │ ├── README.md │ │ ├── es.nuspec │ │ ├── legal/ │ │ │ ├── License.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── etcd/ │ │ ├── README.md │ │ ├── etcd.json │ │ ├── etcd.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── everything/ │ │ ├── Everything.nuspec │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── License.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── ext2fsd/ │ │ ├── README.md │ │ ├── ext2fsd.json │ │ ├── ext2fsd.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── ffmpeg/ │ │ ├── README.md │ │ ├── ffmpeg.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── ffmpeg-full/ │ │ ├── README.md │ │ ├── ffmpeg-full.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── firefox/ │ │ ├── README.md │ │ ├── Readme.firefox.md │ │ ├── Readme.firefoxesr.md │ │ ├── firefox.json │ │ ├── firefox.nuspec │ │ ├── tools/ │ │ │ ├── LanguageChecksums.csv │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helpers.ps1 │ │ ├── update.ps1 │ │ └── update_helper.ps1 │ ├── flightgear/ │ │ ├── README.md │ │ ├── flightgear.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── free-virtual-keyboard/ │ │ ├── README.md │ │ ├── free-virtual-keyboard.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── freecad/ │ │ ├── README.md │ │ ├── freecad.json │ │ ├── freecad.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helper.ps1 │ │ ├── update.ps1 │ │ └── update_helper.ps1 │ ├── freeciv/ │ │ ├── README.md │ │ ├── freeciv.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── freevideoeditor/ │ │ ├── README.md │ │ ├── freevideoeditor.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── ghostscript/ │ │ ├── README.md │ │ ├── ghostscript.nuspec │ │ └── update.ps1 │ ├── ghostscript.app/ │ │ ├── README.md │ │ ├── ghostscript.app.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── ChocolateyInstall.ps1 │ │ │ ├── ChocolateyUninstall.ps1 │ │ │ └── ghostscript.ahk │ │ └── update.ps1 │ ├── gimp/ │ │ ├── README.md │ │ ├── gimp.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── git/ │ │ ├── README.md │ │ ├── git.nuspec │ │ └── update.ps1 │ ├── git-lfs/ │ │ ├── README.md │ │ ├── git-lfs.nuspec │ │ └── update.ps1 │ ├── git-lfs.install/ │ │ ├── README.md │ │ ├── git-lfs.install.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── git.install/ │ │ ├── ARGUMENTS.md │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── git.install.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── git.portable/ │ │ ├── README.md │ │ ├── git.portable.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── gitextensions/ │ │ ├── README.md │ │ ├── gitextensions.json │ │ ├── gitextensions.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.md │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── gmer/ │ │ ├── README.md │ │ ├── gmer.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── gmer.exe.gui │ │ └── update.ps1 │ ├── gnucash/ │ │ ├── Changelog.md │ │ ├── Readme.md │ │ ├── gnucash.json │ │ ├── gnucash.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── gnupg/ │ │ ├── README.md │ │ ├── gnupg.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.CC0.txt │ │ │ ├── LICENSE.GPL2.txt │ │ │ ├── LICENSE.LGPL21.txt │ │ │ ├── LICENSE.LGPL3.txt │ │ │ ├── LICENSE.other.txt │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── gobby/ │ │ ├── Readme.md │ │ ├── gobby.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── gom-player/ │ │ ├── Readme.md │ │ ├── gom-player.nuspec │ │ ├── tools/ │ │ │ └── chocolateyinstall.ps1 │ │ └── update.ps1 │ ├── googlechrome/ │ │ ├── README.md │ │ ├── googlechrome.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── gpg4win/ │ │ ├── README.md │ │ ├── gpg4win.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── graphviz/ │ │ ├── README.md │ │ ├── graphviz.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── hedgewars/ │ │ ├── Readme.md │ │ ├── hedgewars.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── hostsman/ │ │ ├── README.md │ │ ├── hostsman.json │ │ ├── hostsman.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── inkscape/ │ │ ├── README.md │ │ ├── inkscape.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── intunewinapputil/ │ │ ├── README.md │ │ ├── USAGE.md │ │ ├── intunewinapputil.nuspec │ │ ├── tools/ │ │ │ └── chocolateyinstall.ps1 │ │ └── update.ps1 │ ├── itunes/ │ │ ├── README.md │ │ ├── info │ │ ├── itunes.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── jenkins/ │ │ ├── ReadMe.md │ │ ├── jenkins.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyinstall.ps1 │ │ │ └── helpers.psm1 │ │ └── update.ps1 │ ├── jitsi/ │ │ ├── README.md │ │ ├── jitsi.json │ │ ├── jitsi.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── jubler/ │ │ ├── Changelog.md │ │ ├── Readme.md │ │ ├── jubler.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyinstall.ps1 │ │ │ └── chocolateyuninstall.ps1 │ │ └── update.ps1 │ ├── juju/ │ │ ├── Readme.md │ │ ├── juju.json │ │ ├── juju.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyinstall.ps1 │ │ └── update.ps1 │ ├── julia/ │ │ ├── README.md │ │ ├── julia.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyinstall.ps1 │ │ │ └── chocolateyuninstall.ps1 │ │ └── update.ps1 │ ├── k9s/ │ │ ├── ReadMe.md │ │ ├── k9s.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyinstall.ps1 │ │ └── update.ps1 │ ├── keepass-classic/ │ │ ├── README.md │ │ ├── keepass-classic.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── keepassx/ │ │ ├── README.md │ │ ├── keepassx.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── keepassxc/ │ │ ├── README.md │ │ ├── keepassxc.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── .skipAutoUninstall │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── keeweb/ │ │ ├── README.md │ │ ├── keeweb.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── ketarin/ │ │ ├── Readme.md │ │ ├── ketarin.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── keyfinder/ │ │ ├── README.md │ │ ├── _update.ps1 │ │ ├── keyfinder.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ ├── chocolateyUninstall.ps1 │ │ └── helpers.ps1 │ ├── kingsoft-office-free/ │ │ ├── README.md │ │ ├── kingsoft-office-free.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── kitty/ │ │ ├── README.md │ │ ├── kitty.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.TXT │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── krita/ │ │ ├── README.md │ │ ├── krita.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── kubelogin/ │ │ ├── README.md │ │ ├── kubelogin.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── kubernetes-cli/ │ │ ├── README.md │ │ ├── kubernetes-cli.json │ │ ├── kubernetes-cli.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── kubernetes-kompose/ │ │ ├── README.md │ │ ├── kubernetes-kompose.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ └── update.ps1 │ ├── kubescape/ │ │ ├── README.md │ │ ├── kubescape.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ └── update.ps1 │ ├── librecad/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── librecad.json │ │ ├── librecad.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── libreoffice-streams/ │ │ ├── README.fresh.md │ │ ├── README.md │ │ ├── README.still.md │ │ ├── libreoffice-streams.json │ │ ├── libreoffice-streams.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── lightalloy/ │ │ ├── README.md │ │ ├── _update.ps1 │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── lightalloy.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── lightalloy.ahk │ ├── lightscreen/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── lightscreen.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── lightworks/ │ │ ├── README.md │ │ ├── lightworks.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update-disabled.ps1 │ ├── logfusion/ │ │ ├── Readme.md │ │ ├── logfusion.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── mattermost-desktop/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── mattermost-desktop.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── maxima/ │ │ ├── README.md │ │ ├── maxima.nuspec │ │ ├── tools/ │ │ │ ├── .skipAutoUninstaller │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── maxthon.commandline/ │ │ ├── Readme.md │ │ ├── maxthon.commandline.nuspec │ │ ├── tools/ │ │ │ ├── MaxthonPortable/ │ │ │ │ └── Bin/ │ │ │ │ ├── Maxthon.exe.gui │ │ │ │ ├── MxAppLoader.exe.ignore │ │ │ │ └── MxCrashReport.exe.ignore │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── mendeley/ │ │ ├── README.md │ │ ├── mendeley.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── minikube/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── minikube.nuspec │ │ └── update.ps1 │ ├── minishift/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── minishift.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── mixxx/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── mixxx.json │ │ ├── mixxx.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── mkdocs/ │ │ ├── README.md │ │ ├── mkdocs.nuspec │ │ ├── tools/ │ │ │ ├── ChocolateyInstall.ps1 │ │ │ └── ChocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── mkdocs-material/ │ │ ├── README.md │ │ ├── mkdocs-material.nuspec │ │ ├── tools/ │ │ │ ├── ChocolateyInstall.ps1 │ │ │ └── ChocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── mkvtoolnix/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── VERIFICATION.txt │ │ │ └── license.txt │ │ ├── mkvtoolnix.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── mono/ │ │ ├── Readme.md │ │ ├── mono.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── mp3tag/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── mp3tag.nuspec │ │ ├── tools/ │ │ │ ├── ChocolateyInstall.ps1 │ │ │ └── ChocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── mpc-hc/ │ │ └── README.md │ ├── mpc-hc-clsid2/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── mpc-hc-clsid2.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── msys2/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── COPYING.txt │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── msys2.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyUninstall.ps1 │ │ │ ├── chocolateyinstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── mumble/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── mumble.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── musescore/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── musescore.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── nexus-repository/ │ │ ├── Readme.md │ │ ├── _update.ps1 │ │ ├── nexus-repository.nuspec │ │ └── tools/ │ │ ├── chocolateyinstall.ps1 │ │ ├── chocolateyuninstall.ps1 │ │ └── helpers.ps1 │ ├── nircmd/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── License.txt │ │ │ └── VERIFICATION.txt │ │ ├── nircmd.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── nmap/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── nmap.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── install.ahk │ │ └── update.ps1 │ ├── no-ip-duc/ │ │ ├── README.md │ │ ├── no-ip-duc.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── nodejs/ │ │ ├── README.md │ │ ├── nodejs.json │ │ ├── nodejs.nuspec │ │ └── update.ps1 │ ├── nodejs.install/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ ├── VERIFICATION.full.txt │ │ │ ├── VERIFICATION.txt │ │ │ └── VERIFICATION.x64.txt │ │ ├── nodejs.install.json │ │ ├── nodejs.install.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── nomacs/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── VERIFICATION.txt │ │ │ └── license.txt │ │ ├── nomacs.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── nomacs.portable/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── VERIFICATION.txt │ │ │ └── license.txt │ │ ├── nomacs.portable.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── notepadplusplus/ │ │ ├── README.md │ │ ├── notepadplusplus.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── notepadplusplus.commandline/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── notepadplusplus.commandline.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── notepad++.exe.gui │ │ │ └── updater/ │ │ │ └── gpup.exe.ignore │ │ └── update.ps1 │ ├── notepadplusplus.install/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── notepadplusplus.install.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── nssm/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── License.txt │ │ │ └── VERIFICATION.txt │ │ ├── nssm.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── nuget.commandline/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── nuget.commandline.json │ │ ├── nuget.commandline.nuspec │ │ └── update.ps1 │ ├── octave.portable/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── VERIFICATION.txt │ │ │ └── gpl-3.0.txt │ │ ├── octave.portable.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── openshift-cli/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── openshift-cli.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── openssl.light/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── openssl.light.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── opera/ │ │ ├── README.md │ │ ├── opera.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ ├── helpers.ps1 │ │ │ └── uninstall.ahk │ │ └── update.ps1 │ ├── optipng/ │ │ ├── Changelog.md │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── optipng.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── owncloud-client/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── owncloud-client.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── paint.net/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── License.txt │ │ │ └── VERIFICATION.txt │ │ ├── paint.net.nuspec │ │ ├── tools/ │ │ │ └── ChocolateyInstall.ps1 │ │ └── update.ps1 │ ├── palemoon/ │ │ ├── README.md │ │ ├── palemoon.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── pandafreeantivirus/ │ │ ├── README.md │ │ ├── pandafreeantivirus.nuspec │ │ └── tools/ │ │ ├── PandaFreeAntivirus.au3 │ │ └── chocolateyInstall.ps1 │ ├── papercut/ │ │ ├── ReadMe.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── papercut.nuspec │ │ ├── tools/ │ │ │ └── chocolateyinstall.ps1 │ │ └── update.ps1 │ ├── partitionmasterfree/ │ │ ├── PartitionMasterFree.nuspec │ │ ├── README.md │ │ ├── installer_download.ahk │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── patch-my-pc/ │ │ ├── Readme.md │ │ ├── patch-my-pc.nuspec │ │ ├── tools/ │ │ │ ├── PatchMyPC.exe.GUI │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── peazip/ │ │ ├── Readme.md │ │ ├── peazip.nuspec │ │ └── update.ps1 │ ├── peazip.install/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── peazip.install.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyinstall.ps1 │ │ │ └── chocolateyuninstall.ps1 │ │ └── update.ps1 │ ├── pencil/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.md │ │ │ └── VERIFICATION.txt │ │ ├── pencil.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── php/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── php.json │ │ ├── php.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── picard/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── picard.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── poi/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── poi.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyinstall.ps1 │ │ │ └── chocolateyuninstall.ps1 │ │ └── update.ps1 │ ├── poweriso/ │ │ ├── README.md │ │ ├── poweriso.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── prey/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── prey.json │ │ ├── prey.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── protoc/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── protoc.nuspec │ │ ├── tools/ │ │ │ └── chocolateyinstall.ps1 │ │ └── update.ps1 │ ├── pspp/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── pspp.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── putty/ │ │ ├── README.md │ │ ├── putty.nuspec │ │ └── update.ps1 │ ├── putty.install/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── putty.install.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── putty.portable/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── putty.portable.nuspec │ │ ├── tools/ │ │ │ ├── PAGEANT.EXE.GUI │ │ │ ├── PUTTY.EXE.GUI │ │ │ ├── PUTTYGEN.EXE.GUI │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── pyhoca-gui/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── pyhoca-gui.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── install.ahk │ │ └── update.ps1 │ ├── python/ │ │ ├── README.md │ │ ├── python.json │ │ ├── python.nuspec │ │ └── update.ps1 │ ├── python2/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── python2.json │ │ ├── python2.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── python3/ │ │ ├── README.md │ │ ├── python3.json │ │ ├── python3.nuspec │ │ └── update.ps1 │ ├── python3-streams/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── python3-streams.json │ │ ├── python3-streams.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── qbittorrent/ │ │ ├── Readme.md │ │ ├── qbittorrent.nuspec │ │ ├── tools/ │ │ │ ├── LICENSE.txt │ │ │ ├── VERIFICATION.txt │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyinstall.ps1 │ │ │ └── chocolateyuninstall.ps1 │ │ └── update.ps1 │ ├── qtox/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── qtox.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── quiterss/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── quiterss.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── rapidee/ │ │ ├── README.md │ │ ├── RapidEE.nuspec │ │ ├── legal/ │ │ │ ├── VERIFICATION.txt │ │ │ └── license.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── rdcman/ │ │ ├── README.md │ │ ├── info │ │ ├── rdcman.nuspec │ │ ├── tools/ │ │ │ ├── RDCMan.exe.gui │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyuninstall.ps1 │ │ └── update.ps1 │ ├── renamemaster/ │ │ ├── Readme.md │ │ ├── renamemaster.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── reshack/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── License.txt │ │ │ └── VERIFICATION.txt │ │ ├── reshack.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── ruby/ │ │ ├── README.md │ │ ├── ruby.json │ │ ├── ruby.nuspec │ │ └── update.ps1 │ ├── ruby.install/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── ruby.install.json │ │ ├── ruby.install.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── ruby.portable/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── ruby.portable.json │ │ ├── ruby.portable.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── rufus/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── rufus.nuspec │ │ └── update.ps1 │ ├── screencloud/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── screencloud.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── scribus/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── scribus.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── seafile-client/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── seafile-client.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── selenium-chrome-driver/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── selenium-chrome-driver.json │ │ ├── selenium-chrome-driver.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── selenium-chromium-edge-driver/ │ │ ├── Readme.md │ │ ├── selenium-chromium-edge-driver.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyinstall.ps1 │ │ │ └── chocolateyuninstall.ps1 │ │ └── update.ps1 │ ├── selenium-gecko-driver/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── selenium-gecko-driver.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── selenium.powershell/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── selenium.powershell.nuspec │ │ ├── tools/ │ │ │ ├── .skipAutoUninstaller │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── sidesync/ │ │ ├── README.md │ │ ├── sidesync.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── simplewall/ │ │ ├── README.md │ │ ├── simplewall.nuspec │ │ └── update.ps1 │ ├── simplewall.install/ │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── simplewall.install.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── simplewall.portable/ │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── simplewall.portable.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── smartftp/ │ │ ├── README.md │ │ ├── smartftp.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── sourcetree/ │ │ ├── README.md │ │ ├── sourcetree.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── sparkleshare/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── sparkleshare.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── speccy/ │ │ ├── README.md │ │ ├── speccy.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── spotify/ │ │ ├── README.md │ │ ├── info │ │ ├── spotify.nuspec │ │ ├── tools/ │ │ │ ├── ChocolateyInstall.ps1 │ │ │ └── ChocolateyUnInstall.ps1 │ │ └── update.ps1 │ ├── sqlite/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── License.txt │ │ │ └── VERIFICATION.txt │ │ ├── sqlite.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── supertuxkart/ │ │ ├── README.md │ │ ├── supertuxkart.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── sweet-home-3d/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── sweet-home-3d.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── sysinternals/ │ │ ├── Readme.md │ │ ├── sysinternals.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── testdisk-photorec/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── testdisk-photorec.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── texmaker/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── texmaker.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── thunderbird/ │ │ ├── README.md │ │ ├── Readme.thunderbird.md │ │ ├── Readme.thunderbirdesr.md │ │ ├── thunderbird.json │ │ ├── thunderbird.nuspec │ │ ├── tools/ │ │ │ ├── LanguageChecksums.csv │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── tightvnc/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tightvnc.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── tixati/ │ │ ├── README.md │ │ ├── tixati.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── tixati.ahk │ │ └── update.ps1 │ ├── tixati.portable/ │ │ ├── README.md │ │ ├── tixati.portable.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── tor-browser/ │ │ ├── Readme.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helpers.ps1 │ │ ├── tor-browser.nuspec │ │ └── update.ps1 │ ├── tortoisegit/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ ├── tortoisegit.nuspec │ │ └── update.ps1 │ ├── tortoisesvn/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── tortoisesvn.nuspec │ │ └── update.ps1 │ ├── totalcommander/ │ │ ├── README.md │ │ ├── TotalCommander.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── .skipAutoUninstall │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ahk │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── transifex-cli/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── transifex-cli.nuspec │ │ └── update.ps1 │ ├── tribler/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── tribler.nuspec │ │ └── update.ps1 │ ├── tv-browser/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── tv-browser.nuspec │ │ └── update.ps1 │ ├── typescript/ │ │ ├── Readme.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── typescript.nuspec │ │ └── update.ps1 │ ├── ultradefrag/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── ultradefrag.nuspec │ │ └── update.ps1 │ ├── umlet/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── umlet.nuspec │ │ └── update.ps1 │ ├── unchecky/ │ │ ├── README.md │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── unchecky.nuspec │ │ └── update.ps1 │ ├── universal-usb-installer/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── universal-usb-installer.exe.gui │ │ ├── universal-usb-installer.nuspec │ │ └── update.ps1 │ ├── vagrant/ │ │ ├── README.md │ │ ├── tools/ │ │ │ └── chocolateyinstall.ps1 │ │ ├── update.ps1 │ │ └── vagrant.nuspec │ ├── vcredist140/ │ │ ├── README.md │ │ ├── info-15.txt │ │ ├── info-16.txt │ │ ├── info-17.txt │ │ ├── info-18.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── data.ps1 │ │ ├── update.ps1 │ │ ├── vcredist140.json │ │ └── vcredist140.nuspec │ ├── vcredist2017/ │ │ ├── README.md │ │ ├── info │ │ ├── update.ps1 │ │ └── vcredist2017.nuspec │ ├── videoder/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── VERIFICATION.txt │ │ │ └── license.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── videoder.nuspec │ ├── vim/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateybeforemodify.ps1 │ │ │ ├── chocolateyinstall.ps1 │ │ │ ├── chocolateyuninstall.ps1 │ │ │ └── helpers.ps1 │ │ ├── update.ps1 │ │ └── vim.nuspec │ ├── virtualbox/ │ │ ├── Readme.md │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ ├── helpers.ps1 │ │ │ └── oracle.cer │ │ ├── update.ps1 │ │ ├── virtualbox.json │ │ └── virtualbox.nuspec │ ├── vlc/ │ │ ├── README.md │ │ ├── update.ps1 │ │ └── vlc.nuspec │ ├── vlc.install/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── vlc.install.nuspec │ ├── vlc.portable/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── update.ps1 │ │ └── vlc.portable.nuspec │ ├── voicebot/ │ │ ├── Readme.md │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── update.ps1 │ │ └── voicebot.nuspec │ ├── vscode/ │ │ ├── README.md │ │ ├── update.ps1 │ │ └── vscode.nuspec │ ├── vscode-insiders/ │ │ ├── README.md │ │ ├── update.ps1 │ │ └── vscode-insiders.nuspec │ ├── vscode-insiders.install/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helpers.ps1 │ │ ├── update.ps1 │ │ └── vscode-insiders.install.nuspec │ ├── vscode.install/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── ChocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ ├── update.ps1 │ │ └── vscode.install.nuspec │ ├── waterfox/ │ │ ├── Readme.classic.md │ │ ├── Readme.current.md │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.md │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ ├── waterfox.json │ │ └── waterfox.nuspec │ ├── webstorm/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── ChocolateyInstall.ps1 │ │ │ ├── ChocolateyUnInstall.ps1 │ │ │ └── silent.config │ │ ├── update.ps1 │ │ └── webstorm.nuspec │ ├── wesnoth/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ ├── wesnoth.json │ │ └── wesnoth.nuspec │ ├── wget/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyinstall.ps1 │ │ ├── update.ps1 │ │ └── wget.nuspec │ ├── win10mct/ │ │ ├── README.md │ │ ├── info │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ ├── update_helper.ps1 │ │ └── win10mct.nuspec │ ├── wincdemu/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── sysprogs.cer │ │ ├── update.ps1 │ │ └── wincdemu.nuspec │ ├── windows10-media-creation-tool/ │ │ ├── update.ps1 │ │ └── windows10-media-creation-tool.nuspec │ ├── winpcap/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── winpcapInstall.ahk │ │ └── winpcap.nuspec │ ├── winscp/ │ │ ├── README.md │ │ ├── update.ps1 │ │ └── winscp.nuspec │ ├── winscp.install/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── VERIFICATION.txt │ │ │ └── license.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── winscp.install.nuspec │ ├── winscp.portable/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── VERIFICATION.txt │ │ │ └── license.txt │ │ ├── tools/ │ │ │ ├── WinSCP.com │ │ │ ├── license.txt │ │ │ └── readme.txt │ │ ├── update.ps1 │ │ └── winscp.portable.nuspec │ ├── wixtoolset/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── wixtoolset.nuspec │ ├── wps-office-free/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ ├── update_helper.ps1 │ │ ├── wps-office-free.json │ │ └── wps-office-free.nuspec │ ├── x2go/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── x2go.nuspec │ ├── yo/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── yo.nuspec │ ├── youtube-dl/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── update.ps1 │ │ ├── youtube-dl.json │ │ └── youtube-dl.nuspec │ ├── yumi/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── yumi.exe.gui │ │ ├── update.ps1 │ │ └── yumi.nuspec │ ├── yumi-uefi/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── yumi-uefi.exe.gui │ │ ├── update.ps1 │ │ └── yumi-uefi.nuspec │ └── zotero/ │ ├── Readme.md │ ├── legal/ │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── update.ps1 │ └── zotero.nuspec ├── deprecated/ │ ├── extensions/ │ │ ├── chocolatey-fosshub.extension/ │ │ │ ├── chocolatey-fosshub.extension.nuspec │ │ │ └── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── chocolatey-uninstall.extension/ │ │ └── chocolatey-uninstall.extension.nuspec │ └── packages/ │ ├── 7zip.commandline/ │ │ └── 7zip.commandline.nuspec │ ├── PDFXChangeViewer/ │ │ └── PDFXChangeViewer.nuspec │ ├── bluegriffon/ │ │ ├── README.md │ │ ├── bluegriffon.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── docker-kitematic/ │ │ ├── README.md │ │ └── docker-kitematic.nuspec │ ├── dokany-library/ │ │ └── dokan-library.nuspec │ ├── ffdshow-x86/ │ │ └── ffdshow-x86_32.nuspec │ ├── gnupg-modern/ │ │ └── gnupg-modern.nuspec │ ├── h264tscutter/ │ │ ├── h264tscutter.nuspec │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── javaruntime-platformspecific/ │ │ └── javaruntime-platformspecific.nuspec │ ├── libreoffice/ │ │ └── libreoffice.nuspec │ ├── libreoffice-oldstable/ │ │ └── libreoffice-oldstable.nuspec │ ├── lightalloy/ │ │ ├── lightalloy.nuspec │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── otterbrowser/ │ │ └── otterbrowser.nuspec │ ├── python-x86_32/ │ │ ├── python-x86_32.nuspec │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── python2-x86_32/ │ │ ├── python2-x86_32.nuspec │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── python3-x86_32/ │ │ ├── python3-x86_32.nuspec │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── transifex-client/ │ │ └── transifex-client.nuspec │ ├── truecrypt-langfiles/ │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── truecrypt-langfiles.nuspec │ ├── visualstudiocode/ │ │ ├── tools/ │ │ │ └── ChocolateyInstall.ps1 │ │ └── visualstudiocode.nuspec │ └── zotero-standalone/ │ ├── Readme.md │ └── zotero-standalone.nuspec ├── extensions/ │ ├── chocolatey-azuredatastudio.extension/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── chocolatey-azuredatastudio.extension.nuspec │ │ └── extensions/ │ │ ├── Install-AzureDataStudioExtension.ps1 │ │ ├── Uninstall-AzureDataStudioExtension.ps1 │ │ └── chocolatey-azuredatastudio.psm1 │ ├── chocolatey-core.extension/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── chocolatey-core.extension.nuspec │ │ └── extensions/ │ │ ├── Get-AppInstallLocation.ps1 │ │ ├── Get-AvailableDriveLetter.ps1 │ │ ├── Get-EffectiveProxy.ps1 │ │ ├── Get-PackageCacheLocation.ps1 │ │ ├── Get-PackageParameters.ps1 │ │ ├── Get-UninstallRegistryKey.ps1 │ │ ├── Get-WebContent.ps1 │ │ ├── Register-Application.ps1 │ │ ├── Remove-Process.ps1 │ │ └── chocolatey-core.psm1 │ ├── chocolatey-vscode.extension/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── chocolatey-vscode.extension.nuspec │ │ └── extensions/ │ │ ├── Install-VsCodeExtension.ps1 │ │ ├── Uninstall-VsCodeExtension.ps1 │ │ └── chocolatey-vscode.psm1 │ └── extensions.psm1 ├── icons/ │ └── README.md ├── manual/ │ ├── 1password4/ │ │ ├── 1password4.nuspec │ │ ├── Readme.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── DotNet4.0/ │ │ ├── DotNet4.0.nuspec │ │ ├── README.md │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── README.md │ ├── apache-httpd/ │ │ ├── apache-httpd.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── readme.md │ │ ├── tools/ │ │ │ ├── chocolateyBeforeModify.ps1 │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── assaultcube/ │ │ ├── README.md │ │ ├── assaultcube.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── becyicongrabber/ │ │ ├── README.md │ │ ├── becyicongrabber.nuspec │ │ ├── tools/ │ │ │ ├── BeCyIconGrabber.exe.gui │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── bitdefender-usb-immunizer/ │ │ ├── README.md │ │ ├── bitdefender-usb-immunizer.nuspec │ │ └── tools/ │ │ ├── BDUSBImmunizerLauncher.exe.gui │ │ └── chocolateyInstall.ps1 │ ├── cdburnerxp/ │ │ ├── README.md │ │ ├── cdburnerxp.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── clover/ │ │ ├── README.md │ │ ├── clover.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── compact-timer/ │ │ ├── README.md │ │ ├── compact-timer.nuspec │ │ └── tools/ │ │ ├── CompactTimer.exe.config │ │ ├── CompactTimer.exe.gui │ │ └── chocolateyInstall.ps1 │ ├── cyg-get/ │ │ ├── README.md │ │ ├── cyg-get.nuspec │ │ └── tools/ │ │ ├── chocolateyinstall.ps1 │ │ └── cyg-get.ps1 │ ├── feeddemon/ │ │ ├── README.md │ │ ├── feeddemon.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── ffdshow/ │ │ ├── README.md │ │ ├── ffdshow.nuspec │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── flashplayeractivex/ │ │ ├── README.md │ │ ├── flashplayeractivex.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── flashplayerplugin/ │ │ ├── README.md │ │ ├── flashplayerplugin.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── flashplayerppapi/ │ │ ├── README.md │ │ ├── flashplayerppapi.nuspec │ │ ├── tools/ │ │ │ ├── ChocolateyInstall.ps1 │ │ │ └── ChocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── freemake-video-converter/ │ │ ├── README.md │ │ ├── freemake-video-converter.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── git-disable-gcm/ │ │ ├── README.md │ │ ├── git-disable-gcm.nuspec │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── googlechrome-extensions/ │ │ ├── googlechrome-editthiscookie/ │ │ │ ├── googlechrome-editthiscookie.nuspec │ │ │ └── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── googlechrome-emberinspector/ │ │ │ ├── googlechrome-ember-inspector.nuspec │ │ │ └── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── googlechrome-extension-template/ │ │ │ ├── googlechrome-.nuspec │ │ │ └── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── googlechrome-github-expandinizr/ │ │ │ ├── googlechrome-github-expandinizr.nuspec │ │ │ └── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ ├── install_x64.reg │ │ │ └── install_x86.reg │ │ └── googlechrome-zenhub/ │ │ ├── googlechrome-zenhub.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── googlechromebeta/ │ │ ├── README.md │ │ ├── googlechromebeta.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── helpers.ps1 │ │ └── update.ps1 │ ├── gpg4win-light/ │ │ ├── README.md │ │ ├── gpg4win-light.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1.disabled │ ├── gpg4win-vanilla/ │ │ ├── README.md │ │ ├── gpg4win-vanilla.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1.disabled │ ├── haali-media-splitter/ │ │ ├── README.md │ │ ├── haali-media-splitter.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── hostsman/ │ │ ├── README.md │ │ ├── hostsman.json │ │ ├── hostsman.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ └── tools/ │ │ └── chocolateyInstall.ps1 │ ├── ietester/ │ │ ├── README.md │ │ ├── ietester.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── itunesfusion/ │ │ ├── Changelog.md │ │ ├── Readme.md │ │ ├── itunesfusion.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── kb2670838/ │ │ ├── README.md │ │ ├── Tools/ │ │ │ └── ChocolateyInstall.ps1 │ │ └── kb2670838.nuspec │ ├── kb2999226/ │ │ ├── README.md │ │ ├── kb2999226.nuspec │ │ └── tools/ │ │ └── chocolateyinstall.ps1 │ ├── keepass-classic-langfiles/ │ │ ├── README.md │ │ ├── keepass-classic-langfiles.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── functions.ps1 │ ├── keepass-langfiles/ │ │ ├── README.md │ │ ├── keepass-langfiles.nuspec │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── libreoffice-help/ │ │ ├── README.md │ │ ├── libreoffice-help.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ ├── loHelpIsAlreadyInstalled.ps1 │ │ └── matchLanguage.ps1 │ ├── lockhunter/ │ │ ├── README.md │ │ ├── lockhunter.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── mpc-hc/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── mpc-hc.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── ontopreplica/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── ontopreplica.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── update.ps1 │ ├── pcwrunas/ │ │ ├── README.md │ │ ├── pcwrunas.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── php-legacy/ │ │ ├── README.md │ │ ├── php_5.3.x/ │ │ │ ├── php_5.3.x.nuspec │ │ │ ├── tools/ │ │ │ │ ├── chocolateyInstall.ps1 │ │ │ │ ├── chocolateyUninstall.ps1 │ │ │ │ └── downloadInfo.csv │ │ │ └── update.ps1 │ │ ├── php_5.4.x/ │ │ │ ├── php_5.4.x.nuspec │ │ │ ├── tools/ │ │ │ │ ├── chocolateyInstall.ps1 │ │ │ │ ├── chocolateyUninstall.ps1 │ │ │ │ └── downloadInfo.csv │ │ │ └── update.ps1 │ │ ├── php_5.5.x/ │ │ │ ├── php_5.5.x.nuspec │ │ │ ├── tools/ │ │ │ │ ├── chocolateyInstall.ps1 │ │ │ │ ├── chocolateyUninstall.ps1 │ │ │ │ └── downloadInfo.csv │ │ │ └── update.ps1 │ │ └── update_all.ps1 │ ├── qttabbar-langfiles/ │ │ ├── README.md │ │ ├── qttabbar-langfiles.nuspec │ │ └── tools/ │ │ ├── Lng_QTTabBar_Chinese_Simp.xml │ │ ├── Lng_QTTabBar_Chinese_Trad.xml │ │ ├── Lng_QTTabBar_Czech.xml │ │ ├── Lng_QTTabBar_Dutch.xml │ │ ├── Lng_QTTabBar_English.xml │ │ ├── Lng_QTTabBar_French.xml │ │ ├── Lng_QTTabBar_German.xml │ │ ├── Lng_QTTabBar_Greek.xml │ │ ├── Lng_QTTabBar_Italian.xml │ │ ├── Lng_QTTabBar_Japanese.xml │ │ ├── Lng_QTTabBar_Polish.xml │ │ ├── Lng_QTTabBar_Portuguese.xml │ │ ├── Lng_QTTabBar_Russian.xml │ │ ├── Lng_QTTabBar_Spanish.xml │ │ ├── Lng_QTTabBar_Swedish.xml │ │ └── chocolateyInstall.ps1 │ ├── quicktime/ │ │ ├── README.md │ │ ├── quicktime.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── sauerbraten/ │ │ ├── README.md │ │ ├── sauerbraten.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── scite4autohotkey/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── scite4autohotkey.nuspec │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ ├── install.ahk │ │ │ └── uninstall.ahk │ │ └── update.ps1 │ ├── secret-maryo-chronicles/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── secret-maryo-chronicles.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── skype/ │ │ ├── README.md │ │ ├── info │ │ ├── skype.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── sonarlint-vs2015/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── sonarlint-vs2015.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── sourcetree-disableautoupdate/ │ │ ├── README.md │ │ ├── sourcetree-disableautoupdate.nuspec │ │ └── tools/ │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── svg-explorer-extension/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── svg-explorer-extension.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── tipp10/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tipp10.nuspec │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── update.ps1 │ ├── tsremux/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ └── tsremux.nuspec │ ├── universal-extractor/ │ │ ├── README.md │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ └── universal-extractor.nuspec │ ├── vcredist2005/ │ │ ├── README.md │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── update.ps1 │ │ └── vcredist2005.nuspec │ ├── vcredist2008/ │ │ ├── README.md │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── update.ps1 │ │ └── vcredist2008.nuspec │ ├── vcredist2010/ │ │ ├── README.md │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── update.ps1 │ │ └── vcredist2010.nuspec │ ├── vcredist2015/ │ │ ├── README.md │ │ └── vcredist2015.nuspec │ ├── virtualdub/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── virtualdub.nuspec │ ├── visualstudiocode-disableautoupdate/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ ├── chocolateyUninstall.ps1 │ │ │ └── helpers.ps1 │ │ └── visualstudiocode-disableautoupdate.nuspec │ ├── vp8-vfw/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ └── chocolateyInstall.ps1 │ │ ├── update.ps1 │ │ └── vp8-vfw.nuspec │ ├── vscode-extensions/ │ │ ├── vscode-azurerm-tools/ │ │ │ ├── README.md │ │ │ ├── tools/ │ │ │ │ ├── chocolateyInstall.ps1 │ │ │ │ └── chocolateyUninstall.ps1 │ │ │ ├── update.ps1 │ │ │ └── vscode-azurerm-tools.nuspec │ │ ├── vscode-csharpextensions/ │ │ │ ├── README.md │ │ │ ├── tools/ │ │ │ │ ├── chocolateyInstall.ps1 │ │ │ │ └── chocolateyUninstall.ps1 │ │ │ ├── update.ps1 │ │ │ └── vscode-csharpextensions.nuspec │ │ ├── vscode-ember-cli/ │ │ │ ├── README.md │ │ │ ├── tools/ │ │ │ │ ├── chocolateyInstall.ps1 │ │ │ │ └── chocolateyUninstall.ps1 │ │ │ ├── update.ps1 │ │ │ └── vscode-ember-cli.nuspec │ │ ├── vscode-ember-frost/ │ │ │ ├── README.md │ │ │ ├── tools/ │ │ │ │ ├── chocolateyInstall.ps1 │ │ │ │ └── chocolateyUninstall.ps1 │ │ │ ├── update.ps1 │ │ │ └── vscode-ember-frost.nuspec │ │ └── vscode-icons/ │ │ ├── README.md │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── vscode-icons.nuspec │ ├── winamp/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── License.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── winamp.nuspec │ ├── winff/ │ │ ├── README.md │ │ ├── legal/ │ │ │ ├── VERIFICATION.txt │ │ │ └── license.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── winff.nuspec │ ├── x-moto/ │ │ ├── Readme.md │ │ ├── legal/ │ │ │ ├── LICENSE.txt │ │ │ └── VERIFICATION.txt │ │ ├── tools/ │ │ │ ├── chocolateyInstall.ps1 │ │ │ └── chocolateyUninstall.ps1 │ │ ├── update.ps1 │ │ └── x-moto.nuspec │ └── xpdf-utils/ │ ├── Readme.md │ ├── legal/ │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── tools/ │ │ └── chocolateyInstall.ps1 │ ├── update.ps1 │ └── xpdf-utils.nuspec ├── scripts/ │ ├── Add-Dependency.ps1 │ ├── Clear-DependenciesList.ps1 │ ├── EventLogs.ps1 │ ├── Get-AllGitHubReleases.ps1 │ ├── Get-ChocolateyNormalizedVersion.ps1 │ ├── Get-GitHubRelease.ps1 │ ├── Get-GitHubRepositoryFileContent.ps1 │ ├── README.md │ ├── Set-DescriptionFromReadme.ps1 │ ├── Start-Sandbox.ps1 │ ├── Take-Screenshot.ps1 │ ├── Test-RepoPackage.ps1 │ ├── Update-ChangelogVersion.ps1 │ ├── Update-IconUrl.ps1 │ ├── Update-OnETagChanged.ps1 │ ├── Update-PackageSourceUrl.ps1 │ └── au_extensions.psm1 ├── test_all.ps1 ├── unlisted/ │ └── fiddler4/ │ ├── README.md │ ├── fiddler4.nuspec │ ├── tools/ │ │ └── chocolateyInstall.ps1 │ └── update.ps1 └── update_all.ps1