├── .appveyor.yml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── DISCUSSION_TEMPLATE │ ├── ideas.yml │ └── migrations.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── outdated-report.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── respond-to-issue.yaml │ ├── respond-to-pr.yaml │ ├── stale.yml │ └── toc.yml ├── .gitignore ├── .vscode └── settings.json ├── COMMITTERS.md ├── CONTRIBUTING.md ├── LICENSE.md ├── PSScriptAnalyzerSettings.psd1 ├── README.md ├── automatic ├── .gitignore ├── 1password │ ├── 1password.json │ ├── 1password.nuspec │ ├── screenshot.webp │ ├── update.ps1 │ └── update_helper.ps1 ├── 1password7 │ ├── 1password7.nuspec │ ├── Readme.md │ ├── screenshot.png │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ └── update.ps1 ├── 1password8 │ ├── 1password8.nuspec │ ├── Readme.md │ ├── screenshot.webp │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── 360ts │ ├── 360ts.json │ ├── 360ts.nuspec │ ├── README.md │ ├── README_ts.md │ ├── README_tse.md │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── 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 ├── 7zip │ ├── 7zip.json │ ├── 7zip.nuspec │ ├── README.md │ └── update.ps1 ├── README.md ├── absolute-uninstaller │ ├── README.md │ ├── absolute-uninstaller.nuspec │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── activepresenter │ ├── README.md │ ├── activepresenter.nuspec │ ├── legal │ │ ├── License.txt │ │ ├── Redistribution.pdf │ │ └── VERIFICATION.txt │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── alldup │ ├── README.md │ ├── alldup.nuspec │ ├── legal │ │ ├── LICENSE.txt │ │ ├── Redistribution.pdf │ │ └── VERIFICATION.txt │ ├── screenshot.png │ ├── 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.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 ├── autohotkey │ ├── README.md │ ├── autohotkey.nuspec │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── 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 ├── autoit │ ├── README.md │ ├── autoit.nuspec │ └── 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.install │ ├── README.md │ ├── bleachbit.install.nuspec │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ └── update.ps1 ├── bleachbit │ ├── README.md │ ├── bleachbit.nuspec │ └── 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 │ ├── screenshot.png │ ├── 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.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 ├── cmake │ ├── Readme.md │ ├── cmake.json │ ├── cmake.nuspec │ └── 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 │ ├── screenshot.png │ ├── 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 │ ├── screenshot.png │ ├── 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-full │ ├── README.md │ ├── ffmpeg-full.nuspec │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── ffmpeg │ ├── README.md │ ├── ffmpeg.nuspec │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── filezilla │ ├── README.md │ ├── filezilla.nuspec │ ├── legal │ │ ├── License.txt │ │ └── VERIFICATION.txt │ ├── screenshot.png │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.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 │ ├── screenshot.png │ ├── 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 │ ├── screenshot.jpg │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── ghostscript.app │ ├── README.md │ ├── ghostscript.app.nuspec │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── tools │ │ ├── ChocolateyInstall.ps1 │ │ ├── ChocolateyUninstall.ps1 │ │ └── ghostscript.ahk │ └── update.ps1 ├── ghostscript │ ├── README.md │ ├── ghostscript.nuspec │ └── update.ps1 ├── gimp │ ├── README.md │ ├── gimp.nuspec │ ├── screenshot.jpg │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── git-lfs.install │ ├── README.md │ ├── git-lfs.install.nuspec │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── git-lfs │ ├── README.md │ ├── git-lfs.nuspec │ └── 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 ├── git │ ├── README.md │ ├── git.nuspec │ └── 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 │ ├── screenshot.png │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── gom-player │ ├── Readme.md │ ├── gom-player.nuspec │ ├── screenshot.jpg │ ├── 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 │ ├── screenshot.svg │ ├── 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 │ ├── screenshot.png │ └── 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 │ ├── screenshot.png │ ├── tools │ │ ├── .skipAutoUninstall │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ └── update.ps1 ├── keeweb │ ├── README.md │ ├── keeweb.nuspec │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── screenshot.png │ ├── 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 │ ├── screenshot.png │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ └── helpers.ps1 │ └── update.ps1 ├── krita │ ├── README.md │ ├── krita.nuspec │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── screenshot.png │ ├── 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 │ ├── screenshot.png │ └── 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 │ ├── screenshot.png │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── maxima │ ├── README.md │ ├── maxima.nuspec │ ├── screenshot.png │ ├── 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 │ ├── screenshot.png │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── mkdocs-material │ ├── README.md │ ├── mkdocs-material.nuspec │ ├── tools │ │ ├── ChocolateyInstall.ps1 │ │ └── ChocolateyUninstall.ps1 │ └── update.ps1 ├── mkdocs │ ├── README.md │ ├── mkdocs.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-clsid2 │ ├── README.md │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── mpc-hc-clsid2.nuspec │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ └── update.ps1 ├── mpc-hc │ └── README.md ├── 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 │ ├── screenshot.png │ ├── 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 │ │ └── redistribution.pdf │ ├── 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.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 ├── nodejs │ ├── README.md │ ├── nodejs.json │ ├── nodejs.nuspec │ └── update.ps1 ├── nomacs.portable │ ├── README.md │ ├── legal │ │ ├── VERIFICATION.txt │ │ └── license.txt │ ├── nomacs.portable.nuspec │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── nomacs │ ├── README.md │ ├── legal │ │ ├── VERIFICATION.txt │ │ └── license.txt │ ├── nomacs.nuspec │ ├── screenshot.jpg │ ├── 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 ├── notepadplusplus │ ├── README.md │ ├── notepadplusplus.nuspec │ ├── tools │ │ └── chocolateyInstall.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 │ ├── screenshot.png │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── paint.net │ ├── README.md │ ├── legal │ │ ├── License.txt │ │ └── VERIFICATION.txt │ ├── paint.net.nuspec │ ├── screenshot.png │ ├── 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 │ ├── screenshot.png │ ├── 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.install │ ├── Readme.md │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── peazip.install.nuspec │ ├── tools │ │ ├── chocolateyinstall.ps1 │ │ └── chocolateyuninstall.ps1 │ └── update.ps1 ├── peazip │ ├── Readme.md │ ├── peazip.nuspec │ └── 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.install │ ├── README.md │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── putty.install.nuspec │ ├── screenshot.png │ ├── 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 ├── putty │ ├── README.md │ ├── putty.nuspec │ └── 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-streams │ ├── README.md │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── python3-streams.json │ ├── python3-streams.nuspec │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ ├── chocolateyUninstall.ps1 │ │ └── helpers.ps1 │ └── update.ps1 ├── python3 │ ├── README.md │ ├── python3.json │ ├── python3.nuspec │ └── update.ps1 ├── qbittorrent │ ├── Readme.md │ ├── qbittorrent.nuspec │ ├── screenshot.png │ ├── tools │ │ ├── LICENSE.txt │ │ ├── VERIFICATION.txt │ │ ├── chocolateyBeforeModify.ps1 │ │ ├── chocolateyinstall.ps1 │ │ └── chocolateyuninstall.ps1 │ └── update.ps1 ├── qtox │ ├── README.md │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── qtox.nuspec │ ├── screenshot.png │ ├── 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 │ ├── screenshot.webp │ ├── 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 │ │ ├── Redistribution.pdf │ │ └── VERIFICATION.txt │ ├── reshack.nuspec │ ├── screenshot.png │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ └── 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 ├── ruby │ ├── README.md │ ├── ruby.json │ ├── ruby.nuspec │ └── update.ps1 ├── rufus │ ├── README.md │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── rufus.nuspec │ ├── screenshot.png │ └── 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 │ │ └── icon.ico │ └── 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 │ │ └── icon.ico │ └── 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.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 ├── simplewall │ ├── README.md │ ├── simplewall.nuspec │ └── 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.portable │ ├── README.md │ ├── tixati.portable.nuspec │ ├── tools │ │ └── chocolateyInstall.ps1 │ └── update.ps1 ├── tixati │ ├── README.md │ ├── tixati.nuspec │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ ├── chocolateyUninstall.ps1 │ │ └── tixati.ahk │ └── 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 │ ├── screenshot.png │ ├── 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 │ ├── screenshot.png │ ├── 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 │ ├── 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 │ │ └── videoder-agreement-mailing.pdf │ ├── 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 │ ├── screenshot.png │ ├── tools │ │ ├── chocolateyBeforeModify.ps1 │ │ ├── chocolateyInstall.ps1 │ │ ├── chocolateyUninstall.ps1 │ │ ├── helpers.ps1 │ │ └── oracle.cer │ ├── update.ps1 │ ├── virtualbox.json │ └── virtualbox.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 ├── vlc │ ├── README.md │ ├── screenshot.png │ ├── update.ps1 │ └── vlc.nuspec ├── voicebot │ ├── Readme.md │ ├── tools │ │ └── chocolateyInstall.ps1 │ ├── update.ps1 │ └── voicebot.nuspec ├── vscode-insiders.install │ ├── README.md │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ ├── chocolateyUninstall.ps1 │ │ └── helpers.ps1 │ ├── update.ps1 │ └── vscode-insiders.install.nuspec ├── vscode-insiders │ ├── README.md │ ├── screenshot.png │ ├── update.ps1 │ └── vscode-insiders.nuspec ├── vscode.install │ ├── README.md │ ├── screenshot.png │ ├── tools │ │ ├── ChocolateyInstall.ps1 │ │ └── helpers.ps1 │ ├── update.ps1 │ └── vscode.install.nuspec ├── vscode │ ├── README.md │ ├── screenshot.png │ ├── update.ps1 │ └── vscode.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 │ ├── screenshot.png │ ├── 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 │ ├── screenshot.png │ ├── 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.install │ ├── README.md │ ├── legal │ │ ├── VERIFICATION.txt │ │ └── license.txt │ ├── screenshot.png │ ├── 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 ├── winscp │ ├── README.md │ ├── update.ps1 │ └── winscp.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-uefi │ ├── README.md │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── tools │ │ └── yumi-uefi.exe.gui │ ├── update.ps1 │ └── yumi-uefi.nuspec ├── yumi │ ├── README.md │ ├── legal │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── tools │ │ └── yumi.exe.gui │ ├── update.ps1 │ └── yumi.nuspec └── zotero │ ├── Readme.md │ ├── legal │ ├── LICENSE.txt │ └── VERIFICATION.txt │ ├── screenshot.png │ ├── 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-oldstable │ └── libreoffice-oldstable.nuspec │ ├── libreoffice │ └── libreoffice.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 ├── docs └── images │ ├── lessmsi-allusers-property.png │ ├── lessmsi-table-selection.png │ └── lessmsi-table-view.png ├── 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 ├── 1password.png ├── 1password4.png ├── 1password7.png ├── 1password8.png ├── 360ts.png ├── 7zip.svg ├── Brackets.svg ├── Clover.png ├── Cygwin.png ├── InkScape.svg ├── PDFCreator.png ├── PDFXChangeViewer.png ├── README.md ├── absolute-uninstaller.png ├── activepresenter.png ├── alldup.png ├── ant-renamer.png ├── apache-httpd.png ├── aptana-studio.png ├── assaultcube.png ├── audacity.svg ├── autohotkey.png ├── autoit.png ├── avidemux.png ├── azcopy10.png ├── becyicongrabber.png ├── bitdefender-usb-immunizer.png ├── bleachbit.svg ├── blender.svg ├── bluefish.svg ├── bluegriffon.svg ├── brave-beta.svg ├── brave.svg ├── bulk-crap-uninstaller.png ├── calibre.png ├── cameyo.svg ├── ccleaner.png ├── cdburnerxp.png ├── cdrtfe.png ├── chrome.svg ├── chromium.png ├── classic-shell.png ├── clementine.svg ├── clipboardfusion.png ├── clipgrab.png ├── cmake.png ├── codeblocks.png ├── codelite.png ├── compact-timer.png ├── composer.png ├── curl.png ├── curl.svg ├── cutepdf.png ├── datagrip.png ├── defraggler.png ├── diskdefragtouch.png ├── displayfusion.png ├── djv.png ├── docker-kitematic.png ├── dotnet.png ├── dropbox.svg ├── encfs4win.png ├── etcd.png ├── everything.png ├── ext2fsd.png ├── feeddemon.png ├── ffdshow.svg ├── ffmpeg.svg ├── fiddler.svg ├── filezilla.svg ├── firefox.svg ├── flashplayer.png ├── flightgear.png ├── free-virtual-keyboard.png ├── freecad.svg ├── freeciv.png ├── freemake-video-converter.png ├── freevideoeditor.png ├── ghostscript.svg ├── gimp.svg ├── git-lfs.png ├── git.svg ├── gitextensions.svg ├── gmer.png ├── gnucash.svg ├── gnupg.png ├── gobby.png ├── gom-player.png ├── googlechrome-editthiscookie.png ├── googlechrome-ember-inspector.png ├── gpg4win.png ├── graphviz.png ├── haali-media-splitter.svg ├── hedgewars.png ├── hostsman.png ├── ietester.png ├── itunes.png ├── itunesfusion.png ├── java.svg ├── jenkins.png ├── jitsi.svg ├── jubler.png ├── juju.png ├── julia.png ├── k9s.png ├── keepass.svg ├── keepassx.png ├── keepassxc.svg ├── keeweb.png ├── ketarin.png ├── keyfinder.png ├── kingsoft-office-free.png ├── kitty.png ├── krita.svg ├── kubernetes-cli.png ├── kubernetes-kompose.png ├── kubescape.png ├── librecad.svg ├── libreoffice.svg ├── lightalloy.png ├── lightscreen.png ├── lightworks.png ├── lockhunter.png ├── logfusion.png ├── mattermost-desktop.png ├── maxima.png ├── maxthon.png ├── mendeley.png ├── minikube.png ├── minishift.png ├── mixxx.png ├── mkdocs-material.png ├── mkdocs.png ├── mkvtoolnix.png ├── mono.png ├── mp3tag.png ├── mpc-hc.png ├── msys2.png ├── mumble.svg ├── musescore.svg ├── nexus-repository.png ├── nlite.png ├── nmap.png ├── no-ip-duc.png ├── nodejs.png ├── nomacs.svg ├── notepadplusplus.png ├── nssm.png ├── nuget.commandline.png ├── octave.png ├── ontopreplica.png ├── openshift-cli.png ├── openssl.png ├── opera.svg ├── owncloud.png ├── paint.net.png ├── palemoon.png ├── papercut.png ├── partitionassistant.png ├── partitionassistantlite.png ├── partitionmasterfree.png ├── patch-my-pc.png ├── peazip.svg ├── pencil.png ├── photorec.png ├── php.svg ├── picard.svg ├── poi.png ├── poweriso.png ├── prey.png ├── pspp.png ├── putty.png ├── pyhoca-gui.svg ├── python.svg ├── qbittorrent.png ├── qtox.svg ├── quicktime.png ├── quiterss.png ├── rapidee.png ├── rdcman.png ├── renamemaster.png ├── reshack.png ├── ruby.svg ├── rufus.png ├── sauerbraten.png ├── scite4autohotkey.png ├── screencloud.svg ├── scribus.svg ├── seafile-client.png ├── secret-maryo-chronicles.png ├── selenium-chrome-driver.svg ├── selenium-chromium-edge-driver.png ├── selenium-gecko-driver.png ├── selenium.powershell.png ├── sidesync.png ├── simplewall.png ├── skype.png ├── smartftp.svg ├── sonarlint-vs2015.png ├── sourcetree.svg ├── sparkleshare.png ├── speccy.png ├── spotify.png ├── sqlite.svg ├── sublime-text.png ├── supertuxkart.png ├── sweet-home-3d.png ├── sysinternals.png ├── testdisk.svg ├── texmaker.png ├── thunderbird.png ├── tightvnc.png ├── tipp10.png ├── tixati.png ├── tor-browser.png ├── tortoisegit.png ├── tortoisesvn.png ├── totalcommander.png ├── transifex-cli.png ├── tribler.png ├── truecrypt.png ├── tuniac.png ├── tv-browser.svg ├── typescript.png ├── ultradefrag.png ├── umlet.png ├── unchecky.png ├── universal-extractor.png ├── universal-usb-installer.png ├── utorrent.png ├── vagrant.png ├── vcredist140.png ├── vcredist2015.png ├── vcredist2017.png ├── videoder.png ├── vim.svg ├── virtualbox.png ├── virtualdub.png ├── vlc.png ├── voicebot.png ├── vscode-azurerm-tools.png ├── vscode-csharpextensions.png ├── vscode-ember-cli.png ├── vscode-insiders.png ├── vscode.png ├── vscode_icons.png ├── waterfox.png ├── webstorm.png ├── wesnoth.png ├── wget.png ├── win10mct.png ├── winamp.png ├── wincdemu.png ├── winff.png ├── winpcap.png ├── winscp.png ├── wixtoolset.png ├── wps-office-free.png ├── x-moto.png ├── x2go.png ├── xpdf-utils.png ├── y-dl.svg ├── yo.png ├── yumi.png ├── zotero-standalone.png └── zotero.png ├── manual ├── 1password4 │ ├── 1password4.nuspec │ ├── Readme.md │ ├── screenshot.png │ ├── 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 │ ├── screenshot.png │ └── 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 │ ├── screenshot.png │ ├── tools │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── update.ps1 │ └── winamp.nuspec ├── winff │ ├── README.md │ ├── legal │ │ ├── VERIFICATION.txt │ │ └── license.txt │ ├── screenshot.jpg │ ├── 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 /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/.github/workflows/toc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /COMMITTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/COMMITTERS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/README.md -------------------------------------------------------------------------------- /automatic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/.gitignore -------------------------------------------------------------------------------- /automatic/1password/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/1password/update.ps1 -------------------------------------------------------------------------------- /automatic/1password7/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/1password7/Readme.md -------------------------------------------------------------------------------- /automatic/1password7/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/1password7/update.ps1 -------------------------------------------------------------------------------- /automatic/1password8/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/1password8/Readme.md -------------------------------------------------------------------------------- /automatic/1password8/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/1password8/update.ps1 -------------------------------------------------------------------------------- /automatic/360ts/360ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/360ts/360ts.json -------------------------------------------------------------------------------- /automatic/360ts/360ts.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/360ts/360ts.nuspec -------------------------------------------------------------------------------- /automatic/360ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/360ts/README.md -------------------------------------------------------------------------------- /automatic/360ts/README_ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/360ts/README_ts.md -------------------------------------------------------------------------------- /automatic/360ts/README_tse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/360ts/README_tse.md -------------------------------------------------------------------------------- /automatic/360ts/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/360ts/update.ps1 -------------------------------------------------------------------------------- /automatic/7zip/7zip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/7zip/7zip.json -------------------------------------------------------------------------------- /automatic/7zip/7zip.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/7zip/7zip.nuspec -------------------------------------------------------------------------------- /automatic/7zip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/7zip/README.md -------------------------------------------------------------------------------- /automatic/7zip/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/7zip/update.ps1 -------------------------------------------------------------------------------- /automatic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/README.md -------------------------------------------------------------------------------- /automatic/activepresenter/legal/License.txt: -------------------------------------------------------------------------------- 1 | Please see Redistribution.pdf 2 | -------------------------------------------------------------------------------- /automatic/alldup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/alldup/README.md -------------------------------------------------------------------------------- /automatic/alldup/alldup.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/alldup/alldup.nuspec -------------------------------------------------------------------------------- /automatic/alldup/legal/LICENSE.txt: -------------------------------------------------------------------------------- 1 | See Redistribution.pdf 2 | -------------------------------------------------------------------------------- /automatic/alldup/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/alldup/screenshot.png -------------------------------------------------------------------------------- /automatic/alldup/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/alldup/update.ps1 -------------------------------------------------------------------------------- /automatic/ant-renamer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ant-renamer/Readme.md -------------------------------------------------------------------------------- /automatic/audacity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/audacity/README.md -------------------------------------------------------------------------------- /automatic/audacity/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/audacity/update.ps1 -------------------------------------------------------------------------------- /automatic/autohotkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/autohotkey/README.md -------------------------------------------------------------------------------- /automatic/autohotkey/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/autohotkey/update.ps1 -------------------------------------------------------------------------------- /automatic/autoit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/autoit/README.md -------------------------------------------------------------------------------- /automatic/autoit/autoit.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/autoit/autoit.nuspec -------------------------------------------------------------------------------- /automatic/autoit/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/autoit/update.ps1 -------------------------------------------------------------------------------- /automatic/avidemux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/avidemux/README.md -------------------------------------------------------------------------------- /automatic/avidemux/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/avidemux/update.ps1 -------------------------------------------------------------------------------- /automatic/azcopy10/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/azcopy10/update.ps1 -------------------------------------------------------------------------------- /automatic/bleachbit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/bleachbit/README.md -------------------------------------------------------------------------------- /automatic/bleachbit/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/bleachbit/update.ps1 -------------------------------------------------------------------------------- /automatic/blender/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/blender/Readme.md -------------------------------------------------------------------------------- /automatic/blender/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/blender/update.ps1 -------------------------------------------------------------------------------- /automatic/bluefish/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/bluefish/Readme.md -------------------------------------------------------------------------------- /automatic/bluefish/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/bluefish/update.ps1 -------------------------------------------------------------------------------- /automatic/brackets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/brackets/README.md -------------------------------------------------------------------------------- /automatic/brackets/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/brackets/update.ps1 -------------------------------------------------------------------------------- /automatic/brave/README-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/brave/README-beta.md -------------------------------------------------------------------------------- /automatic/brave/brave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/brave/brave.json -------------------------------------------------------------------------------- /automatic/brave/brave.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/brave/brave.nuspec -------------------------------------------------------------------------------- /automatic/brave/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/brave/update.ps1 -------------------------------------------------------------------------------- /automatic/calibre/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/calibre/Changelog.md -------------------------------------------------------------------------------- /automatic/calibre/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/calibre/Readme.md -------------------------------------------------------------------------------- /automatic/calibre/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/calibre/update.ps1 -------------------------------------------------------------------------------- /automatic/ccleaner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ccleaner/README.md -------------------------------------------------------------------------------- /automatic/ccleaner/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ccleaner/update.ps1 -------------------------------------------------------------------------------- /automatic/cdrtfe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cdrtfe/README.md -------------------------------------------------------------------------------- /automatic/cdrtfe/cdrtfe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cdrtfe/cdrtfe.json -------------------------------------------------------------------------------- /automatic/cdrtfe/cdrtfe.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cdrtfe/cdrtfe.nuspec -------------------------------------------------------------------------------- /automatic/cdrtfe/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cdrtfe/update.ps1 -------------------------------------------------------------------------------- /automatic/chromium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/chromium/README.md -------------------------------------------------------------------------------- /automatic/chromium/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/chromium/update.ps1 -------------------------------------------------------------------------------- /automatic/clementine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/clementine/README.md -------------------------------------------------------------------------------- /automatic/clementine/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/clementine/update.ps1 -------------------------------------------------------------------------------- /automatic/clipgrab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/clipgrab/README.md -------------------------------------------------------------------------------- /automatic/clipgrab/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/clipgrab/update.ps1 -------------------------------------------------------------------------------- /automatic/cmake/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cmake/Readme.md -------------------------------------------------------------------------------- /automatic/cmake/cmake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cmake/cmake.json -------------------------------------------------------------------------------- /automatic/cmake/cmake.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cmake/cmake.nuspec -------------------------------------------------------------------------------- /automatic/cmake/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cmake/update.ps1 -------------------------------------------------------------------------------- /automatic/codeblocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/codeblocks/README.md -------------------------------------------------------------------------------- /automatic/codeblocks/tools/.skipAutoUninstaller: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/codeblocks/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/codeblocks/update.ps1 -------------------------------------------------------------------------------- /automatic/codelite/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/codelite/Readme.md -------------------------------------------------------------------------------- /automatic/codelite/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/codelite/update.ps1 -------------------------------------------------------------------------------- /automatic/composer/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/composer/ReadMe.md -------------------------------------------------------------------------------- /automatic/composer/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/composer/update.ps1 -------------------------------------------------------------------------------- /automatic/curl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/curl/README.md -------------------------------------------------------------------------------- /automatic/curl/curl.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/curl/curl.nuspec -------------------------------------------------------------------------------- /automatic/curl/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/curl/update.ps1 -------------------------------------------------------------------------------- /automatic/cutepdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cutepdf/README.md -------------------------------------------------------------------------------- /automatic/cutepdf/info: -------------------------------------------------------------------------------- 1 | 7813952|4.0.1.500 2 | -------------------------------------------------------------------------------- /automatic/cutepdf/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cutepdf/update.ps1 -------------------------------------------------------------------------------- /automatic/cygwin/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cygwin/Changelog.md -------------------------------------------------------------------------------- /automatic/cygwin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cygwin/Readme.md -------------------------------------------------------------------------------- /automatic/cygwin/cygwin.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cygwin/cygwin.nuspec -------------------------------------------------------------------------------- /automatic/cygwin/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/cygwin/update.ps1 -------------------------------------------------------------------------------- /automatic/datagrip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/datagrip/README.md -------------------------------------------------------------------------------- /automatic/datagrip/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/datagrip/update.ps1 -------------------------------------------------------------------------------- /automatic/defraggler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/defraggler/README.md -------------------------------------------------------------------------------- /automatic/defraggler/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/defraggler/update.ps1 -------------------------------------------------------------------------------- /automatic/djv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/djv/README.md -------------------------------------------------------------------------------- /automatic/djv/djv.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/djv/djv.nuspec -------------------------------------------------------------------------------- /automatic/djv/legal/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/djv/legal/LICENSE.md -------------------------------------------------------------------------------- /automatic/djv/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/djv/update.ps1 -------------------------------------------------------------------------------- /automatic/dropbox/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/dropbox/Readme.md -------------------------------------------------------------------------------- /automatic/dropbox/dropbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/dropbox/dropbox.json -------------------------------------------------------------------------------- /automatic/dropbox/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/dropbox/update.ps1 -------------------------------------------------------------------------------- /automatic/encfs4win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/encfs4win/README.md -------------------------------------------------------------------------------- /automatic/encfs4win/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/encfs4win/update.ps1 -------------------------------------------------------------------------------- /automatic/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/es/README.md -------------------------------------------------------------------------------- /automatic/es/es.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/es/es.nuspec -------------------------------------------------------------------------------- /automatic/es/legal/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/es/legal/License.txt -------------------------------------------------------------------------------- /automatic/es/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/es/update.ps1 -------------------------------------------------------------------------------- /automatic/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/etcd/README.md -------------------------------------------------------------------------------- /automatic/etcd/etcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/etcd/etcd.json -------------------------------------------------------------------------------- /automatic/etcd/etcd.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/etcd/etcd.nuspec -------------------------------------------------------------------------------- /automatic/etcd/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/etcd/update.ps1 -------------------------------------------------------------------------------- /automatic/everything/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/everything/README.md -------------------------------------------------------------------------------- /automatic/everything/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/everything/update.ps1 -------------------------------------------------------------------------------- /automatic/ext2fsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ext2fsd/README.md -------------------------------------------------------------------------------- /automatic/ext2fsd/ext2fsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ext2fsd/ext2fsd.json -------------------------------------------------------------------------------- /automatic/ext2fsd/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ext2fsd/update.ps1 -------------------------------------------------------------------------------- /automatic/ffmpeg-full/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ffmpeg-full/README.md -------------------------------------------------------------------------------- /automatic/ffmpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ffmpeg/README.md -------------------------------------------------------------------------------- /automatic/ffmpeg/ffmpeg.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ffmpeg/ffmpeg.nuspec -------------------------------------------------------------------------------- /automatic/ffmpeg/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ffmpeg/update.ps1 -------------------------------------------------------------------------------- /automatic/filezilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/filezilla/README.md -------------------------------------------------------------------------------- /automatic/filezilla/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/filezilla/update.ps1 -------------------------------------------------------------------------------- /automatic/firefox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/firefox/README.md -------------------------------------------------------------------------------- /automatic/firefox/firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/firefox/firefox.json -------------------------------------------------------------------------------- /automatic/firefox/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/firefox/update.ps1 -------------------------------------------------------------------------------- /automatic/flightgear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/flightgear/README.md -------------------------------------------------------------------------------- /automatic/flightgear/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/flightgear/update.ps1 -------------------------------------------------------------------------------- /automatic/freecad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/freecad/README.md -------------------------------------------------------------------------------- /automatic/freecad/freecad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/freecad/freecad.json -------------------------------------------------------------------------------- /automatic/freecad/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/freecad/update.ps1 -------------------------------------------------------------------------------- /automatic/freeciv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/freeciv/README.md -------------------------------------------------------------------------------- /automatic/freeciv/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/freeciv/update.ps1 -------------------------------------------------------------------------------- /automatic/ghostscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ghostscript/README.md -------------------------------------------------------------------------------- /automatic/gimp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gimp/README.md -------------------------------------------------------------------------------- /automatic/gimp/gimp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gimp/gimp.nuspec -------------------------------------------------------------------------------- /automatic/gimp/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gimp/screenshot.jpg -------------------------------------------------------------------------------- /automatic/gimp/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gimp/update.ps1 -------------------------------------------------------------------------------- /automatic/git-lfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/git-lfs/README.md -------------------------------------------------------------------------------- /automatic/git-lfs/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/git-lfs/update.ps1 -------------------------------------------------------------------------------- /automatic/git.install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/git.install/README.md -------------------------------------------------------------------------------- /automatic/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/git/README.md -------------------------------------------------------------------------------- /automatic/git/git.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/git/git.nuspec -------------------------------------------------------------------------------- /automatic/git/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/git/update.ps1 -------------------------------------------------------------------------------- /automatic/gitextensions/tools/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- 1 | Uninstall-BinFile gitex 2 | -------------------------------------------------------------------------------- /automatic/gmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gmer/README.md -------------------------------------------------------------------------------- /automatic/gmer/gmer.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gmer/gmer.nuspec -------------------------------------------------------------------------------- /automatic/gmer/tools/gmer.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/gmer/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gmer/update.ps1 -------------------------------------------------------------------------------- /automatic/gnucash/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gnucash/Changelog.md -------------------------------------------------------------------------------- /automatic/gnucash/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gnucash/Readme.md -------------------------------------------------------------------------------- /automatic/gnucash/gnucash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gnucash/gnucash.json -------------------------------------------------------------------------------- /automatic/gnucash/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gnucash/update.ps1 -------------------------------------------------------------------------------- /automatic/gnupg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gnupg/README.md -------------------------------------------------------------------------------- /automatic/gnupg/gnupg.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gnupg/gnupg.nuspec -------------------------------------------------------------------------------- /automatic/gnupg/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gnupg/update.ps1 -------------------------------------------------------------------------------- /automatic/gobby/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gobby/Readme.md -------------------------------------------------------------------------------- /automatic/gobby/gobby.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gobby/gobby.nuspec -------------------------------------------------------------------------------- /automatic/gobby/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gobby/screenshot.png -------------------------------------------------------------------------------- /automatic/gobby/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gobby/update.ps1 -------------------------------------------------------------------------------- /automatic/gom-player/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gom-player/Readme.md -------------------------------------------------------------------------------- /automatic/gom-player/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gom-player/update.ps1 -------------------------------------------------------------------------------- /automatic/gpg4win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gpg4win/README.md -------------------------------------------------------------------------------- /automatic/gpg4win/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/gpg4win/update.ps1 -------------------------------------------------------------------------------- /automatic/graphviz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/graphviz/README.md -------------------------------------------------------------------------------- /automatic/graphviz/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/graphviz/update.ps1 -------------------------------------------------------------------------------- /automatic/hedgewars/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/hedgewars/Readme.md -------------------------------------------------------------------------------- /automatic/hedgewars/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/hedgewars/update.ps1 -------------------------------------------------------------------------------- /automatic/hostsman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/hostsman/README.md -------------------------------------------------------------------------------- /automatic/inkscape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/inkscape/README.md -------------------------------------------------------------------------------- /automatic/inkscape/tools/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- 1 | Uninstall-BinFile 'inkscape' -------------------------------------------------------------------------------- /automatic/inkscape/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/inkscape/update.ps1 -------------------------------------------------------------------------------- /automatic/itunes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/itunes/README.md -------------------------------------------------------------------------------- /automatic/itunes/info: -------------------------------------------------------------------------------- 1 | "b2e28b9a94d875d594828973b06cd90e-11"|12.13.9.1 -------------------------------------------------------------------------------- /automatic/itunes/itunes.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/itunes/itunes.nuspec -------------------------------------------------------------------------------- /automatic/itunes/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/itunes/update.ps1 -------------------------------------------------------------------------------- /automatic/jenkins/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jenkins/ReadMe.md -------------------------------------------------------------------------------- /automatic/jenkins/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jenkins/update.ps1 -------------------------------------------------------------------------------- /automatic/jitsi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jitsi/README.md -------------------------------------------------------------------------------- /automatic/jitsi/jitsi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jitsi/jitsi.json -------------------------------------------------------------------------------- /automatic/jitsi/jitsi.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jitsi/jitsi.nuspec -------------------------------------------------------------------------------- /automatic/jitsi/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jitsi/update.ps1 -------------------------------------------------------------------------------- /automatic/jubler/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jubler/Changelog.md -------------------------------------------------------------------------------- /automatic/jubler/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jubler/Readme.md -------------------------------------------------------------------------------- /automatic/jubler/jubler.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jubler/jubler.nuspec -------------------------------------------------------------------------------- /automatic/jubler/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/jubler/update.ps1 -------------------------------------------------------------------------------- /automatic/juju/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/juju/Readme.md -------------------------------------------------------------------------------- /automatic/juju/juju.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/juju/juju.json -------------------------------------------------------------------------------- /automatic/juju/juju.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/juju/juju.nuspec -------------------------------------------------------------------------------- /automatic/juju/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/juju/update.ps1 -------------------------------------------------------------------------------- /automatic/julia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/julia/README.md -------------------------------------------------------------------------------- /automatic/julia/julia.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/julia/julia.nuspec -------------------------------------------------------------------------------- /automatic/julia/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/julia/update.ps1 -------------------------------------------------------------------------------- /automatic/k9s/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/k9s/ReadMe.md -------------------------------------------------------------------------------- /automatic/k9s/k9s.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/k9s/k9s.nuspec -------------------------------------------------------------------------------- /automatic/k9s/legal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/k9s/legal/LICENSE.txt -------------------------------------------------------------------------------- /automatic/k9s/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/k9s/update.ps1 -------------------------------------------------------------------------------- /automatic/keepassx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keepassx/README.md -------------------------------------------------------------------------------- /automatic/keepassx/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keepassx/update.ps1 -------------------------------------------------------------------------------- /automatic/keepassxc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keepassxc/README.md -------------------------------------------------------------------------------- /automatic/keepassxc/tools/.skipAutoUninstall: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /automatic/keepassxc/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keepassxc/update.ps1 -------------------------------------------------------------------------------- /automatic/keeweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keeweb/README.md -------------------------------------------------------------------------------- /automatic/keeweb/keeweb.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keeweb/keeweb.nuspec -------------------------------------------------------------------------------- /automatic/keeweb/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keeweb/screenshot.png -------------------------------------------------------------------------------- /automatic/keeweb/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keeweb/update.ps1 -------------------------------------------------------------------------------- /automatic/ketarin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ketarin/Readme.md -------------------------------------------------------------------------------- /automatic/ketarin/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ketarin/update.ps1 -------------------------------------------------------------------------------- /automatic/keyfinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keyfinder/README.md -------------------------------------------------------------------------------- /automatic/keyfinder/_update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/keyfinder/_update.ps1 -------------------------------------------------------------------------------- /automatic/kitty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/kitty/README.md -------------------------------------------------------------------------------- /automatic/kitty/kitty.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/kitty/kitty.nuspec -------------------------------------------------------------------------------- /automatic/kitty/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/kitty/screenshot.png -------------------------------------------------------------------------------- /automatic/kitty/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/kitty/update.ps1 -------------------------------------------------------------------------------- /automatic/krita/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/krita/README.md -------------------------------------------------------------------------------- /automatic/krita/krita.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/krita/krita.nuspec -------------------------------------------------------------------------------- /automatic/krita/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/krita/screenshot.png -------------------------------------------------------------------------------- /automatic/krita/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/krita/update.ps1 -------------------------------------------------------------------------------- /automatic/kubelogin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/kubelogin/README.md -------------------------------------------------------------------------------- /automatic/kubelogin/tools/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- 1 | Uninstall-BinFile 'kubectl-oidc_login' -------------------------------------------------------------------------------- /automatic/kubelogin/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/kubelogin/update.ps1 -------------------------------------------------------------------------------- /automatic/kubescape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/kubescape/README.md -------------------------------------------------------------------------------- /automatic/kubescape/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/kubescape/update.ps1 -------------------------------------------------------------------------------- /automatic/librecad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/librecad/README.md -------------------------------------------------------------------------------- /automatic/librecad/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/librecad/update.ps1 -------------------------------------------------------------------------------- /automatic/lightalloy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/lightalloy/README.md -------------------------------------------------------------------------------- /automatic/lightscreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/lightscreen/README.md -------------------------------------------------------------------------------- /automatic/lightworks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/lightworks/README.md -------------------------------------------------------------------------------- /automatic/logfusion/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/logfusion/Readme.md -------------------------------------------------------------------------------- /automatic/logfusion/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/logfusion/update.ps1 -------------------------------------------------------------------------------- /automatic/maxima/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/maxima/README.md -------------------------------------------------------------------------------- /automatic/maxima/maxima.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/maxima/maxima.nuspec -------------------------------------------------------------------------------- /automatic/maxima/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/maxima/screenshot.png -------------------------------------------------------------------------------- /automatic/maxima/tools/.skipAutoUninstaller: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/maxima/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/maxima/update.ps1 -------------------------------------------------------------------------------- /automatic/maxthon.commandline/tools/MaxthonPortable/Bin/Maxthon.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/maxthon.commandline/tools/MaxthonPortable/Bin/MxAppLoader.exe.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/maxthon.commandline/tools/MaxthonPortable/Bin/MxCrashReport.exe.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/mendeley/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mendeley/README.md -------------------------------------------------------------------------------- /automatic/mendeley/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mendeley/update.ps1 -------------------------------------------------------------------------------- /automatic/minikube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/minikube/README.md -------------------------------------------------------------------------------- /automatic/minikube/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/minikube/update.ps1 -------------------------------------------------------------------------------- /automatic/minishift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/minishift/README.md -------------------------------------------------------------------------------- /automatic/minishift/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/minishift/update.ps1 -------------------------------------------------------------------------------- /automatic/mixxx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mixxx/README.md -------------------------------------------------------------------------------- /automatic/mixxx/mixxx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mixxx/mixxx.json -------------------------------------------------------------------------------- /automatic/mixxx/mixxx.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mixxx/mixxx.nuspec -------------------------------------------------------------------------------- /automatic/mixxx/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mixxx/screenshot.png -------------------------------------------------------------------------------- /automatic/mixxx/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mixxx/update.ps1 -------------------------------------------------------------------------------- /automatic/mkdocs-material/tools/ChocolateyUninstall.ps1: -------------------------------------------------------------------------------- 1 | python -m pip uninstall mkdocs-material -y -------------------------------------------------------------------------------- /automatic/mkdocs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mkdocs/README.md -------------------------------------------------------------------------------- /automatic/mkdocs/mkdocs.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mkdocs/mkdocs.nuspec -------------------------------------------------------------------------------- /automatic/mkdocs/tools/ChocolateyUninstall.ps1: -------------------------------------------------------------------------------- 1 | python -m pip uninstall mkdocs -y -------------------------------------------------------------------------------- /automatic/mkdocs/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mkdocs/update.ps1 -------------------------------------------------------------------------------- /automatic/mkvtoolnix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mkvtoolnix/README.md -------------------------------------------------------------------------------- /automatic/mkvtoolnix/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mkvtoolnix/update.ps1 -------------------------------------------------------------------------------- /automatic/mono/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mono/Readme.md -------------------------------------------------------------------------------- /automatic/mono/mono.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mono/mono.nuspec -------------------------------------------------------------------------------- /automatic/mono/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mono/update.ps1 -------------------------------------------------------------------------------- /automatic/mp3tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mp3tag/README.md -------------------------------------------------------------------------------- /automatic/mp3tag/mp3tag.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mp3tag/mp3tag.nuspec -------------------------------------------------------------------------------- /automatic/mp3tag/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mp3tag/update.ps1 -------------------------------------------------------------------------------- /automatic/mpc-hc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mpc-hc/README.md -------------------------------------------------------------------------------- /automatic/msys2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/msys2/README.md -------------------------------------------------------------------------------- /automatic/msys2/msys2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/msys2/msys2.nuspec -------------------------------------------------------------------------------- /automatic/msys2/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/msys2/update.ps1 -------------------------------------------------------------------------------- /automatic/mumble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mumble/README.md -------------------------------------------------------------------------------- /automatic/mumble/mumble.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mumble/mumble.nuspec -------------------------------------------------------------------------------- /automatic/mumble/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/mumble/update.ps1 -------------------------------------------------------------------------------- /automatic/musescore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/musescore/README.md -------------------------------------------------------------------------------- /automatic/musescore/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/musescore/update.ps1 -------------------------------------------------------------------------------- /automatic/nircmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nircmd/README.md -------------------------------------------------------------------------------- /automatic/nircmd/nircmd.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nircmd/nircmd.nuspec -------------------------------------------------------------------------------- /automatic/nircmd/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nircmd/update.ps1 -------------------------------------------------------------------------------- /automatic/nmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nmap/README.md -------------------------------------------------------------------------------- /automatic/nmap/nmap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nmap/nmap.nuspec -------------------------------------------------------------------------------- /automatic/nmap/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nmap/update.ps1 -------------------------------------------------------------------------------- /automatic/no-ip-duc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/no-ip-duc/README.md -------------------------------------------------------------------------------- /automatic/no-ip-duc/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/no-ip-duc/update.ps1 -------------------------------------------------------------------------------- /automatic/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nodejs/README.md -------------------------------------------------------------------------------- /automatic/nodejs/nodejs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nodejs/nodejs.json -------------------------------------------------------------------------------- /automatic/nodejs/nodejs.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nodejs/nodejs.nuspec -------------------------------------------------------------------------------- /automatic/nodejs/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nodejs/update.ps1 -------------------------------------------------------------------------------- /automatic/nomacs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nomacs/README.md -------------------------------------------------------------------------------- /automatic/nomacs/nomacs.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nomacs/nomacs.nuspec -------------------------------------------------------------------------------- /automatic/nomacs/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nomacs/screenshot.jpg -------------------------------------------------------------------------------- /automatic/nomacs/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nomacs/update.ps1 -------------------------------------------------------------------------------- /automatic/notepadplusplus.commandline/tools/notepad++.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/notepadplusplus.commandline/tools/updater/gpup.exe.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/nssm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nssm/CHANGELOG.md -------------------------------------------------------------------------------- /automatic/nssm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nssm/README.md -------------------------------------------------------------------------------- /automatic/nssm/nssm.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nssm/nssm.nuspec -------------------------------------------------------------------------------- /automatic/nssm/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/nssm/update.ps1 -------------------------------------------------------------------------------- /automatic/opera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/opera/README.md -------------------------------------------------------------------------------- /automatic/opera/opera.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/opera/opera.nuspec -------------------------------------------------------------------------------- /automatic/opera/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/opera/update.ps1 -------------------------------------------------------------------------------- /automatic/optipng/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/optipng/Changelog.md -------------------------------------------------------------------------------- /automatic/optipng/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/optipng/Readme.md -------------------------------------------------------------------------------- /automatic/optipng/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/optipng/update.ps1 -------------------------------------------------------------------------------- /automatic/paint.net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/paint.net/README.md -------------------------------------------------------------------------------- /automatic/paint.net/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/paint.net/update.ps1 -------------------------------------------------------------------------------- /automatic/palemoon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/palemoon/README.md -------------------------------------------------------------------------------- /automatic/palemoon/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/palemoon/update.ps1 -------------------------------------------------------------------------------- /automatic/papercut/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/papercut/ReadMe.md -------------------------------------------------------------------------------- /automatic/papercut/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/papercut/update.ps1 -------------------------------------------------------------------------------- /automatic/patch-my-pc/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/patch-my-pc/Readme.md -------------------------------------------------------------------------------- /automatic/patch-my-pc/tools/PatchMyPC.exe.GUI: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/peazip/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/peazip/Readme.md -------------------------------------------------------------------------------- /automatic/peazip/peazip.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/peazip/peazip.nuspec -------------------------------------------------------------------------------- /automatic/peazip/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/peazip/update.ps1 -------------------------------------------------------------------------------- /automatic/pencil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/pencil/README.md -------------------------------------------------------------------------------- /automatic/pencil/pencil.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/pencil/pencil.nuspec -------------------------------------------------------------------------------- /automatic/pencil/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/pencil/update.ps1 -------------------------------------------------------------------------------- /automatic/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/php/README.md -------------------------------------------------------------------------------- /automatic/php/legal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/php/legal/LICENSE.txt -------------------------------------------------------------------------------- /automatic/php/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/php/php.json -------------------------------------------------------------------------------- /automatic/php/php.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/php/php.nuspec -------------------------------------------------------------------------------- /automatic/php/tools/helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/php/tools/helpers.ps1 -------------------------------------------------------------------------------- /automatic/php/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/php/update.ps1 -------------------------------------------------------------------------------- /automatic/picard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/picard/README.md -------------------------------------------------------------------------------- /automatic/picard/picard.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/picard/picard.nuspec -------------------------------------------------------------------------------- /automatic/picard/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/picard/update.ps1 -------------------------------------------------------------------------------- /automatic/poi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/poi/README.md -------------------------------------------------------------------------------- /automatic/poi/legal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/poi/legal/LICENSE.txt -------------------------------------------------------------------------------- /automatic/poi/poi.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/poi/poi.nuspec -------------------------------------------------------------------------------- /automatic/poi/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/poi/update.ps1 -------------------------------------------------------------------------------- /automatic/poweriso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/poweriso/README.md -------------------------------------------------------------------------------- /automatic/poweriso/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/poweriso/update.ps1 -------------------------------------------------------------------------------- /automatic/prey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/prey/README.md -------------------------------------------------------------------------------- /automatic/prey/prey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/prey/prey.json -------------------------------------------------------------------------------- /automatic/prey/prey.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/prey/prey.nuspec -------------------------------------------------------------------------------- /automatic/prey/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/prey/update.ps1 -------------------------------------------------------------------------------- /automatic/protoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/protoc/README.md -------------------------------------------------------------------------------- /automatic/protoc/protoc.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/protoc/protoc.nuspec -------------------------------------------------------------------------------- /automatic/protoc/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/protoc/update.ps1 -------------------------------------------------------------------------------- /automatic/pspp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/pspp/Readme.md -------------------------------------------------------------------------------- /automatic/pspp/pspp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/pspp/pspp.nuspec -------------------------------------------------------------------------------- /automatic/pspp/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/pspp/update.ps1 -------------------------------------------------------------------------------- /automatic/putty.portable/tools/PAGEANT.EXE.GUI: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/putty.portable/tools/PUTTY.EXE.GUI: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/putty.portable/tools/PUTTYGEN.EXE.GUI: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/putty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/putty/README.md -------------------------------------------------------------------------------- /automatic/putty/putty.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/putty/putty.nuspec -------------------------------------------------------------------------------- /automatic/putty/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/putty/update.ps1 -------------------------------------------------------------------------------- /automatic/pyhoca-gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/pyhoca-gui/README.md -------------------------------------------------------------------------------- /automatic/pyhoca-gui/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/pyhoca-gui/update.ps1 -------------------------------------------------------------------------------- /automatic/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python/README.md -------------------------------------------------------------------------------- /automatic/python/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python/python.json -------------------------------------------------------------------------------- /automatic/python/python.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python/python.nuspec -------------------------------------------------------------------------------- /automatic/python/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python/update.ps1 -------------------------------------------------------------------------------- /automatic/python2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python2/README.md -------------------------------------------------------------------------------- /automatic/python2/python2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python2/python2.json -------------------------------------------------------------------------------- /automatic/python2/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python2/update.ps1 -------------------------------------------------------------------------------- /automatic/python3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python3/README.md -------------------------------------------------------------------------------- /automatic/python3/python3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python3/python3.json -------------------------------------------------------------------------------- /automatic/python3/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/python3/update.ps1 -------------------------------------------------------------------------------- /automatic/qbittorrent/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/qbittorrent/Readme.md -------------------------------------------------------------------------------- /automatic/qtox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/qtox/README.md -------------------------------------------------------------------------------- /automatic/qtox/qtox.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/qtox/qtox.nuspec -------------------------------------------------------------------------------- /automatic/qtox/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/qtox/screenshot.png -------------------------------------------------------------------------------- /automatic/qtox/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/qtox/update.ps1 -------------------------------------------------------------------------------- /automatic/quiterss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/quiterss/README.md -------------------------------------------------------------------------------- /automatic/quiterss/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/quiterss/update.ps1 -------------------------------------------------------------------------------- /automatic/rapidee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/rapidee/README.md -------------------------------------------------------------------------------- /automatic/rapidee/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/rapidee/update.ps1 -------------------------------------------------------------------------------- /automatic/rdcman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/rdcman/README.md -------------------------------------------------------------------------------- /automatic/rdcman/info: -------------------------------------------------------------------------------- 1 | 0x8DE215D0CF36AFD|3.11.0 -------------------------------------------------------------------------------- /automatic/rdcman/rdcman.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/rdcman/rdcman.nuspec -------------------------------------------------------------------------------- /automatic/rdcman/tools/RDCMan.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/rdcman/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/rdcman/update.ps1 -------------------------------------------------------------------------------- /automatic/reshack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/reshack/README.md -------------------------------------------------------------------------------- /automatic/reshack/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/reshack/update.ps1 -------------------------------------------------------------------------------- /automatic/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ruby/README.md -------------------------------------------------------------------------------- /automatic/ruby/ruby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ruby/ruby.json -------------------------------------------------------------------------------- /automatic/ruby/ruby.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ruby/ruby.nuspec -------------------------------------------------------------------------------- /automatic/ruby/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ruby/update.ps1 -------------------------------------------------------------------------------- /automatic/rufus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/rufus/README.md -------------------------------------------------------------------------------- /automatic/rufus/rufus.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/rufus/rufus.nuspec -------------------------------------------------------------------------------- /automatic/rufus/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/rufus/screenshot.png -------------------------------------------------------------------------------- /automatic/rufus/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/rufus/update.ps1 -------------------------------------------------------------------------------- /automatic/screencloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/screencloud/README.md -------------------------------------------------------------------------------- /automatic/scribus/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/scribus/Readme.md -------------------------------------------------------------------------------- /automatic/scribus/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/scribus/update.ps1 -------------------------------------------------------------------------------- /automatic/selenium.powershell/tools/.skipAutoUninstaller: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/sidesync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/sidesync/README.md -------------------------------------------------------------------------------- /automatic/sidesync/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/sidesync/update.ps1 -------------------------------------------------------------------------------- /automatic/simplewall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/simplewall/README.md -------------------------------------------------------------------------------- /automatic/simplewall/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/simplewall/update.ps1 -------------------------------------------------------------------------------- /automatic/smartftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/smartftp/README.md -------------------------------------------------------------------------------- /automatic/smartftp/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/smartftp/update.ps1 -------------------------------------------------------------------------------- /automatic/sourcetree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/sourcetree/README.md -------------------------------------------------------------------------------- /automatic/sourcetree/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/sourcetree/update.ps1 -------------------------------------------------------------------------------- /automatic/speccy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/speccy/README.md -------------------------------------------------------------------------------- /automatic/speccy/speccy.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/speccy/speccy.nuspec -------------------------------------------------------------------------------- /automatic/speccy/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/speccy/update.ps1 -------------------------------------------------------------------------------- /automatic/spotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/spotify/README.md -------------------------------------------------------------------------------- /automatic/spotify/info: -------------------------------------------------------------------------------- 1 | "7067c197b2e1eadf24cd68c52cd6d7cd"|1.2.77.358 2 | -------------------------------------------------------------------------------- /automatic/spotify/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/spotify/update.ps1 -------------------------------------------------------------------------------- /automatic/sqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/sqlite/README.md -------------------------------------------------------------------------------- /automatic/sqlite/sqlite.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/sqlite/sqlite.nuspec -------------------------------------------------------------------------------- /automatic/sqlite/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/sqlite/update.ps1 -------------------------------------------------------------------------------- /automatic/texmaker/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/texmaker/Readme.md -------------------------------------------------------------------------------- /automatic/texmaker/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/texmaker/update.ps1 -------------------------------------------------------------------------------- /automatic/thunderbird/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/thunderbird/README.md -------------------------------------------------------------------------------- /automatic/tightvnc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tightvnc/README.md -------------------------------------------------------------------------------- /automatic/tightvnc/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tightvnc/update.ps1 -------------------------------------------------------------------------------- /automatic/tixati/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tixati/README.md -------------------------------------------------------------------------------- /automatic/tixati/tixati.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tixati/tixati.nuspec -------------------------------------------------------------------------------- /automatic/tixati/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tixati/update.ps1 -------------------------------------------------------------------------------- /automatic/tor-browser/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tor-browser/Readme.md -------------------------------------------------------------------------------- /automatic/tortoisegit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tortoisegit/README.md -------------------------------------------------------------------------------- /automatic/tortoisesvn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tortoisesvn/README.md -------------------------------------------------------------------------------- /automatic/totalcommander/tools/.skipAutoUninstall: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/tribler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tribler/README.md -------------------------------------------------------------------------------- /automatic/tribler/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tribler/update.ps1 -------------------------------------------------------------------------------- /automatic/tv-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tv-browser/README.md -------------------------------------------------------------------------------- /automatic/tv-browser/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/tv-browser/update.ps1 -------------------------------------------------------------------------------- /automatic/typescript/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/typescript/Readme.md -------------------------------------------------------------------------------- /automatic/typescript/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/typescript/update.ps1 -------------------------------------------------------------------------------- /automatic/ultradefrag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/ultradefrag/README.md -------------------------------------------------------------------------------- /automatic/umlet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/umlet/README.md -------------------------------------------------------------------------------- /automatic/umlet/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/umlet/screenshot.png -------------------------------------------------------------------------------- /automatic/umlet/umlet.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/umlet/umlet.nuspec -------------------------------------------------------------------------------- /automatic/umlet/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/umlet/update.ps1 -------------------------------------------------------------------------------- /automatic/unchecky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/unchecky/README.md -------------------------------------------------------------------------------- /automatic/unchecky/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/unchecky/update.ps1 -------------------------------------------------------------------------------- /automatic/universal-usb-installer/tools/universal-usb-installer.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vagrant/README.md -------------------------------------------------------------------------------- /automatic/vagrant/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vagrant/update.ps1 -------------------------------------------------------------------------------- /automatic/vcredist140/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vcredist140/README.md -------------------------------------------------------------------------------- /automatic/vcredist2017/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vcredist2017/info -------------------------------------------------------------------------------- /automatic/videoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/videoder/README.md -------------------------------------------------------------------------------- /automatic/videoder/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/videoder/update.ps1 -------------------------------------------------------------------------------- /automatic/vim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vim/README.md -------------------------------------------------------------------------------- /automatic/vim/legal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vim/legal/LICENSE.txt -------------------------------------------------------------------------------- /automatic/vim/tools/helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vim/tools/helpers.ps1 -------------------------------------------------------------------------------- /automatic/vim/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vim/update.ps1 -------------------------------------------------------------------------------- /automatic/vim/vim.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vim/vim.nuspec -------------------------------------------------------------------------------- /automatic/virtualbox/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/virtualbox/Readme.md -------------------------------------------------------------------------------- /automatic/virtualbox/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/virtualbox/update.ps1 -------------------------------------------------------------------------------- /automatic/vlc.install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vlc.install/README.md -------------------------------------------------------------------------------- /automatic/vlc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vlc/README.md -------------------------------------------------------------------------------- /automatic/vlc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vlc/screenshot.png -------------------------------------------------------------------------------- /automatic/vlc/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vlc/update.ps1 -------------------------------------------------------------------------------- /automatic/vlc/vlc.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vlc/vlc.nuspec -------------------------------------------------------------------------------- /automatic/voicebot/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/voicebot/Readme.md -------------------------------------------------------------------------------- /automatic/voicebot/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/voicebot/update.ps1 -------------------------------------------------------------------------------- /automatic/vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vscode/README.md -------------------------------------------------------------------------------- /automatic/vscode/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vscode/screenshot.png -------------------------------------------------------------------------------- /automatic/vscode/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vscode/update.ps1 -------------------------------------------------------------------------------- /automatic/vscode/vscode.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/vscode/vscode.nuspec -------------------------------------------------------------------------------- /automatic/waterfox/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/waterfox/Readme.md -------------------------------------------------------------------------------- /automatic/waterfox/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/waterfox/update.ps1 -------------------------------------------------------------------------------- /automatic/webstorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/webstorm/README.md -------------------------------------------------------------------------------- /automatic/webstorm/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/webstorm/update.ps1 -------------------------------------------------------------------------------- /automatic/wesnoth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wesnoth/README.md -------------------------------------------------------------------------------- /automatic/wesnoth/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wesnoth/update.ps1 -------------------------------------------------------------------------------- /automatic/wesnoth/wesnoth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wesnoth/wesnoth.json -------------------------------------------------------------------------------- /automatic/wget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wget/README.md -------------------------------------------------------------------------------- /automatic/wget/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wget/update.ps1 -------------------------------------------------------------------------------- /automatic/wget/wget.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wget/wget.nuspec -------------------------------------------------------------------------------- /automatic/win10mct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/win10mct/README.md -------------------------------------------------------------------------------- /automatic/win10mct/info: -------------------------------------------------------------------------------- 1 | "0x8D87513CA8372C0"|10.0.19041.572 2 | -------------------------------------------------------------------------------- /automatic/win10mct/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/win10mct/update.ps1 -------------------------------------------------------------------------------- /automatic/wincdemu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wincdemu/README.md -------------------------------------------------------------------------------- /automatic/wincdemu/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wincdemu/update.ps1 -------------------------------------------------------------------------------- /automatic/winpcap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/winpcap/README.md -------------------------------------------------------------------------------- /automatic/winscp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/winscp/README.md -------------------------------------------------------------------------------- /automatic/winscp/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/winscp/update.ps1 -------------------------------------------------------------------------------- /automatic/winscp/winscp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/winscp/winscp.nuspec -------------------------------------------------------------------------------- /automatic/wixtoolset/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wixtoolset/Readme.md -------------------------------------------------------------------------------- /automatic/wixtoolset/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/wixtoolset/update.ps1 -------------------------------------------------------------------------------- /automatic/x2go/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/x2go/Readme.md -------------------------------------------------------------------------------- /automatic/x2go/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/x2go/update.ps1 -------------------------------------------------------------------------------- /automatic/x2go/x2go.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/x2go/x2go.nuspec -------------------------------------------------------------------------------- /automatic/yo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/yo/README.md -------------------------------------------------------------------------------- /automatic/yo/tools/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- 1 | npm uninstall -g yo 2 | -------------------------------------------------------------------------------- /automatic/yo/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/yo/update.ps1 -------------------------------------------------------------------------------- /automatic/yo/yo.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/yo/yo.nuspec -------------------------------------------------------------------------------- /automatic/youtube-dl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/youtube-dl/README.md -------------------------------------------------------------------------------- /automatic/youtube-dl/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/youtube-dl/update.ps1 -------------------------------------------------------------------------------- /automatic/yumi-uefi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/yumi-uefi/README.md -------------------------------------------------------------------------------- /automatic/yumi-uefi/tools/yumi-uefi.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/yumi-uefi/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/yumi-uefi/update.ps1 -------------------------------------------------------------------------------- /automatic/yumi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/yumi/README.md -------------------------------------------------------------------------------- /automatic/yumi/tools/yumi.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automatic/yumi/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/yumi/update.ps1 -------------------------------------------------------------------------------- /automatic/yumi/yumi.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/yumi/yumi.nuspec -------------------------------------------------------------------------------- /automatic/zotero/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/zotero/Readme.md -------------------------------------------------------------------------------- /automatic/zotero/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/zotero/screenshot.png -------------------------------------------------------------------------------- /automatic/zotero/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/zotero/update.ps1 -------------------------------------------------------------------------------- /automatic/zotero/zotero.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/automatic/zotero/zotero.nuspec -------------------------------------------------------------------------------- /extensions/extensions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/extensions/extensions.psm1 -------------------------------------------------------------------------------- /icons/1password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/1password.png -------------------------------------------------------------------------------- /icons/1password4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/1password4.png -------------------------------------------------------------------------------- /icons/1password7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/1password7.png -------------------------------------------------------------------------------- /icons/1password8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/1password8.png -------------------------------------------------------------------------------- /icons/360ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/360ts.png -------------------------------------------------------------------------------- /icons/7zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/7zip.svg -------------------------------------------------------------------------------- /icons/Brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/Brackets.svg -------------------------------------------------------------------------------- /icons/Clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/Clover.png -------------------------------------------------------------------------------- /icons/Cygwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/Cygwin.png -------------------------------------------------------------------------------- /icons/InkScape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/InkScape.svg -------------------------------------------------------------------------------- /icons/PDFCreator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/PDFCreator.png -------------------------------------------------------------------------------- /icons/PDFXChangeViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/PDFXChangeViewer.png -------------------------------------------------------------------------------- /icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/README.md -------------------------------------------------------------------------------- /icons/absolute-uninstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/absolute-uninstaller.png -------------------------------------------------------------------------------- /icons/activepresenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/activepresenter.png -------------------------------------------------------------------------------- /icons/alldup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/alldup.png -------------------------------------------------------------------------------- /icons/ant-renamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ant-renamer.png -------------------------------------------------------------------------------- /icons/apache-httpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/apache-httpd.png -------------------------------------------------------------------------------- /icons/aptana-studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/aptana-studio.png -------------------------------------------------------------------------------- /icons/assaultcube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/assaultcube.png -------------------------------------------------------------------------------- /icons/audacity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/audacity.svg -------------------------------------------------------------------------------- /icons/autohotkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/autohotkey.png -------------------------------------------------------------------------------- /icons/autoit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/autoit.png -------------------------------------------------------------------------------- /icons/avidemux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/avidemux.png -------------------------------------------------------------------------------- /icons/azcopy10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/azcopy10.png -------------------------------------------------------------------------------- /icons/becyicongrabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/becyicongrabber.png -------------------------------------------------------------------------------- /icons/bleachbit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/bleachbit.svg -------------------------------------------------------------------------------- /icons/blender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/blender.svg -------------------------------------------------------------------------------- /icons/bluefish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/bluefish.svg -------------------------------------------------------------------------------- /icons/bluegriffon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/bluegriffon.svg -------------------------------------------------------------------------------- /icons/brave-beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/brave-beta.svg -------------------------------------------------------------------------------- /icons/brave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/brave.svg -------------------------------------------------------------------------------- /icons/bulk-crap-uninstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/bulk-crap-uninstaller.png -------------------------------------------------------------------------------- /icons/calibre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/calibre.png -------------------------------------------------------------------------------- /icons/cameyo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/cameyo.svg -------------------------------------------------------------------------------- /icons/ccleaner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ccleaner.png -------------------------------------------------------------------------------- /icons/cdburnerxp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/cdburnerxp.png -------------------------------------------------------------------------------- /icons/cdrtfe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/cdrtfe.png -------------------------------------------------------------------------------- /icons/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/chrome.svg -------------------------------------------------------------------------------- /icons/chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/chromium.png -------------------------------------------------------------------------------- /icons/classic-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/classic-shell.png -------------------------------------------------------------------------------- /icons/clementine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/clementine.svg -------------------------------------------------------------------------------- /icons/clipboardfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/clipboardfusion.png -------------------------------------------------------------------------------- /icons/clipgrab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/clipgrab.png -------------------------------------------------------------------------------- /icons/cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/cmake.png -------------------------------------------------------------------------------- /icons/codeblocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/codeblocks.png -------------------------------------------------------------------------------- /icons/codelite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/codelite.png -------------------------------------------------------------------------------- /icons/compact-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/compact-timer.png -------------------------------------------------------------------------------- /icons/composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/composer.png -------------------------------------------------------------------------------- /icons/curl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/curl.png -------------------------------------------------------------------------------- /icons/curl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/curl.svg -------------------------------------------------------------------------------- /icons/cutepdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/cutepdf.png -------------------------------------------------------------------------------- /icons/datagrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/datagrip.png -------------------------------------------------------------------------------- /icons/defraggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/defraggler.png -------------------------------------------------------------------------------- /icons/diskdefragtouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/diskdefragtouch.png -------------------------------------------------------------------------------- /icons/displayfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/displayfusion.png -------------------------------------------------------------------------------- /icons/djv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/djv.png -------------------------------------------------------------------------------- /icons/docker-kitematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/docker-kitematic.png -------------------------------------------------------------------------------- /icons/dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/dotnet.png -------------------------------------------------------------------------------- /icons/dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/dropbox.svg -------------------------------------------------------------------------------- /icons/encfs4win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/encfs4win.png -------------------------------------------------------------------------------- /icons/etcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/etcd.png -------------------------------------------------------------------------------- /icons/everything.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/everything.png -------------------------------------------------------------------------------- /icons/ext2fsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ext2fsd.png -------------------------------------------------------------------------------- /icons/feeddemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/feeddemon.png -------------------------------------------------------------------------------- /icons/ffdshow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ffdshow.svg -------------------------------------------------------------------------------- /icons/ffmpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ffmpeg.svg -------------------------------------------------------------------------------- /icons/fiddler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/fiddler.svg -------------------------------------------------------------------------------- /icons/filezilla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/filezilla.svg -------------------------------------------------------------------------------- /icons/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/firefox.svg -------------------------------------------------------------------------------- /icons/flashplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/flashplayer.png -------------------------------------------------------------------------------- /icons/flightgear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/flightgear.png -------------------------------------------------------------------------------- /icons/free-virtual-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/free-virtual-keyboard.png -------------------------------------------------------------------------------- /icons/freecad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/freecad.svg -------------------------------------------------------------------------------- /icons/freeciv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/freeciv.png -------------------------------------------------------------------------------- /icons/freevideoeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/freevideoeditor.png -------------------------------------------------------------------------------- /icons/ghostscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ghostscript.svg -------------------------------------------------------------------------------- /icons/gimp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/gimp.svg -------------------------------------------------------------------------------- /icons/git-lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/git-lfs.png -------------------------------------------------------------------------------- /icons/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/git.svg -------------------------------------------------------------------------------- /icons/gitextensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/gitextensions.svg -------------------------------------------------------------------------------- /icons/gmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/gmer.png -------------------------------------------------------------------------------- /icons/gnucash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/gnucash.svg -------------------------------------------------------------------------------- /icons/gnupg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/gnupg.png -------------------------------------------------------------------------------- /icons/gobby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/gobby.png -------------------------------------------------------------------------------- /icons/gom-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/gom-player.png -------------------------------------------------------------------------------- /icons/gpg4win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/gpg4win.png -------------------------------------------------------------------------------- /icons/graphviz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/graphviz.png -------------------------------------------------------------------------------- /icons/haali-media-splitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/haali-media-splitter.svg -------------------------------------------------------------------------------- /icons/hedgewars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/hedgewars.png -------------------------------------------------------------------------------- /icons/hostsman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/hostsman.png -------------------------------------------------------------------------------- /icons/ietester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ietester.png -------------------------------------------------------------------------------- /icons/itunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/itunes.png -------------------------------------------------------------------------------- /icons/itunesfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/itunesfusion.png -------------------------------------------------------------------------------- /icons/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/java.svg -------------------------------------------------------------------------------- /icons/jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/jenkins.png -------------------------------------------------------------------------------- /icons/jitsi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/jitsi.svg -------------------------------------------------------------------------------- /icons/jubler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/jubler.png -------------------------------------------------------------------------------- /icons/juju.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/juju.png -------------------------------------------------------------------------------- /icons/julia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/julia.png -------------------------------------------------------------------------------- /icons/k9s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/k9s.png -------------------------------------------------------------------------------- /icons/keepass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/keepass.svg -------------------------------------------------------------------------------- /icons/keepassx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/keepassx.png -------------------------------------------------------------------------------- /icons/keepassxc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/keepassxc.svg -------------------------------------------------------------------------------- /icons/keeweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/keeweb.png -------------------------------------------------------------------------------- /icons/ketarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ketarin.png -------------------------------------------------------------------------------- /icons/keyfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/keyfinder.png -------------------------------------------------------------------------------- /icons/kingsoft-office-free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/kingsoft-office-free.png -------------------------------------------------------------------------------- /icons/kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/kitty.png -------------------------------------------------------------------------------- /icons/krita.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/krita.svg -------------------------------------------------------------------------------- /icons/kubernetes-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/kubernetes-cli.png -------------------------------------------------------------------------------- /icons/kubernetes-kompose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/kubernetes-kompose.png -------------------------------------------------------------------------------- /icons/kubescape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/kubescape.png -------------------------------------------------------------------------------- /icons/librecad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/librecad.svg -------------------------------------------------------------------------------- /icons/libreoffice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/libreoffice.svg -------------------------------------------------------------------------------- /icons/lightalloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/lightalloy.png -------------------------------------------------------------------------------- /icons/lightscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/lightscreen.png -------------------------------------------------------------------------------- /icons/lightworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/lightworks.png -------------------------------------------------------------------------------- /icons/lockhunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/lockhunter.png -------------------------------------------------------------------------------- /icons/logfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/logfusion.png -------------------------------------------------------------------------------- /icons/mattermost-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mattermost-desktop.png -------------------------------------------------------------------------------- /icons/maxima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/maxima.png -------------------------------------------------------------------------------- /icons/maxthon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/maxthon.png -------------------------------------------------------------------------------- /icons/mendeley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mendeley.png -------------------------------------------------------------------------------- /icons/minikube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/minikube.png -------------------------------------------------------------------------------- /icons/minishift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/minishift.png -------------------------------------------------------------------------------- /icons/mixxx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mixxx.png -------------------------------------------------------------------------------- /icons/mkdocs-material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mkdocs-material.png -------------------------------------------------------------------------------- /icons/mkdocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mkdocs.png -------------------------------------------------------------------------------- /icons/mkvtoolnix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mkvtoolnix.png -------------------------------------------------------------------------------- /icons/mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mono.png -------------------------------------------------------------------------------- /icons/mp3tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mp3tag.png -------------------------------------------------------------------------------- /icons/mpc-hc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mpc-hc.png -------------------------------------------------------------------------------- /icons/msys2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/msys2.png -------------------------------------------------------------------------------- /icons/mumble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/mumble.svg -------------------------------------------------------------------------------- /icons/musescore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/musescore.svg -------------------------------------------------------------------------------- /icons/nexus-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/nexus-repository.png -------------------------------------------------------------------------------- /icons/nlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/nlite.png -------------------------------------------------------------------------------- /icons/nmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/nmap.png -------------------------------------------------------------------------------- /icons/no-ip-duc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/no-ip-duc.png -------------------------------------------------------------------------------- /icons/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/nodejs.png -------------------------------------------------------------------------------- /icons/nomacs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/nomacs.svg -------------------------------------------------------------------------------- /icons/notepadplusplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/notepadplusplus.png -------------------------------------------------------------------------------- /icons/nssm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/nssm.png -------------------------------------------------------------------------------- /icons/nuget.commandline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/nuget.commandline.png -------------------------------------------------------------------------------- /icons/octave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/octave.png -------------------------------------------------------------------------------- /icons/ontopreplica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ontopreplica.png -------------------------------------------------------------------------------- /icons/openshift-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/openshift-cli.png -------------------------------------------------------------------------------- /icons/openssl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/openssl.png -------------------------------------------------------------------------------- /icons/opera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/opera.svg -------------------------------------------------------------------------------- /icons/owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/owncloud.png -------------------------------------------------------------------------------- /icons/paint.net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/paint.net.png -------------------------------------------------------------------------------- /icons/palemoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/palemoon.png -------------------------------------------------------------------------------- /icons/papercut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/papercut.png -------------------------------------------------------------------------------- /icons/partitionassistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/partitionassistant.png -------------------------------------------------------------------------------- /icons/partitionmasterfree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/partitionmasterfree.png -------------------------------------------------------------------------------- /icons/patch-my-pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/patch-my-pc.png -------------------------------------------------------------------------------- /icons/peazip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/peazip.svg -------------------------------------------------------------------------------- /icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/pencil.png -------------------------------------------------------------------------------- /icons/photorec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/photorec.png -------------------------------------------------------------------------------- /icons/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/php.svg -------------------------------------------------------------------------------- /icons/picard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/picard.svg -------------------------------------------------------------------------------- /icons/poi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/poi.png -------------------------------------------------------------------------------- /icons/poweriso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/poweriso.png -------------------------------------------------------------------------------- /icons/prey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/prey.png -------------------------------------------------------------------------------- /icons/pspp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/pspp.png -------------------------------------------------------------------------------- /icons/putty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/putty.png -------------------------------------------------------------------------------- /icons/pyhoca-gui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/pyhoca-gui.svg -------------------------------------------------------------------------------- /icons/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/python.svg -------------------------------------------------------------------------------- /icons/qbittorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/qbittorrent.png -------------------------------------------------------------------------------- /icons/qtox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/qtox.svg -------------------------------------------------------------------------------- /icons/quicktime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/quicktime.png -------------------------------------------------------------------------------- /icons/quiterss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/quiterss.png -------------------------------------------------------------------------------- /icons/rapidee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/rapidee.png -------------------------------------------------------------------------------- /icons/rdcman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/rdcman.png -------------------------------------------------------------------------------- /icons/renamemaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/renamemaster.png -------------------------------------------------------------------------------- /icons/reshack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/reshack.png -------------------------------------------------------------------------------- /icons/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ruby.svg -------------------------------------------------------------------------------- /icons/rufus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/rufus.png -------------------------------------------------------------------------------- /icons/sauerbraten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/sauerbraten.png -------------------------------------------------------------------------------- /icons/scite4autohotkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/scite4autohotkey.png -------------------------------------------------------------------------------- /icons/screencloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/screencloud.svg -------------------------------------------------------------------------------- /icons/scribus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/scribus.svg -------------------------------------------------------------------------------- /icons/seafile-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/seafile-client.png -------------------------------------------------------------------------------- /icons/selenium-gecko-driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/selenium-gecko-driver.png -------------------------------------------------------------------------------- /icons/selenium.powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/selenium.powershell.png -------------------------------------------------------------------------------- /icons/sidesync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/sidesync.png -------------------------------------------------------------------------------- /icons/simplewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/simplewall.png -------------------------------------------------------------------------------- /icons/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/skype.png -------------------------------------------------------------------------------- /icons/smartftp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/smartftp.svg -------------------------------------------------------------------------------- /icons/sonarlint-vs2015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/sonarlint-vs2015.png -------------------------------------------------------------------------------- /icons/sourcetree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/sourcetree.svg -------------------------------------------------------------------------------- /icons/sparkleshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/sparkleshare.png -------------------------------------------------------------------------------- /icons/speccy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/speccy.png -------------------------------------------------------------------------------- /icons/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/spotify.png -------------------------------------------------------------------------------- /icons/sqlite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/sqlite.svg -------------------------------------------------------------------------------- /icons/sublime-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/sublime-text.png -------------------------------------------------------------------------------- /icons/supertuxkart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/supertuxkart.png -------------------------------------------------------------------------------- /icons/sweet-home-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/sweet-home-3d.png -------------------------------------------------------------------------------- /icons/sysinternals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/sysinternals.png -------------------------------------------------------------------------------- /icons/testdisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/testdisk.svg -------------------------------------------------------------------------------- /icons/texmaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/texmaker.png -------------------------------------------------------------------------------- /icons/thunderbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/thunderbird.png -------------------------------------------------------------------------------- /icons/tightvnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/tightvnc.png -------------------------------------------------------------------------------- /icons/tipp10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/tipp10.png -------------------------------------------------------------------------------- /icons/tixati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/tixati.png -------------------------------------------------------------------------------- /icons/tor-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/tor-browser.png -------------------------------------------------------------------------------- /icons/tortoisegit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/tortoisegit.png -------------------------------------------------------------------------------- /icons/tortoisesvn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/tortoisesvn.png -------------------------------------------------------------------------------- /icons/totalcommander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/totalcommander.png -------------------------------------------------------------------------------- /icons/transifex-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/transifex-cli.png -------------------------------------------------------------------------------- /icons/tribler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/tribler.png -------------------------------------------------------------------------------- /icons/truecrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/truecrypt.png -------------------------------------------------------------------------------- /icons/tuniac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/tuniac.png -------------------------------------------------------------------------------- /icons/tv-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/tv-browser.svg -------------------------------------------------------------------------------- /icons/typescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/typescript.png -------------------------------------------------------------------------------- /icons/ultradefrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/ultradefrag.png -------------------------------------------------------------------------------- /icons/umlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/umlet.png -------------------------------------------------------------------------------- /icons/unchecky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/unchecky.png -------------------------------------------------------------------------------- /icons/universal-extractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/universal-extractor.png -------------------------------------------------------------------------------- /icons/utorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/utorrent.png -------------------------------------------------------------------------------- /icons/vagrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vagrant.png -------------------------------------------------------------------------------- /icons/vcredist140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vcredist140.png -------------------------------------------------------------------------------- /icons/vcredist2015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vcredist2015.png -------------------------------------------------------------------------------- /icons/vcredist2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vcredist2017.png -------------------------------------------------------------------------------- /icons/videoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/videoder.png -------------------------------------------------------------------------------- /icons/vim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vim.svg -------------------------------------------------------------------------------- /icons/virtualbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/virtualbox.png -------------------------------------------------------------------------------- /icons/virtualdub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/virtualdub.png -------------------------------------------------------------------------------- /icons/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vlc.png -------------------------------------------------------------------------------- /icons/voicebot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/voicebot.png -------------------------------------------------------------------------------- /icons/vscode-azurerm-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vscode-azurerm-tools.png -------------------------------------------------------------------------------- /icons/vscode-ember-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vscode-ember-cli.png -------------------------------------------------------------------------------- /icons/vscode-insiders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vscode-insiders.png -------------------------------------------------------------------------------- /icons/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vscode.png -------------------------------------------------------------------------------- /icons/vscode_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/vscode_icons.png -------------------------------------------------------------------------------- /icons/waterfox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/waterfox.png -------------------------------------------------------------------------------- /icons/webstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/webstorm.png -------------------------------------------------------------------------------- /icons/wesnoth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/wesnoth.png -------------------------------------------------------------------------------- /icons/wget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/wget.png -------------------------------------------------------------------------------- /icons/win10mct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/win10mct.png -------------------------------------------------------------------------------- /icons/winamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/winamp.png -------------------------------------------------------------------------------- /icons/wincdemu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/wincdemu.png -------------------------------------------------------------------------------- /icons/winff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/winff.png -------------------------------------------------------------------------------- /icons/winpcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/winpcap.png -------------------------------------------------------------------------------- /icons/winscp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/winscp.png -------------------------------------------------------------------------------- /icons/wixtoolset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/wixtoolset.png -------------------------------------------------------------------------------- /icons/wps-office-free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/wps-office-free.png -------------------------------------------------------------------------------- /icons/x-moto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/x-moto.png -------------------------------------------------------------------------------- /icons/x2go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/x2go.png -------------------------------------------------------------------------------- /icons/xpdf-utils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/xpdf-utils.png -------------------------------------------------------------------------------- /icons/y-dl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/y-dl.svg -------------------------------------------------------------------------------- /icons/yo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/yo.png -------------------------------------------------------------------------------- /icons/yumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/yumi.png -------------------------------------------------------------------------------- /icons/zotero-standalone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/zotero-standalone.png -------------------------------------------------------------------------------- /icons/zotero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/icons/zotero.png -------------------------------------------------------------------------------- /manual/1password4/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/1password4/Readme.md -------------------------------------------------------------------------------- /manual/1password4/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/1password4/update.ps1 -------------------------------------------------------------------------------- /manual/DotNet4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/DotNet4.0/README.md -------------------------------------------------------------------------------- /manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/README.md -------------------------------------------------------------------------------- /manual/apache-httpd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/apache-httpd/readme.md -------------------------------------------------------------------------------- /manual/apache-httpd/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/apache-httpd/update.ps1 -------------------------------------------------------------------------------- /manual/assaultcube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/assaultcube/README.md -------------------------------------------------------------------------------- /manual/assaultcube/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/assaultcube/update.ps1 -------------------------------------------------------------------------------- /manual/becyicongrabber/tools/BeCyIconGrabber.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/bitdefender-usb-immunizer/tools/BDUSBImmunizerLauncher.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/cdburnerxp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/cdburnerxp/README.md -------------------------------------------------------------------------------- /manual/cdburnerxp/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/cdburnerxp/update.ps1 -------------------------------------------------------------------------------- /manual/clover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/clover/README.md -------------------------------------------------------------------------------- /manual/clover/clover.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/clover/clover.nuspec -------------------------------------------------------------------------------- /manual/clover/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/clover/update.ps1 -------------------------------------------------------------------------------- /manual/compact-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/compact-timer/README.md -------------------------------------------------------------------------------- /manual/compact-timer/tools/CompactTimer.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/cyg-get/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/cyg-get/README.md -------------------------------------------------------------------------------- /manual/cyg-get/cyg-get.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/cyg-get/cyg-get.nuspec -------------------------------------------------------------------------------- /manual/feeddemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/feeddemon/README.md -------------------------------------------------------------------------------- /manual/ffdshow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/ffdshow/README.md -------------------------------------------------------------------------------- /manual/ffdshow/ffdshow.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/ffdshow/ffdshow.nuspec -------------------------------------------------------------------------------- /manual/gpg4win-light/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/gpg4win-light/README.md -------------------------------------------------------------------------------- /manual/hostsman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/hostsman/README.md -------------------------------------------------------------------------------- /manual/hostsman/hostsman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/hostsman/hostsman.json -------------------------------------------------------------------------------- /manual/hostsman/hostsman.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/hostsman/hostsman.nuspec -------------------------------------------------------------------------------- /manual/hostsman/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/hostsman/screenshot.png -------------------------------------------------------------------------------- /manual/ietester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/ietester/README.md -------------------------------------------------------------------------------- /manual/ietester/ietester.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/ietester/ietester.nuspec -------------------------------------------------------------------------------- /manual/itunesfusion/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/itunesfusion/Readme.md -------------------------------------------------------------------------------- /manual/itunesfusion/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/itunesfusion/update.ps1 -------------------------------------------------------------------------------- /manual/kb2670838/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/kb2670838/README.md -------------------------------------------------------------------------------- /manual/kb2999226/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/kb2999226/README.md -------------------------------------------------------------------------------- /manual/lockhunter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/lockhunter/README.md -------------------------------------------------------------------------------- /manual/lockhunter/tools/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- 1 | Uninstall-BinFile $env:chocolateyPackageName 2 | -------------------------------------------------------------------------------- /manual/mpc-hc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/mpc-hc/README.md -------------------------------------------------------------------------------- /manual/mpc-hc/legal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/mpc-hc/legal/LICENSE.txt -------------------------------------------------------------------------------- /manual/mpc-hc/mpc-hc.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/mpc-hc/mpc-hc.nuspec -------------------------------------------------------------------------------- /manual/mpc-hc/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/mpc-hc/update.ps1 -------------------------------------------------------------------------------- /manual/ontopreplica/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/ontopreplica/README.md -------------------------------------------------------------------------------- /manual/ontopreplica/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/ontopreplica/update.ps1 -------------------------------------------------------------------------------- /manual/pcwrunas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/pcwrunas/README.md -------------------------------------------------------------------------------- /manual/pcwrunas/pcwrunas.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/pcwrunas/pcwrunas.nuspec -------------------------------------------------------------------------------- /manual/php-legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/php-legacy/README.md -------------------------------------------------------------------------------- /manual/quicktime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/quicktime/README.md -------------------------------------------------------------------------------- /manual/quicktime/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/quicktime/update.ps1 -------------------------------------------------------------------------------- /manual/sauerbraten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/sauerbraten/README.md -------------------------------------------------------------------------------- /manual/skype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/skype/README.md -------------------------------------------------------------------------------- /manual/skype/info: -------------------------------------------------------------------------------- 1 | 0x8D58E8363FDCB6B|7.41.0.101 -------------------------------------------------------------------------------- /manual/skype/skype.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/skype/skype.nuspec -------------------------------------------------------------------------------- /manual/skype/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/skype/update.ps1 -------------------------------------------------------------------------------- /manual/tipp10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/tipp10/README.md -------------------------------------------------------------------------------- /manual/tipp10/legal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/tipp10/legal/LICENSE.txt -------------------------------------------------------------------------------- /manual/tipp10/tipp10.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/tipp10/tipp10.nuspec -------------------------------------------------------------------------------- /manual/tipp10/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/tipp10/update.ps1 -------------------------------------------------------------------------------- /manual/tsremux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/tsremux/README.md -------------------------------------------------------------------------------- /manual/tsremux/tsremux.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/tsremux/tsremux.nuspec -------------------------------------------------------------------------------- /manual/vcredist2005/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/vcredist2005/README.md -------------------------------------------------------------------------------- /manual/vcredist2005/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/vcredist2005/update.ps1 -------------------------------------------------------------------------------- /manual/vcredist2008/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/vcredist2008/README.md -------------------------------------------------------------------------------- /manual/vcredist2008/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/vcredist2008/update.ps1 -------------------------------------------------------------------------------- /manual/virtualdub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/virtualdub/README.md -------------------------------------------------------------------------------- /manual/virtualdub/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/virtualdub/update.ps1 -------------------------------------------------------------------------------- /manual/vp8-vfw/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/vp8-vfw/Readme.md -------------------------------------------------------------------------------- /manual/vp8-vfw/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/vp8-vfw/update.ps1 -------------------------------------------------------------------------------- /manual/winamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/winamp/README.md -------------------------------------------------------------------------------- /manual/winamp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/winamp/screenshot.png -------------------------------------------------------------------------------- /manual/winamp/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/winamp/update.ps1 -------------------------------------------------------------------------------- /manual/winamp/winamp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/winamp/winamp.nuspec -------------------------------------------------------------------------------- /manual/winff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/winff/README.md -------------------------------------------------------------------------------- /manual/winff/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/winff/screenshot.jpg -------------------------------------------------------------------------------- /manual/winff/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/winff/update.ps1 -------------------------------------------------------------------------------- /manual/winff/winff.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/winff/winff.nuspec -------------------------------------------------------------------------------- /manual/x-moto/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/x-moto/Readme.md -------------------------------------------------------------------------------- /manual/x-moto/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/x-moto/update.ps1 -------------------------------------------------------------------------------- /manual/x-moto/x-moto.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/x-moto/x-moto.nuspec -------------------------------------------------------------------------------- /manual/xpdf-utils/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/xpdf-utils/Readme.md -------------------------------------------------------------------------------- /manual/xpdf-utils/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/manual/xpdf-utils/update.ps1 -------------------------------------------------------------------------------- /scripts/Add-Dependency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/scripts/Add-Dependency.ps1 -------------------------------------------------------------------------------- /scripts/EventLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/scripts/EventLogs.ps1 -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/Start-Sandbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/scripts/Start-Sandbox.ps1 -------------------------------------------------------------------------------- /scripts/Take-Screenshot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/scripts/Take-Screenshot.ps1 -------------------------------------------------------------------------------- /scripts/Test-RepoPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/scripts/Test-RepoPackage.ps1 -------------------------------------------------------------------------------- /scripts/Update-IconUrl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/scripts/Update-IconUrl.ps1 -------------------------------------------------------------------------------- /scripts/au_extensions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/scripts/au_extensions.psm1 -------------------------------------------------------------------------------- /test_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/test_all.ps1 -------------------------------------------------------------------------------- /unlisted/fiddler4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/unlisted/fiddler4/README.md -------------------------------------------------------------------------------- /unlisted/fiddler4/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/unlisted/fiddler4/update.ps1 -------------------------------------------------------------------------------- /update_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-packages/HEAD/update_all.ps1 --------------------------------------------------------------------------------