├── .cspell.json ├── .cspell ├── common-settings.yml ├── correct-words.txt ├── cspell.config.yml ├── ignore-filenames.txt ├── ignore-words.txt └── overrides.yml ├── .editorconfig ├── .gitattributes ├── .github ├── .cspell.json ├── .cspell │ ├── correct-words.txt │ ├── cspell.config.yml │ ├── ignore-filenames.txt │ ├── ignore-words.txt │ └── overrides.yml ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── hash_check_fail.md │ └── manifest_request.md ├── dependabot.yml ├── linters │ ├── .bandit.yml │ ├── .checkov.yml │ ├── .ecrc │ ├── .eslintrc.json │ ├── .flake8 │ ├── .gitleaks.toml │ ├── .golangci.yml │ ├── .grype.yaml │ ├── .hadolint.yaml │ ├── .isort.cfg │ ├── .jscpd.json │ ├── .jsonlintrc.json │ ├── .markdown-link-check.json │ ├── .markdownlint.yaml │ ├── .mypy.ini │ ├── .prettierrc.yaml │ ├── .pylintrc │ ├── .pyrightconfig-loose.json │ ├── .pyrightconfig-off.json │ ├── .pyrightconfig-strict.json │ ├── .pyrightconfig.json │ ├── .ruff.toml │ ├── .secretlintignore │ ├── .sqlfluff │ ├── .textlintrc │ ├── .vale.ini │ ├── .yamllint.yml │ ├── actionlint.yml │ ├── lychee.toml │ ├── pyproject.toml │ └── revive.toml ├── mega-linter-shared.yml ├── scripts │ ├── create-vhdx.ps1 │ ├── debug-vars.bash │ ├── debug-vars.py │ └── debug-vars.sh └── workflows │ ├── black.yml │ ├── clean-logs.yml │ ├── codeql.yml │ ├── debug-matrix.yml │ ├── debug-rasa.yml │ ├── dependabot.yml │ ├── excavator.yml │ ├── issue.yml │ ├── issue_comment.yml │ ├── mega-linter.yml │ ├── pull_request.yml │ ├── pydeps.yml │ ├── toc.yml │ └── update-readme.yml ├── .gitignore ├── .mega-linter.yml ├── .vscode ├── Template.jsonc ├── extensions.json ├── json.code-snippets ├── settings.json └── tasks.json ├── Bucket.Tests.ps1 ├── LICENSE ├── Makefile ├── README.md ├── Vagrantfile ├── bin ├── Helpers.ps1 ├── auto-pr.ps1 ├── checkAndPush.ps1 ├── checkhashes.ps1 ├── checkurls.ps1 ├── checkver.ps1 ├── describe.ps1 ├── formatjson.ps1 ├── missing-checkver.ps1 └── test.ps1 ├── bucket ├── a │ └── audacity_installer.json ├── android-messages.json ├── api-monitor.json ├── attr.json ├── audacity-ffmpeg-plugin.json ├── audacity-lame-plugin.json ├── babelpad.json ├── brave.json ├── brave32.json ├── cpdf.json ├── deletedosdevice.json ├── diffpdf.json ├── diskspd.json ├── display-changer-ii.json ├── display-changer.json ├── dnsbench.json ├── drivecleanup.json ├── dskwipe.json ├── ejectmedia.json ├── ejecttcv.json ├── emet.json ├── eolfix.json ├── exetype.json ├── feedster.json ├── ffb.json ├── getjpegs.json ├── gifsicle.json ├── git-all.json ├── gsmartcontrol.json ├── hash-explorer.json ├── hhreg.json ├── htmlhelp.json ├── id3mtag.json ├── inirw.json ├── isobuster.json ├── kpcli.json ├── lgpo.json ├── listdosdevices.json ├── listusbdrives.json ├── loadmedia.json ├── lsdsk.json ├── ltrdata.json ├── mklnk.json ├── msttcorefonts.json ├── mtee.json ├── mvmc.json ├── nirlauncher.json ├── noto-fonts.json ├── noto-mono-font.json ├── noto-sans-font.json ├── noto-serif-font.json ├── ntttcp.json ├── outwit.json ├── path-set.json ├── pfm2afm.json ├── policy-analyzer.json ├── poweroff.json ├── py.json ├── regdelta.json ├── rehash.json ├── remount.json ├── removedrive.json ├── res-set.json ├── rescandevices.json ├── restartsrdev.json ├── samsung-magician-np.json ├── seterlvl.json ├── simple-dnscrypt.json ├── stc.json ├── sysinternals.json ├── time-it.json ├── usbdeview-ids.json ├── usbdlm.json ├── usbtreeview.json ├── vvv.json ├── wfc.json ├── wizmo.json ├── wolcmd.json ├── ztree-beta.json ├── ztree-zeta.json └── ztree.json ├── check_https.py ├── checkdups.py ├── checkver.py ├── deprecated ├── fat32format-gui.json ├── openssh-win32.json ├── tmac.json ├── vlc-bluray-plugin.json └── vlc-installer.json ├── find-conflicts.py ├── jsonfmt.cmd ├── jsonfmt.py ├── makeindex.py ├── nlp2json.py ├── requirements.txt ├── scripts └── simple-dnscrypt │ └── simple-dnscrypt.ps1 ├── validate.cmd ├── validate.py ├── validate_all.cmd └── wip ├── babun.json ├── nirsoft-installer.json └── si-installer.json /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.cspell.json -------------------------------------------------------------------------------- /.cspell/common-settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.cspell/common-settings.yml -------------------------------------------------------------------------------- /.cspell/correct-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.cspell/correct-words.txt -------------------------------------------------------------------------------- /.cspell/cspell.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.cspell/cspell.config.yml -------------------------------------------------------------------------------- /.cspell/ignore-filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.cspell/ignore-filenames.txt -------------------------------------------------------------------------------- /.cspell/ignore-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.cspell/ignore-words.txt -------------------------------------------------------------------------------- /.cspell/overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.cspell/overrides.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/.cspell.json -------------------------------------------------------------------------------- /.github/.cspell/correct-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/.cspell/correct-words.txt -------------------------------------------------------------------------------- /.github/.cspell/cspell.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/.cspell/cspell.config.yml -------------------------------------------------------------------------------- /.github/.cspell/ignore-filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/.cspell/ignore-filenames.txt -------------------------------------------------------------------------------- /.github/.cspell/ignore-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/.cspell/ignore-words.txt -------------------------------------------------------------------------------- /.github/.cspell/overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/.cspell/overrides.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @rasa 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/hash_check_fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/ISSUE_TEMPLATE/hash_check_fail.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/manifest_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/ISSUE_TEMPLATE/manifest_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.bandit.yml -------------------------------------------------------------------------------- /.github/linters/.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.checkov.yml -------------------------------------------------------------------------------- /.github/linters/.ecrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.ecrc -------------------------------------------------------------------------------- /.github/linters/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.eslintrc.json -------------------------------------------------------------------------------- /.github/linters/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.flake8 -------------------------------------------------------------------------------- /.github/linters/.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.gitleaks.toml -------------------------------------------------------------------------------- /.github/linters/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.golangci.yml -------------------------------------------------------------------------------- /.github/linters/.grype.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.grype.yaml -------------------------------------------------------------------------------- /.github/linters/.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.hadolint.yaml -------------------------------------------------------------------------------- /.github/linters/.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.isort.cfg -------------------------------------------------------------------------------- /.github/linters/.jscpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.jscpd.json -------------------------------------------------------------------------------- /.github/linters/.jsonlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailing-newline": false 3 | } -------------------------------------------------------------------------------- /.github/linters/.markdown-link-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.markdown-link-check.json -------------------------------------------------------------------------------- /.github/linters/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.markdownlint.yaml -------------------------------------------------------------------------------- /.github/linters/.mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.mypy.ini -------------------------------------------------------------------------------- /.github/linters/.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.prettierrc.yaml -------------------------------------------------------------------------------- /.github/linters/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.pylintrc -------------------------------------------------------------------------------- /.github/linters/.pyrightconfig-loose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.pyrightconfig-loose.json -------------------------------------------------------------------------------- /.github/linters/.pyrightconfig-off.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.pyrightconfig-off.json -------------------------------------------------------------------------------- /.github/linters/.pyrightconfig-strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.pyrightconfig-strict.json -------------------------------------------------------------------------------- /.github/linters/.pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.pyrightconfig.json -------------------------------------------------------------------------------- /.github/linters/.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.ruff.toml -------------------------------------------------------------------------------- /.github/linters/.secretlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.secretlintignore -------------------------------------------------------------------------------- /.github/linters/.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.sqlfluff -------------------------------------------------------------------------------- /.github/linters/.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.textlintrc -------------------------------------------------------------------------------- /.github/linters/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.vale.ini -------------------------------------------------------------------------------- /.github/linters/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/.yamllint.yml -------------------------------------------------------------------------------- /.github/linters/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/actionlint.yml -------------------------------------------------------------------------------- /.github/linters/lychee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/lychee.toml -------------------------------------------------------------------------------- /.github/linters/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/pyproject.toml -------------------------------------------------------------------------------- /.github/linters/revive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/linters/revive.toml -------------------------------------------------------------------------------- /.github/mega-linter-shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/mega-linter-shared.yml -------------------------------------------------------------------------------- /.github/scripts/create-vhdx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/scripts/create-vhdx.ps1 -------------------------------------------------------------------------------- /.github/scripts/debug-vars.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/scripts/debug-vars.bash -------------------------------------------------------------------------------- /.github/scripts/debug-vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/scripts/debug-vars.py -------------------------------------------------------------------------------- /.github/scripts/debug-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/scripts/debug-vars.sh -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/clean-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/clean-logs.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/debug-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/debug-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/debug-rasa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/debug-rasa.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/excavator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/excavator.yml -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/issue.yml -------------------------------------------------------------------------------- /.github/workflows/issue_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/issue_comment.yml -------------------------------------------------------------------------------- /.github/workflows/mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/mega-linter.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/pydeps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/pydeps.yml -------------------------------------------------------------------------------- /.github/workflows/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/toc.yml -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.github/workflows/update-readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.gitignore -------------------------------------------------------------------------------- /.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.mega-linter.yml -------------------------------------------------------------------------------- /.vscode/Template.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.vscode/Template.jsonc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/json.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.vscode/json.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Bucket.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/Bucket.Tests.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/Helpers.ps1 -------------------------------------------------------------------------------- /bin/auto-pr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/auto-pr.ps1 -------------------------------------------------------------------------------- /bin/checkAndPush.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/checkAndPush.ps1 -------------------------------------------------------------------------------- /bin/checkhashes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/checkhashes.ps1 -------------------------------------------------------------------------------- /bin/checkurls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/checkurls.ps1 -------------------------------------------------------------------------------- /bin/checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/checkver.ps1 -------------------------------------------------------------------------------- /bin/describe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/describe.ps1 -------------------------------------------------------------------------------- /bin/formatjson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/formatjson.ps1 -------------------------------------------------------------------------------- /bin/missing-checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/missing-checkver.ps1 -------------------------------------------------------------------------------- /bin/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bin/test.ps1 -------------------------------------------------------------------------------- /bucket/a/audacity_installer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/a/audacity_installer.json -------------------------------------------------------------------------------- /bucket/android-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/android-messages.json -------------------------------------------------------------------------------- /bucket/api-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/api-monitor.json -------------------------------------------------------------------------------- /bucket/attr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/attr.json -------------------------------------------------------------------------------- /bucket/audacity-ffmpeg-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/audacity-ffmpeg-plugin.json -------------------------------------------------------------------------------- /bucket/audacity-lame-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/audacity-lame-plugin.json -------------------------------------------------------------------------------- /bucket/babelpad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/babelpad.json -------------------------------------------------------------------------------- /bucket/brave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/brave.json -------------------------------------------------------------------------------- /bucket/brave32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/brave32.json -------------------------------------------------------------------------------- /bucket/cpdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/cpdf.json -------------------------------------------------------------------------------- /bucket/deletedosdevice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/deletedosdevice.json -------------------------------------------------------------------------------- /bucket/diffpdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/diffpdf.json -------------------------------------------------------------------------------- /bucket/diskspd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/diskspd.json -------------------------------------------------------------------------------- /bucket/display-changer-ii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/display-changer-ii.json -------------------------------------------------------------------------------- /bucket/display-changer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/display-changer.json -------------------------------------------------------------------------------- /bucket/dnsbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/dnsbench.json -------------------------------------------------------------------------------- /bucket/drivecleanup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/drivecleanup.json -------------------------------------------------------------------------------- /bucket/dskwipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/dskwipe.json -------------------------------------------------------------------------------- /bucket/ejectmedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/ejectmedia.json -------------------------------------------------------------------------------- /bucket/ejecttcv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/ejecttcv.json -------------------------------------------------------------------------------- /bucket/emet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/emet.json -------------------------------------------------------------------------------- /bucket/eolfix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/eolfix.json -------------------------------------------------------------------------------- /bucket/exetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/exetype.json -------------------------------------------------------------------------------- /bucket/feedster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/feedster.json -------------------------------------------------------------------------------- /bucket/ffb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/ffb.json -------------------------------------------------------------------------------- /bucket/getjpegs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/getjpegs.json -------------------------------------------------------------------------------- /bucket/gifsicle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/gifsicle.json -------------------------------------------------------------------------------- /bucket/git-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/git-all.json -------------------------------------------------------------------------------- /bucket/gsmartcontrol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/gsmartcontrol.json -------------------------------------------------------------------------------- /bucket/hash-explorer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/hash-explorer.json -------------------------------------------------------------------------------- /bucket/hhreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/hhreg.json -------------------------------------------------------------------------------- /bucket/htmlhelp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/htmlhelp.json -------------------------------------------------------------------------------- /bucket/id3mtag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/id3mtag.json -------------------------------------------------------------------------------- /bucket/inirw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/inirw.json -------------------------------------------------------------------------------- /bucket/isobuster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/isobuster.json -------------------------------------------------------------------------------- /bucket/kpcli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/kpcli.json -------------------------------------------------------------------------------- /bucket/lgpo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/lgpo.json -------------------------------------------------------------------------------- /bucket/listdosdevices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/listdosdevices.json -------------------------------------------------------------------------------- /bucket/listusbdrives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/listusbdrives.json -------------------------------------------------------------------------------- /bucket/loadmedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/loadmedia.json -------------------------------------------------------------------------------- /bucket/lsdsk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/lsdsk.json -------------------------------------------------------------------------------- /bucket/ltrdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/ltrdata.json -------------------------------------------------------------------------------- /bucket/mklnk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/mklnk.json -------------------------------------------------------------------------------- /bucket/msttcorefonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/msttcorefonts.json -------------------------------------------------------------------------------- /bucket/mtee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/mtee.json -------------------------------------------------------------------------------- /bucket/mvmc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/mvmc.json -------------------------------------------------------------------------------- /bucket/nirlauncher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/nirlauncher.json -------------------------------------------------------------------------------- /bucket/noto-fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/noto-fonts.json -------------------------------------------------------------------------------- /bucket/noto-mono-font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/noto-mono-font.json -------------------------------------------------------------------------------- /bucket/noto-sans-font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/noto-sans-font.json -------------------------------------------------------------------------------- /bucket/noto-serif-font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/noto-serif-font.json -------------------------------------------------------------------------------- /bucket/ntttcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/ntttcp.json -------------------------------------------------------------------------------- /bucket/outwit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/outwit.json -------------------------------------------------------------------------------- /bucket/path-set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/path-set.json -------------------------------------------------------------------------------- /bucket/pfm2afm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/pfm2afm.json -------------------------------------------------------------------------------- /bucket/policy-analyzer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/policy-analyzer.json -------------------------------------------------------------------------------- /bucket/poweroff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/poweroff.json -------------------------------------------------------------------------------- /bucket/py.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/py.json -------------------------------------------------------------------------------- /bucket/regdelta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/regdelta.json -------------------------------------------------------------------------------- /bucket/rehash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/rehash.json -------------------------------------------------------------------------------- /bucket/remount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/remount.json -------------------------------------------------------------------------------- /bucket/removedrive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/removedrive.json -------------------------------------------------------------------------------- /bucket/res-set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/res-set.json -------------------------------------------------------------------------------- /bucket/rescandevices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/rescandevices.json -------------------------------------------------------------------------------- /bucket/restartsrdev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/restartsrdev.json -------------------------------------------------------------------------------- /bucket/samsung-magician-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/samsung-magician-np.json -------------------------------------------------------------------------------- /bucket/seterlvl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/seterlvl.json -------------------------------------------------------------------------------- /bucket/simple-dnscrypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/simple-dnscrypt.json -------------------------------------------------------------------------------- /bucket/stc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/stc.json -------------------------------------------------------------------------------- /bucket/sysinternals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/sysinternals.json -------------------------------------------------------------------------------- /bucket/time-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/time-it.json -------------------------------------------------------------------------------- /bucket/usbdeview-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/usbdeview-ids.json -------------------------------------------------------------------------------- /bucket/usbdlm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/usbdlm.json -------------------------------------------------------------------------------- /bucket/usbtreeview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/usbtreeview.json -------------------------------------------------------------------------------- /bucket/vvv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/vvv.json -------------------------------------------------------------------------------- /bucket/wfc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/wfc.json -------------------------------------------------------------------------------- /bucket/wizmo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/wizmo.json -------------------------------------------------------------------------------- /bucket/wolcmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/wolcmd.json -------------------------------------------------------------------------------- /bucket/ztree-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/ztree-beta.json -------------------------------------------------------------------------------- /bucket/ztree-zeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/ztree-zeta.json -------------------------------------------------------------------------------- /bucket/ztree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/bucket/ztree.json -------------------------------------------------------------------------------- /check_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/check_https.py -------------------------------------------------------------------------------- /checkdups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/checkdups.py -------------------------------------------------------------------------------- /checkver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/checkver.py -------------------------------------------------------------------------------- /deprecated/fat32format-gui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/deprecated/fat32format-gui.json -------------------------------------------------------------------------------- /deprecated/openssh-win32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/deprecated/openssh-win32.json -------------------------------------------------------------------------------- /deprecated/tmac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/deprecated/tmac.json -------------------------------------------------------------------------------- /deprecated/vlc-bluray-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/deprecated/vlc-bluray-plugin.json -------------------------------------------------------------------------------- /deprecated/vlc-installer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/deprecated/vlc-installer.json -------------------------------------------------------------------------------- /find-conflicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/find-conflicts.py -------------------------------------------------------------------------------- /jsonfmt.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/jsonfmt.cmd -------------------------------------------------------------------------------- /jsonfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/jsonfmt.py -------------------------------------------------------------------------------- /makeindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/makeindex.py -------------------------------------------------------------------------------- /nlp2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/nlp2json.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/simple-dnscrypt/simple-dnscrypt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/scripts/simple-dnscrypt/simple-dnscrypt.ps1 -------------------------------------------------------------------------------- /validate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/validate.cmd -------------------------------------------------------------------------------- /validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/validate.py -------------------------------------------------------------------------------- /validate_all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/validate_all.cmd -------------------------------------------------------------------------------- /wip/babun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/wip/babun.json -------------------------------------------------------------------------------- /wip/nirsoft-installer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/wip/nirsoft-installer.json -------------------------------------------------------------------------------- /wip/si-installer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasa/scoops/HEAD/wip/si-installer.json --------------------------------------------------------------------------------