├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Package_request.md ├── dependabot.yml ├── issue_template.md ├── pull_request_template.md ├── stale.yml └── workflows │ ├── ci.yml │ ├── excavator.yml │ ├── issue_comment.yml │ ├── issues.yml │ └── pull_request.yml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── Scoop-Bucket.Tests.ps1 ├── bin ├── auto-pr.ps1 ├── checkurls.ps1 ├── checkver.ps1 ├── formatjson.ps1 ├── missing-checkver.ps1 ├── reset-office-version.ps1 └── test.ps1 ├── bucket ├── 10x-np.json ├── 8gadgetpack-np.json ├── anki-np.json ├── asio4all-np.json ├── auto-dark-mode-np.json ├── autohotkey-np.json ├── barrier-np.json ├── biglybt-np.json ├── bluestacks-np.json ├── bluestacks4-hyperv-np.json ├── bluestacks4-np.json ├── burp-suite-community-np.json ├── burp-suite-pro-np.json ├── calibre-np.json ├── cppcryptfs-np.json ├── darktable-np.json ├── devtoys-np.json ├── ditto-np.json ├── dokany-np.json ├── dropbox-np.json ├── dshidmini-np.json ├── encodegui-np.json ├── equalizer-apo-np.json ├── everything-beta-np.json ├── everything-np.json ├── file-converter-np.json ├── files-np.json ├── flash-drive-tester-np.json ├── fluent-terminal-np.json ├── fman-np.json ├── freelan-np.json ├── glasswire-lite-np.json ├── glasswire-np.json ├── glazewm-np.json ├── goodsync-np.json ├── google-japanese-input-np.json ├── gpg-np.json ├── grammarly-np.json ├── hp-support-assistant-np.json ├── icaros-np.json ├── iddsampledriver-ge9-np.json ├── innosetup-np.json ├── ivpn-client-np.json ├── k-lite-codec-pack-basic-np.json ├── k-lite-codec-pack-full-np.json ├── k-lite-codec-pack-mega-np.json ├── k-lite-codec-pack-standard-np.json ├── lantern-np.json ├── lav-filters-megamix-np.json ├── lavfilters-np.json ├── lightscribe-system-software-np.json ├── lockhunter-np.json ├── logitech-gaming-software-np.json ├── mactype-np.json ├── microsoft-edge-beta-np.json ├── microsoft-edge-canary-np.json ├── microsoft-edge-dev-np.json ├── mullvadvpn-np.json ├── musicbee-np.json ├── nodejs-lts-np.json ├── nodejs-np.json ├── notepadplusplus-np.json ├── notepads-np.json ├── nsis-np.json ├── nvidia-display-driver-dch-np.json ├── nvidia-display-driver-dch-with-3d-vision-np.json ├── nvidia-display-driver-np.json ├── nvidia-display-driver-with-3d-vision-np.json ├── office-365-apps-minimal-np.json ├── office-365-apps-np.json ├── omnidb-np.json ├── open-shell-np.json ├── openhashtab-np.json ├── parsec-np.json ├── pdf24-creator-np.json ├── pdfill-np.json ├── peace-np.json ├── pgadmin4-np.json ├── portmaster-np.json ├── powertoys-np.json ├── protonvpn-np.json ├── putty-np.json ├── qttabbar-indiff-np.json ├── qttabbar-np.json ├── resilio-sync-np.json ├── rom-properties-np.json ├── sandboxie-classic-np.json ├── sandboxie-plus-np.json ├── scilab-np.json ├── shelltools-np.json ├── spotx-np.json ├── sql-server-management-studio-np.json ├── sshfs-np.json ├── stevedore-np.json ├── svg-explorer-extension-np.json ├── teamviewer-np.json ├── teracopy-np.json ├── textpad-np.json ├── textpad8-np.json ├── ti-connect-ce-software-np.json ├── ti-nspire-cx-cas-student-software-np.json ├── ti-nspire-cx-student-software-np.json ├── translucenttb-np.json ├── unity-hub-np.json ├── veyon-np.json ├── virtualbox-np.json ├── virtualbox-with-extension-pack-np.json ├── virtualbox52-np.json ├── vmware-horizon-client-np.json ├── vmware-workstation-player-np.json ├── voicemeeter-banana-np.json ├── voicemeeter-np.json ├── voicemeeter-potato-np.json ├── vokoscreenng-np.json ├── vpnc-front-end-np.json ├── winbtrfs-np.json ├── winfsp-np.json ├── winrar-np.json ├── wireguard-np.json ├── workman-np.json ├── workman-p-np.json ├── workman-p-uk-np.json ├── workman-uk-np.json ├── xampp-np.json ├── xysubfilter-libass-np.json ├── xysubfilter-np.json ├── zadig-np.json └── zerotier-np.json ├── deprecated └── mqttfx-np.json └── scripts ├── install-office-365-apps-minimal.xml ├── install-office-365-apps.xml └── uninstall-office-365-apps.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | /.github/workflows/ @ScoopInstaller/maintainers 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Package_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/ISSUE_TEMPLATE/Package_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/excavator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/workflows/excavator.yml -------------------------------------------------------------------------------- /.github/workflows/issue_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/workflows/issue_comment.yml -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/workflows/issues.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/README.md -------------------------------------------------------------------------------- /Scoop-Bucket.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/Scoop-Bucket.Tests.ps1 -------------------------------------------------------------------------------- /bin/auto-pr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bin/auto-pr.ps1 -------------------------------------------------------------------------------- /bin/checkurls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bin/checkurls.ps1 -------------------------------------------------------------------------------- /bin/checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bin/checkver.ps1 -------------------------------------------------------------------------------- /bin/formatjson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bin/formatjson.ps1 -------------------------------------------------------------------------------- /bin/missing-checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bin/missing-checkver.ps1 -------------------------------------------------------------------------------- /bin/reset-office-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bin/reset-office-version.ps1 -------------------------------------------------------------------------------- /bin/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bin/test.ps1 -------------------------------------------------------------------------------- /bucket/10x-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/10x-np.json -------------------------------------------------------------------------------- /bucket/8gadgetpack-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/8gadgetpack-np.json -------------------------------------------------------------------------------- /bucket/anki-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/anki-np.json -------------------------------------------------------------------------------- /bucket/asio4all-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/asio4all-np.json -------------------------------------------------------------------------------- /bucket/auto-dark-mode-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/auto-dark-mode-np.json -------------------------------------------------------------------------------- /bucket/autohotkey-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/autohotkey-np.json -------------------------------------------------------------------------------- /bucket/barrier-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/barrier-np.json -------------------------------------------------------------------------------- /bucket/biglybt-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/biglybt-np.json -------------------------------------------------------------------------------- /bucket/bluestacks-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/bluestacks-np.json -------------------------------------------------------------------------------- /bucket/bluestacks4-hyperv-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/bluestacks4-hyperv-np.json -------------------------------------------------------------------------------- /bucket/bluestacks4-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/bluestacks4-np.json -------------------------------------------------------------------------------- /bucket/burp-suite-community-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/burp-suite-community-np.json -------------------------------------------------------------------------------- /bucket/burp-suite-pro-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/burp-suite-pro-np.json -------------------------------------------------------------------------------- /bucket/calibre-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/calibre-np.json -------------------------------------------------------------------------------- /bucket/cppcryptfs-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/cppcryptfs-np.json -------------------------------------------------------------------------------- /bucket/darktable-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/darktable-np.json -------------------------------------------------------------------------------- /bucket/devtoys-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/devtoys-np.json -------------------------------------------------------------------------------- /bucket/ditto-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/ditto-np.json -------------------------------------------------------------------------------- /bucket/dokany-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/dokany-np.json -------------------------------------------------------------------------------- /bucket/dropbox-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/dropbox-np.json -------------------------------------------------------------------------------- /bucket/dshidmini-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/dshidmini-np.json -------------------------------------------------------------------------------- /bucket/encodegui-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/encodegui-np.json -------------------------------------------------------------------------------- /bucket/equalizer-apo-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/equalizer-apo-np.json -------------------------------------------------------------------------------- /bucket/everything-beta-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/everything-beta-np.json -------------------------------------------------------------------------------- /bucket/everything-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/everything-np.json -------------------------------------------------------------------------------- /bucket/file-converter-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/file-converter-np.json -------------------------------------------------------------------------------- /bucket/files-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/files-np.json -------------------------------------------------------------------------------- /bucket/flash-drive-tester-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/flash-drive-tester-np.json -------------------------------------------------------------------------------- /bucket/fluent-terminal-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/fluent-terminal-np.json -------------------------------------------------------------------------------- /bucket/fman-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/fman-np.json -------------------------------------------------------------------------------- /bucket/freelan-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/freelan-np.json -------------------------------------------------------------------------------- /bucket/glasswire-lite-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/glasswire-lite-np.json -------------------------------------------------------------------------------- /bucket/glasswire-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/glasswire-np.json -------------------------------------------------------------------------------- /bucket/glazewm-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/glazewm-np.json -------------------------------------------------------------------------------- /bucket/goodsync-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/goodsync-np.json -------------------------------------------------------------------------------- /bucket/google-japanese-input-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/google-japanese-input-np.json -------------------------------------------------------------------------------- /bucket/gpg-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/gpg-np.json -------------------------------------------------------------------------------- /bucket/grammarly-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/grammarly-np.json -------------------------------------------------------------------------------- /bucket/hp-support-assistant-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/hp-support-assistant-np.json -------------------------------------------------------------------------------- /bucket/icaros-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/icaros-np.json -------------------------------------------------------------------------------- /bucket/iddsampledriver-ge9-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/iddsampledriver-ge9-np.json -------------------------------------------------------------------------------- /bucket/innosetup-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/innosetup-np.json -------------------------------------------------------------------------------- /bucket/ivpn-client-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/ivpn-client-np.json -------------------------------------------------------------------------------- /bucket/k-lite-codec-pack-basic-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/k-lite-codec-pack-basic-np.json -------------------------------------------------------------------------------- /bucket/k-lite-codec-pack-full-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/k-lite-codec-pack-full-np.json -------------------------------------------------------------------------------- /bucket/k-lite-codec-pack-mega-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/k-lite-codec-pack-mega-np.json -------------------------------------------------------------------------------- /bucket/k-lite-codec-pack-standard-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/k-lite-codec-pack-standard-np.json -------------------------------------------------------------------------------- /bucket/lantern-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/lantern-np.json -------------------------------------------------------------------------------- /bucket/lav-filters-megamix-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/lav-filters-megamix-np.json -------------------------------------------------------------------------------- /bucket/lavfilters-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/lavfilters-np.json -------------------------------------------------------------------------------- /bucket/lightscribe-system-software-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/lightscribe-system-software-np.json -------------------------------------------------------------------------------- /bucket/lockhunter-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/lockhunter-np.json -------------------------------------------------------------------------------- /bucket/logitech-gaming-software-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/logitech-gaming-software-np.json -------------------------------------------------------------------------------- /bucket/mactype-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/mactype-np.json -------------------------------------------------------------------------------- /bucket/microsoft-edge-beta-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/microsoft-edge-beta-np.json -------------------------------------------------------------------------------- /bucket/microsoft-edge-canary-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/microsoft-edge-canary-np.json -------------------------------------------------------------------------------- /bucket/microsoft-edge-dev-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/microsoft-edge-dev-np.json -------------------------------------------------------------------------------- /bucket/mullvadvpn-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/mullvadvpn-np.json -------------------------------------------------------------------------------- /bucket/musicbee-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/musicbee-np.json -------------------------------------------------------------------------------- /bucket/nodejs-lts-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/nodejs-lts-np.json -------------------------------------------------------------------------------- /bucket/nodejs-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/nodejs-np.json -------------------------------------------------------------------------------- /bucket/notepadplusplus-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/notepadplusplus-np.json -------------------------------------------------------------------------------- /bucket/notepads-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/notepads-np.json -------------------------------------------------------------------------------- /bucket/nsis-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/nsis-np.json -------------------------------------------------------------------------------- /bucket/nvidia-display-driver-dch-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/nvidia-display-driver-dch-np.json -------------------------------------------------------------------------------- /bucket/nvidia-display-driver-dch-with-3d-vision-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/nvidia-display-driver-dch-with-3d-vision-np.json -------------------------------------------------------------------------------- /bucket/nvidia-display-driver-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/nvidia-display-driver-np.json -------------------------------------------------------------------------------- /bucket/nvidia-display-driver-with-3d-vision-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/nvidia-display-driver-with-3d-vision-np.json -------------------------------------------------------------------------------- /bucket/office-365-apps-minimal-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/office-365-apps-minimal-np.json -------------------------------------------------------------------------------- /bucket/office-365-apps-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/office-365-apps-np.json -------------------------------------------------------------------------------- /bucket/omnidb-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/omnidb-np.json -------------------------------------------------------------------------------- /bucket/open-shell-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/open-shell-np.json -------------------------------------------------------------------------------- /bucket/openhashtab-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/openhashtab-np.json -------------------------------------------------------------------------------- /bucket/parsec-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/parsec-np.json -------------------------------------------------------------------------------- /bucket/pdf24-creator-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/pdf24-creator-np.json -------------------------------------------------------------------------------- /bucket/pdfill-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/pdfill-np.json -------------------------------------------------------------------------------- /bucket/peace-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/peace-np.json -------------------------------------------------------------------------------- /bucket/pgadmin4-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/pgadmin4-np.json -------------------------------------------------------------------------------- /bucket/portmaster-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/portmaster-np.json -------------------------------------------------------------------------------- /bucket/powertoys-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/powertoys-np.json -------------------------------------------------------------------------------- /bucket/protonvpn-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/protonvpn-np.json -------------------------------------------------------------------------------- /bucket/putty-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/putty-np.json -------------------------------------------------------------------------------- /bucket/qttabbar-indiff-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/qttabbar-indiff-np.json -------------------------------------------------------------------------------- /bucket/qttabbar-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/qttabbar-np.json -------------------------------------------------------------------------------- /bucket/resilio-sync-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/resilio-sync-np.json -------------------------------------------------------------------------------- /bucket/rom-properties-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/rom-properties-np.json -------------------------------------------------------------------------------- /bucket/sandboxie-classic-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/sandboxie-classic-np.json -------------------------------------------------------------------------------- /bucket/sandboxie-plus-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/sandboxie-plus-np.json -------------------------------------------------------------------------------- /bucket/scilab-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/scilab-np.json -------------------------------------------------------------------------------- /bucket/shelltools-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/shelltools-np.json -------------------------------------------------------------------------------- /bucket/spotx-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/spotx-np.json -------------------------------------------------------------------------------- /bucket/sql-server-management-studio-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/sql-server-management-studio-np.json -------------------------------------------------------------------------------- /bucket/sshfs-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/sshfs-np.json -------------------------------------------------------------------------------- /bucket/stevedore-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/stevedore-np.json -------------------------------------------------------------------------------- /bucket/svg-explorer-extension-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/svg-explorer-extension-np.json -------------------------------------------------------------------------------- /bucket/teamviewer-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/teamviewer-np.json -------------------------------------------------------------------------------- /bucket/teracopy-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/teracopy-np.json -------------------------------------------------------------------------------- /bucket/textpad-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/textpad-np.json -------------------------------------------------------------------------------- /bucket/textpad8-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/textpad8-np.json -------------------------------------------------------------------------------- /bucket/ti-connect-ce-software-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/ti-connect-ce-software-np.json -------------------------------------------------------------------------------- /bucket/ti-nspire-cx-cas-student-software-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/ti-nspire-cx-cas-student-software-np.json -------------------------------------------------------------------------------- /bucket/ti-nspire-cx-student-software-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/ti-nspire-cx-student-software-np.json -------------------------------------------------------------------------------- /bucket/translucenttb-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/translucenttb-np.json -------------------------------------------------------------------------------- /bucket/unity-hub-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/unity-hub-np.json -------------------------------------------------------------------------------- /bucket/veyon-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/veyon-np.json -------------------------------------------------------------------------------- /bucket/virtualbox-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/virtualbox-np.json -------------------------------------------------------------------------------- /bucket/virtualbox-with-extension-pack-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/virtualbox-with-extension-pack-np.json -------------------------------------------------------------------------------- /bucket/virtualbox52-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/virtualbox52-np.json -------------------------------------------------------------------------------- /bucket/vmware-horizon-client-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/vmware-horizon-client-np.json -------------------------------------------------------------------------------- /bucket/vmware-workstation-player-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/vmware-workstation-player-np.json -------------------------------------------------------------------------------- /bucket/voicemeeter-banana-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/voicemeeter-banana-np.json -------------------------------------------------------------------------------- /bucket/voicemeeter-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/voicemeeter-np.json -------------------------------------------------------------------------------- /bucket/voicemeeter-potato-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/voicemeeter-potato-np.json -------------------------------------------------------------------------------- /bucket/vokoscreenng-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/vokoscreenng-np.json -------------------------------------------------------------------------------- /bucket/vpnc-front-end-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/vpnc-front-end-np.json -------------------------------------------------------------------------------- /bucket/winbtrfs-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/winbtrfs-np.json -------------------------------------------------------------------------------- /bucket/winfsp-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/winfsp-np.json -------------------------------------------------------------------------------- /bucket/winrar-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/winrar-np.json -------------------------------------------------------------------------------- /bucket/wireguard-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/wireguard-np.json -------------------------------------------------------------------------------- /bucket/workman-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/workman-np.json -------------------------------------------------------------------------------- /bucket/workman-p-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/workman-p-np.json -------------------------------------------------------------------------------- /bucket/workman-p-uk-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/workman-p-uk-np.json -------------------------------------------------------------------------------- /bucket/workman-uk-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/workman-uk-np.json -------------------------------------------------------------------------------- /bucket/xampp-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/xampp-np.json -------------------------------------------------------------------------------- /bucket/xysubfilter-libass-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/xysubfilter-libass-np.json -------------------------------------------------------------------------------- /bucket/xysubfilter-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/xysubfilter-np.json -------------------------------------------------------------------------------- /bucket/zadig-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/zadig-np.json -------------------------------------------------------------------------------- /bucket/zerotier-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/bucket/zerotier-np.json -------------------------------------------------------------------------------- /deprecated/mqttfx-np.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/deprecated/mqttfx-np.json -------------------------------------------------------------------------------- /scripts/install-office-365-apps-minimal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/scripts/install-office-365-apps-minimal.xml -------------------------------------------------------------------------------- /scripts/install-office-365-apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/scripts/install-office-365-apps.xml -------------------------------------------------------------------------------- /scripts/uninstall-office-365-apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Nonportable/HEAD/scripts/uninstall-office-365-apps.xml --------------------------------------------------------------------------------