├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── hash-error.yml ├── pull_request_template.md └── 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 ├── checkhashes.ps1 ├── checkurls.ps1 ├── checkver.ps1 ├── formatjson.ps1 ├── missing-checkver.ps1 └── test.ps1 ├── bucket ├── accesschk.json ├── accessenum.json ├── adexplorer.json ├── adinsight.json ├── adrestore.json ├── autologon.json ├── autoruns.json ├── bginfo.json ├── cacheset.json ├── clockres.json ├── contig.json ├── coreinfo.json ├── cpustres.json ├── ctrl2cap.json ├── debugview.json ├── desktops.json ├── disk2vhd.json ├── diskext.json ├── diskmon.json ├── diskview.json ├── du.json ├── efsdump.json ├── findlinks.json ├── handle.json ├── hex2dec.json ├── junction.json ├── ldmdump.json ├── listdlls.json ├── livekd.json ├── loadorder.json ├── logonsessions.json ├── movefile.json ├── notmyfault.json ├── ntfsinfo.json ├── pendmoves.json ├── pipelist.json ├── portmon.json ├── procdump.json ├── process-explorer.json ├── procmon.json ├── psexec.json ├── psfile.json ├── psgetsid.json ├── psinfo.json ├── pskill.json ├── pslist.json ├── psloggedon.json ├── psloglist.json ├── pspasswd.json ├── psping.json ├── psservice.json ├── psshutdown.json ├── pssuspend.json ├── pstools.json ├── rammap.json ├── rdcman.json ├── regdelnull.json ├── regjump.json ├── ru.json ├── sdelete.json ├── shareenum.json ├── shellrunas.json ├── sigcheck.json ├── streams.json ├── strings.json ├── sync.json ├── sysinternals-suite.json ├── sysmon.json ├── tcpview.json ├── testlimit.json ├── vmmap.json ├── volumeid.json ├── whois.json ├── winobj.json └── zoomit.json ├── deprecated └── .gitkeep └── scripts └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig (is awesome): http://EditorConfig.org 2 | 3 | # * top-most EditorConfig file 4 | root = true 5 | 6 | # default style settings 7 | [*] 8 | charset = utf-8 9 | end_of_line = crlf 10 | indent_size = 4 11 | indent_style = space 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | [*.{yml,yaml}] 16 | indent_size = 2 17 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Since Scoop is a Windows-only tool, we can safely use CRLF line endings for all text files. 2 | # If Git decides that the content is text, its line endings will be normalized to CRLF in the working tree on checkout. 3 | # In the Git index/repository the files will always be stored with LF line endings. This is fine. 4 | * text=auto eol=crlf 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug Report 2 | description: Open an issue about a bug that needs fixing. 3 | title: "[BUG]: " 4 | labels: ["bug"] 5 | body: 6 | - type: checkboxes 7 | attributes: 8 | label: Prerequisites 9 | options: 10 | - label: I have written a descriptive issue title. 11 | required: true 12 | - label: I have searched all issues/PRs to ensure it has not already been reported or fixed. 13 | required: true 14 | - label: I have verified that I am using the latest version of Scoop and corresponding bucket. 15 | required: true 16 | - type: input 17 | attributes: 18 | label: Package Name 19 | description: Name of package (install name) which has bug(s) 20 | placeholder: e.g. 7zip (not '7-Zip') 21 | validations: 22 | required: true 23 | - type: textarea 24 | attributes: 25 | label: Expected/Current Behaviour 26 | description: A clear and concise description of what you expected to happen and what actually happen. 27 | placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening. 28 | validations: 29 | required: true 30 | - type: textarea 31 | attributes: 32 | label: Steps to Reproduce 33 | description: List of steps, sample code or failing test that reproduces the behavior. 34 | render: console 35 | placeholder: | 36 | PS> scoop install tests/meson 37 | Installing 'meson' (0.61.1) [64bit] 38 | Loading meson-0.61.1-64.msi from cache. 39 | Checking hash of meson-0.61.1-64.msi ... ok. 40 | Extracting meson-0.61.1-64.msi ... done. 41 | Running installer script... 42 | Linking D:\Scoop\apps\meson\current => D:\Scoop\apps\meson\0.61.1 43 | Creating shim for 'meson'. 44 | Can't shim 'meson.exe': File doesn't exist. 45 | validations: 46 | required: true 47 | - type: textarea 48 | attributes: 49 | label: Possible Solution 50 | description: Do you have some suggestions on a fix for the bug? 51 | placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening. 52 | validations: 53 | required: true 54 | - type: textarea 55 | attributes: 56 | label: Scoop and Buckets Version 57 | description: Paste verbatim output from `scoop --version` below. 58 | render: console 59 | placeholder: | 60 | PS> scoop --version 61 | Current Scoop version: 62 | 8aee6f99 (HEAD -> master, tag: v0.3.0, origin/master) chore(release): Bump to version 0.3.0 63 | 64 | 'extras' bucket: 65 | ea314b213 (HEAD -> master, origin/master, origin/HEAD) lazygit: Update to version 0.36.0 66 | 67 | 'main' bucket: 68 | c6e688d4d (HEAD -> master, origin/master, origin/HEAD) x265: Update to version 3.5+68-40e37bc 69 | validations: 70 | required: true 71 | - type: textarea 72 | attributes: 73 | label: Scoop Config 74 | description: Paste verbatim output from `scoop config` below. 75 | render: console 76 | placeholder: | 77 | PS> scoop config 78 | 79 | last_update : 2022/11/14 22:05:50 80 | scoop_repo : https://github.com/ScoopInstaller/Scoop 81 | scoop_branch : master 82 | use_lessmsi : True 83 | aria2-enabled : True 84 | aria2-warning-enabled : False 85 | validations: 86 | required: true 87 | - type: textarea 88 | attributes: 89 | label: PowerShell Version 90 | description: Paste verbatim output from `$PSVersionTable` below. 91 | render: console 92 | placeholder: | 93 | PS> $PSVersionTable 94 | 95 | Name Value 96 | ---- ----- 97 | PSVersion 7.3.0 98 | PSEdition Core 99 | GitCommitId 7.3.0 100 | OS Microsoft Windows 10.0.25236 101 | Platform Win32NT 102 | PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…} 103 | PSRemotingProtocolVersion 2.3 104 | SerializationVersion 1.1.0.1 105 | WSManStackVersion 3.0 106 | validations: 107 | required: true 108 | - type: textarea 109 | attributes: 110 | label: Additional Softwares 111 | description: List any additional software that you are using and may be related to this bug. 112 | validations: 113 | required: false 114 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Scoop Community Support 4 | url: https://github.com/ScoopInstaller/Scoop/discussions 5 | about: Please ask Scoop related questions here. 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/hash-error.yml: -------------------------------------------------------------------------------- 1 | name: 🔢 Hash Error 2 | description: Open an issue about a package's hash is incorrect. 3 | labels: ["bug"] 4 | body: 5 | - type: checkboxes 6 | attributes: 7 | label: Prerequisites 8 | options: 9 | - label: I have used the predefined issue title. (e.g. "xxx@xxx: hash check failed") 10 | required: true 11 | - label: I have verified that I am using the latest version of Scoop and corresponding bucket. 12 | required: true 13 | - type: input 14 | attributes: 15 | label: Package Name and Version 16 | description: Name and version of package (install name) which has incorrect hash. 17 | placeholder: e.g. 7zip@21.00 (not '7-Zip') 18 | validations: 19 | required: true 20 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | - Closes #XXXX 12 | 13 | - Relates to #XXXX 14 | 15 | - [ ] I have read the [Contributing Guide](https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md). 16 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: Tests 2 | 3 | on: 4 | push: 5 | branches: 6 | - 'main' 7 | pull_request: 8 | workflow_dispatch: 9 | 10 | jobs: 11 | test_powershell: 12 | name: WindowsPowerShell 13 | runs-on: windows-latest 14 | steps: 15 | - name: Checkout Bucket 16 | uses: actions/checkout@main 17 | with: 18 | fetch-depth: 2 19 | path: my_bucket 20 | - name: Checkout Scoop 21 | uses: actions/checkout@main 22 | with: 23 | repository: ScoopInstaller/Scoop 24 | ref: develop 25 | path: scoop_core 26 | - name: Init Test Suite 27 | uses: potatoqualitee/psmodulecache@main 28 | with: 29 | modules-to-cache: BuildHelpers 30 | shell: powershell 31 | - name: Test Bucket 32 | shell: powershell 33 | run: | 34 | $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" 35 | .\my_bucket\bin\test.ps1 36 | test_pwsh: 37 | name: PowerShell 38 | runs-on: windows-latest 39 | steps: 40 | - name: Checkout Bucket 41 | uses: actions/checkout@main 42 | with: 43 | fetch-depth: 2 44 | path: my_bucket 45 | - name: Checkout Scoop 46 | uses: actions/checkout@main 47 | with: 48 | repository: ScoopInstaller/Scoop 49 | ref: develop 50 | path: scoop_core 51 | - name: Init Test Suite 52 | uses: potatoqualitee/psmodulecache@main 53 | with: 54 | modules-to-cache: BuildHelpers 55 | shell: pwsh 56 | - name: Test Bucket 57 | shell: pwsh 58 | run: | 59 | $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" 60 | .\my_bucket\bin\test.ps1 61 | -------------------------------------------------------------------------------- /.github/workflows/excavator.yml: -------------------------------------------------------------------------------- 1 | on: 2 | workflow_dispatch: 3 | schedule: 4 | # run every 4 hours 5 | - cron: '20 */4 * * *' 6 | name: Excavator 7 | jobs: 8 | excavate: 9 | name: Excavate 10 | runs-on: windows-latest 11 | steps: 12 | - uses: actions/checkout@main 13 | - name: Excavate 14 | uses: ScoopInstaller/GithubActions@main 15 | env: 16 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 17 | SKIP_UPDATED: 1 18 | SCOOP_BRANCH: develop 19 | -------------------------------------------------------------------------------- /.github/workflows/issue_comment.yml: -------------------------------------------------------------------------------- 1 | on: 2 | issue_comment: 3 | types: [created] 4 | name: Commented Pull Request 5 | jobs: 6 | pullRequestHandler: 7 | name: PullRequestHandler 8 | runs-on: windows-latest 9 | steps: 10 | - uses: actions/checkout@main 11 | - name: PullRequestHandler 12 | uses: ScoopInstaller/GithubActions@main 13 | if: startsWith(github.event.comment.body, '/verify') 14 | env: 15 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 | SCOOP_BRANCH: develop 17 | -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- 1 | on: 2 | issues: 3 | types: [opened, labeled] 4 | name: Issues 5 | jobs: 6 | issueHandler: 7 | name: IssueHandler 8 | runs-on: windows-latest 9 | steps: 10 | - uses: actions/checkout@main 11 | - name: IssueHandler 12 | uses: ScoopInstaller/GithubActions@main 13 | if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify')) 14 | env: 15 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 | SCOOP_BRANCH: develop 17 | -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- 1 | on: 2 | pull_request_target: 3 | types: [opened] 4 | name: Pull Requests 5 | jobs: 6 | pullRequestHandler: 7 | name: PullRequestHandler 8 | runs-on: windows-latest 9 | steps: 10 | - uses: actions/checkout@main 11 | - name: PullRequestHandler 12 | uses: ScoopInstaller/GithubActions@main 13 | env: 14 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 15 | SCOOP_BRANCH: develop 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-workspace 2 | *~ 3 | ._* 4 | page.html 5 | checkver-*.html 6 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD013": false, 3 | "MD024": { 4 | "siblings_only": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "EditorConfig.EditorConfig", 4 | "ms-vscode.PowerShell" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Configure PSScriptAnalyzer settings 2 | { 3 | "[powershell]": { 4 | "editor.formatOnSave": true 5 | }, 6 | "powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1", 7 | "powershell.codeFormatting.preset": "OTBS", 8 | "powershell.codeFormatting.alignPropertyValuePairs": true, 9 | "powershell.codeFormatting.ignoreOneLineBlock": true, 10 | "json.schemas": [ 11 | { 12 | "url": "https://raw.githubusercontent.com/ScoopInstaller/Scoop/master/schema.json", 13 | "fileMatch": [ 14 | "bucket/*.json", 15 | "bucket/*/*.json" 16 | ] 17 | } 18 | ], 19 | "files.exclude": { 20 | "**/.git": true, 21 | "**/.svn": true, 22 | "**/.hg": true, 23 | "**/CVS": true, 24 | "**/.DS_Store": true, 25 | "**/tmp": true 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Hsiao-nan Cheung (https://github.com/niheaven) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Scoop Bucket for Sysinternals 2 | 3 | [![Tests](https://github.com/niheaven/scoop-sysinternals/actions/workflows/ci.yml/badge.svg)](https://github.com/niheaven/scoop-sysinternals/actions/workflows/ci.yml) [![Excavator](https://github.com/niheaven/scoop-sysinternals/actions/workflows/excavator.yml/badge.svg)](https://github.com/niheaven/scoop-sysinternals/actions/workflows/excavator.yml) [![License](https://img.shields.io/badge/license-MIT-blue)](./LICENSE) 4 | 5 | Sysinternals bucket for [Scoop](https://scoop.sh), the Windows command-line installer. 6 | 7 | The Sysinternals web site was created in 1996 by [Mark Russinovich](https://blogs.technet.microsoft.com/markrussinovich/) to host his advanced system utilities and technical information. Whether you’re an IT Pro or a developer, you’ll find Sysinternals utilities to help you manage, troubleshoot and diagnose your Windows systems and applications. 8 | 9 | ## How do I install these manifests? 10 | 11 | To add this bucket, run `scoop bucket add sysinternals https://github.com/niheaven/scoop-sysinternals`. To install, do `scoop install `. 12 | 13 | ## How do I contribute new manifests 14 | 15 | To make a new manifest contribution, please read the [Contributing Guide](https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md). 16 | 17 | ---- 18 | 19 | ## Copyright and License 20 | 21 | - Sysinternals is © Microsoft Corporation with [EULA](https://learn.microsoft.com/en-us/sysinternals/license-terms). 22 | - Manifests in this repository are © niheaven with [MIT License](./LICENSE). 23 | -------------------------------------------------------------------------------- /Scoop-Bucket.Tests.ps1: -------------------------------------------------------------------------------- 1 | if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Resolve-Path (scoop prefix scoop) } 2 | . "$env:SCOOP_HOME\test\Import-Bucket-Tests.ps1" 3 | -------------------------------------------------------------------------------- /bin/auto-pr.ps1: -------------------------------------------------------------------------------- 1 | param( 2 | # overwrite upstream param 3 | [String]$Upstream = 'niheaven/scoop-sysinternals:main' 4 | ) 5 | 6 | if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Convert-Path (scoop prefix scoop) } 7 | $autopr = "$env:SCOOP_HOME/bin/auto-pr.ps1" 8 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 9 | & $autopr -Dir $dir -Upstream $Upstream @Args 10 | -------------------------------------------------------------------------------- /bin/checkhashes.ps1: -------------------------------------------------------------------------------- 1 | if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Convert-Path (scoop prefix scoop) } 2 | $checkhashes = "$env:SCOOP_HOME/bin/checkhashes.ps1" 3 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 4 | & $checkhashes -Dir $dir @Args 5 | -------------------------------------------------------------------------------- /bin/checkurls.ps1: -------------------------------------------------------------------------------- 1 | if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Convert-Path (scoop prefix scoop) } 2 | $checkurls = "$env:SCOOP_HOME/bin/checkurls.ps1" 3 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 4 | & $checkurls -Dir $dir @Args 5 | -------------------------------------------------------------------------------- /bin/checkver.ps1: -------------------------------------------------------------------------------- 1 | if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Convert-Path (scoop prefix scoop) } 2 | $checkver = "$env:SCOOP_HOME/bin/checkver.ps1" 3 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 4 | & $checkver -Dir $dir @Args 5 | -------------------------------------------------------------------------------- /bin/formatjson.ps1: -------------------------------------------------------------------------------- 1 | if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Convert-Path (scoop prefix scoop) } 2 | $formatjson = "$env:SCOOP_HOME/bin/formatjson.ps1" 3 | $path = "$PSScriptRoot/../bucket" # checks the parent dir 4 | & $formatjson -Dir $path @Args 5 | -------------------------------------------------------------------------------- /bin/missing-checkver.ps1: -------------------------------------------------------------------------------- 1 | if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Convert-Path (scoop prefix scoop) } 2 | $missing_checkver = "$env:SCOOP_HOME/bin/missing-checkver.ps1" 3 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 4 | & $missing_checkver -Dir $dir @Args 5 | -------------------------------------------------------------------------------- /bin/test.ps1: -------------------------------------------------------------------------------- 1 | #Requires -Version 5.1 2 | #Requires -Modules @{ ModuleName = 'BuildHelpers'; ModuleVersion = '2.0.1' } 3 | #Requires -Modules @{ ModuleName = 'Pester'; ModuleVersion = '5.2.0' } 4 | 5 | $pesterConfig = New-PesterConfiguration -Hashtable @{ 6 | Run = @{ 7 | Path = "$PSScriptRoot/.." 8 | PassThru = $true 9 | } 10 | Output = @{ 11 | Verbosity = 'Detailed' 12 | } 13 | } 14 | $result = Invoke-Pester -Configuration $pesterConfig 15 | exit $result.FailedCount 16 | -------------------------------------------------------------------------------- /bucket/accesschk.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "6.15", 3 | "description": "A command-line tool for viewing the effective permissions on files, registry keys, services, processes, kernel objects, and more.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/accesschk", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/AccessChk.zip", 10 | "hash": "8ef5e3cf235bcf4ecdcf8b4da1c0016a75f104b8591a65cc083ae3a82d496e07", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "accesschk64.exe", 16 | "accesschk" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "accesschk.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "accesschk64a.exe", 27 | "accesschk" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/accesschk.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/AccessChk.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/accessenum.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.35", 3 | "description": "Shows you who has what access to directories, files and Registry keys on your systems.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/accessenum", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/AccessEnum.zip", 10 | "hash": "fd7d370447e83f17c7c33668401e619bef4e7d1eff4818aed6d8a6b17e1df208", 11 | "bin": "AccessEnum.exe", 12 | "shortcuts": [ 13 | [ 14 | "AccessEnum.exe", 15 | "SysInternals/AccessEnum", 16 | "/accepteula" 17 | ] 18 | ], 19 | "checkver": { 20 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/accessenum.md", 21 | "regex": "#.*?v([\\d.]+)" 22 | }, 23 | "autoupdate": { 24 | "url": "https://download.sysinternals.com/files/AccessEnum.zip" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /bucket/adexplorer.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.52", 3 | "description": "An advanced Active Directory (AD) viewer and editor.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/adexplorer", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/AdExplorer.zip", 10 | "hash": "56536bff1e9da136a53f68c6f4f1cd51f79be919a27249a193a2bc8fc472e89a", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "AdExplorer64.exe", 16 | "ADExplorer" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "ADExplorer64.exe", 22 | "SysInternals/ADExplorer", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "ADExplorer.exe", 29 | "shortcuts": [ 30 | [ 31 | "ADExplorer.exe", 32 | "SysInternals/ADExplorer", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "AdExplorer64a.exe", 41 | "ADExplorer" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "ADExplorer64a.exe", 47 | "SysInternals/ADExplorer", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/adexplorer.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/AdExplorer.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/adinsight.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.2", 3 | "description": "An LDAP (Light-weight Directory Access Protocol) real-time monitoring tool aimed at troubleshooting Active Directory client applications.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/adinsight", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/AdInsight.zip", 10 | "hash": "c613a6fabd3410bf91bda38fa0d2f9db6c63f79dba86e4a6a28379a290928ca1", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "ADInsight64.exe", 16 | "ADInsight" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "ADInsight64.exe", 22 | "SysInternals/ADInsight", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "ADInsight.exe", 29 | "shortcuts": [ 30 | [ 31 | "ADInsight.exe", 32 | "SysInternals/ADInsight", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "ADInsight64a.exe", 41 | "ADInsight" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "ADInsight64a.exe", 47 | "SysInternals/ADInsight", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/adinsight.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/AdInsight.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/adrestore.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.2", 3 | "description": "Undelete Server 2003 Active Directory objects.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/adrestore", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/ADRestore.zip", 10 | "hash": "9fd6461d6e5a3affed9d4415573c7c8f4eae0aab48b7410ed973a84d59e908c9", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "adrestore64.exe", 16 | "adrestore" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "adrestore.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "adrestore64a.exe", 27 | "adrestore" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/adrestore.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/ADRestore.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/autologon.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.10", 3 | "description": "Bypass password screen during logon.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/autologon", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/AutoLogon.zip", 10 | "hash": "9a477624ea6488acfbd2cefcc392fac082383a3a8db1c6d867af1b410f4731b7", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Autologon64.exe", 16 | "Autologon" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "Autologon64.exe", 22 | "SysInternals/Autologon", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "Autologon.exe", 29 | "shortcuts": [ 30 | [ 31 | "Autologon.exe", 32 | "SysInternals/Autologon", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "Autologon64a.exe", 41 | "Autologon" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "Autologon64a.exe", 47 | "SysInternals/Autologon", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/autologon.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/AutoLogon.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/autoruns.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "14.11", 3 | "description": "See what programs are configured to startup automatically when your system boots and you login.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/autoruns", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Autoruns.zip", 10 | "hash": "b04d2ac6dcc287a4b01a9cdc5bd9580a38df8a3379e03698cf7b888cdab7ea0f", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Autoruns64.exe", 16 | "Autoruns" 17 | ], 18 | [ 19 | "Autorunsc64.exe", 20 | "Autorunsc" 21 | ] 22 | ], 23 | "shortcuts": [ 24 | [ 25 | "Autoruns64.exe", 26 | "SysInternals/Autoruns" 27 | ] 28 | ] 29 | }, 30 | "32bit": { 31 | "bin": [ 32 | "Autoruns.exe", 33 | "Autorunsc.exe" 34 | ], 35 | "shortcuts": [ 36 | [ 37 | "Autoruns.exe", 38 | "SysInternals/Autoruns" 39 | ] 40 | ] 41 | }, 42 | "arm64": { 43 | "bin": [ 44 | [ 45 | "Autoruns64a.exe", 46 | "Autoruns" 47 | ], 48 | [ 49 | "Autorunsc64a.exe", 50 | "Autorunsc" 51 | ] 52 | ], 53 | "shortcuts": [ 54 | [ 55 | "Autoruns64a.exe", 56 | "SysInternals/Autoruns" 57 | ] 58 | ] 59 | } 60 | }, 61 | "checkver": { 62 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/autoruns.md", 63 | "regex": "#.*?v([\\d.]+)" 64 | }, 65 | "autoupdate": { 66 | "url": "https://download.sysinternals.com/files/Autoruns.zip" 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /bucket/bginfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.33", 3 | "description": "Automatically generates desktop backgrounds that include important information about the system.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/bginfo", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/BGInfo.zip", 10 | "hash": "9d77550fcaa92691872c218bd196c1f84534419058bcbf0e837fcccf1d97b78d", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Bginfo64.exe", 16 | "Bginfo" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "Bginfo64.exe", 22 | "SysInternals/BGInfo", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "Bginfo.exe", 29 | "shortcuts": [ 30 | [ 31 | "Bginfo.exe", 32 | "SysInternals/BGInfo", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "Bginfo64a.exe", 41 | "Bginfo" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "Bginfo64a.exe", 47 | "SysInternals/BGInfo", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/bginfo.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/BGInfo.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/cacheset.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.02", 3 | "description": "A program that allows you to control the Cache Manager's working set size using functions provided by NT.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/cacheset", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/CacheSet.zip", 10 | "hash": "3f8613a536b2dc55cf710ef94c5c5cd50d1e891b2bc49fc90fabb541de005b6a", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Cacheset64.exe", 16 | "Cacheset" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "Cacheset64.exe", 22 | "SysInternals/CacheSet", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "Cacheset.exe", 29 | "shortcuts": [ 30 | [ 31 | "Cacheset.exe", 32 | "SysInternals/CacheSet", 33 | "/accepteula" 34 | ] 35 | ] 36 | } 37 | }, 38 | "checkver": { 39 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/cacheset.md", 40 | "regex": "#.*?v([\\d.]+)" 41 | }, 42 | "autoupdate": { 43 | "url": "https://download.sysinternals.com/files/CacheSet.zip" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /bucket/clockres.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.1", 3 | "description": "View the resolution of the system clock, which is also the maximum timer resolution.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/clockres", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/ClockRes.zip", 10 | "hash": "dd1f74ca53e7d47a7a0a45d594a625d55abc7e231ad1e4d535c2f5f815769983", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Clockres64.exe", 16 | "Clockres" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "Clockres.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "Clockres64a.exe", 27 | "Clockres" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/clockres.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/ClockRes.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/contig.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.83", 3 | "description": "To optimize individual files, or to create new files that are contiguous.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/contig", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Contig.zip", 10 | "hash": "721ce2c510c78ecd7855f08b3219344d15e7f72c9f342ac1f73145b71635d912", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Contig64.exe", 16 | "Contig" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "Contig.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "Contig64a.exe", 27 | "Contig" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/contig.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Contig.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/coreinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.6", 3 | "description": "A command-line utility that shows you the mapping between logical processors and the physical processor.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/coreinfo", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Coreinfo.zip", 10 | "hash": "969a77fd34f20d41ba6af8dac450bca7ea39d47c2bbf431dbf4e14e77ddab09c", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Coreinfo64.exe", 16 | "Coreinfo" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "Coreinfo.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "Coreinfo64a.exe", 27 | "Coreinfo" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/coreinfo.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Coreinfo.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/cpustres.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "description": "Windows CPU Stress utility.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/cpustres", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/CPUSTRES.zip", 10 | "hash": "f1a2470238904167a909850d9ba09bba62abcc82ef1af30be4a890f4d81110c7", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "CPUSTRES64.exe", 16 | "CPUSTRES" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "CPUSTRES64.exe", 22 | "SysInternals/CPU Stress", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "CPUSTRES.exe", 29 | "shortcuts": [ 30 | [ 31 | "CPUSTRES.exe", 32 | "SysInternals/CPU Stress", 33 | "/accepteula" 34 | ] 35 | ] 36 | } 37 | }, 38 | "checkver": { 39 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/cpustres.md", 40 | "regex": "#.*?v([\\d.]+)" 41 | }, 42 | "autoupdate": { 43 | "url": "https://download.sysinternals.com/files/CPUSTRES.zip" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /bucket/ctrl2cap.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.0", 3 | "description": "A kernel-mode driver that demonstrates keyboard input filtering in order to turn caps-locks into control keys. ", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/ctrl2cap", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Ctrl2Cap.zip", 10 | "hash": "4e28152f1ff55f8fdebff3bf7b4d8352bdd7607544f4e86a60f067c0d130a56f", 11 | "bin": "ctrl2cap.exe", 12 | "checkver": { 13 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/ctrl2cap.md", 14 | "regex": "#.*?v([\\d.]+)" 15 | }, 16 | "autoupdate": { 17 | "url": "https://download.sysinternals.com/files/Ctrl2Cap.zip" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /bucket/debugview.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.90", 3 | "description": "Intercepts calls made to DbgPrint by device drivers and OutputDebugString made by Win32 programs.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/debugview", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/DebugView.zip", 10 | "hash": "05cfa3dde3d98eb333d0582556f4f520e6207fe8d335bd1e910d90692798f913", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "dbgview64.exe", 16 | "dbgview" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "dbgview64.exe", 22 | "SysInternals/DebugView", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "Dbgview.exe", 29 | "shortcuts": [ 30 | [ 31 | "Dbgview.exe", 32 | "SysInternals/DebugView", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "Dbgview64a.exe", 41 | "Dbgview" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "Dbgview64a.exe", 47 | "SysInternals/DebugView", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/debugview.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/DebugView.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/desktops.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.01", 3 | "description": "Create up to four virtual desktops and easily switch between them.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/desktops", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Desktops.zip", 10 | "hash": "fbba8b7267911c55bcd0252002b407603e9b0569f4e18eee0b7c664a195857f2", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Desktops64.exe", 16 | "Desktops" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "Desktops64.exe", 22 | "SysInternals/Desktops", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "Desktops.exe", 29 | "shortcuts": [ 30 | [ 31 | "Desktops.exe", 32 | "SysInternals/Desktops", 33 | "/accepteula" 34 | ] 35 | ] 36 | } 37 | }, 38 | "checkver": { 39 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/desktops.md", 40 | "regex": "#.*?v([\\d.]+)" 41 | }, 42 | "autoupdate": { 43 | "url": "https://download.sysinternals.com/files/Desktops.zip" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /bucket/disk2vhd.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.02", 3 | "description": "Simplifies the migration of physical systems into virtual machines.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/disk2vhd", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Disk2vhd.zip", 10 | "hash": "c294d279bf98645f84452989f320b561bf58609e35d85de47ea19ef583880821", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "disk2vhd64.exe", 16 | "disk2vhd" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "disk2vhd64.exe", 22 | "SysInternals/Disk2vhd", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "disk2vhd.exe", 29 | "shortcuts": [ 30 | [ 31 | "disk2vhd.exe", 32 | "SysInternals/Disk2vhd", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "disk2vhd64a.exe", 41 | "disk2vhd" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "disk2vhd64a.exe", 47 | "SysInternals/Disk2vhd", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/disk2vhd.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/Disk2vhd.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/diskext.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.2", 3 | "description": "Display volume disk-mappings.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/diskext", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/DiskExt.zip", 10 | "hash": "b201c8424aecb60d7aab6079e86acad550d9d21e7833861995b0c1faca9ada39", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "diskext64.exe", 16 | "diskext" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "diskext.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "diskext64a.exe", 27 | "diskext" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/diskext.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/DiskExt.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/diskmon.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.02", 3 | "description": "Captures all hard disk activity or acts like a software disk activity light in your system tray.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/diskmon", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/DiskMon.zip", 10 | "hash": "36c85a6dd3ae9b4a9723a9229f9bf55b5bcac607d5725e9ef100d0a67adba8d3", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Diskmon64.exe", 16 | "Diskmon" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "Diskmon64.exe", 22 | "SysInternals/DiskMon", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "Diskmon.exe", 29 | "shortcuts": [ 30 | [ 31 | "Diskmon.exe", 32 | "SysInternals/DiskMon", 33 | "/accepteula" 34 | ] 35 | ] 36 | } 37 | }, 38 | "checkver": { 39 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/diskmon.md", 40 | "regex": "#.*?v([\\d.]+)" 41 | }, 42 | "autoupdate": { 43 | "url": "https://download.sysinternals.com/files/DiskMon.zip" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /bucket/diskview.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.41", 3 | "description": "Graphical disk sector utility.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/diskview", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/DiskView.zip", 10 | "hash": "0ceac1623419ce74cfd079823130a76e23d1932ba6cc396157a299e9f23ebe2d", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "DiskView64.exe", 16 | "DiskView" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "DiskView64.exe", 22 | "SysInternals/DiskView", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "DiskView.exe", 29 | "shortcuts": [ 30 | [ 31 | "DiskView.exe", 32 | "SysInternals/DiskView", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "DiskView64a.exe", 41 | "DiskView" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "DiskView64a.exe", 47 | "SysInternals/DiskView", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/diskview.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/DiskView.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/du.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.62", 3 | "description": "View disk usage by directory.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/du", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/DU.zip", 10 | "hash": "5aa85919ce064a93fdbbcba405ae9cbdfc923d0ff8b521bb9007f7693559921c", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "du64.exe", 16 | "du" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "du.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "du64a.exe", 27 | "du" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/du.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/DU.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/efsdump.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.03", 3 | "description": "View information for encrypted files.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/efsdump", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/EFSDump.zip", 10 | "hash": "9f74b906404402c94af5a3aa04808a07ef1fcc85607c2ea53283cee8b19bc175", 11 | "bin": "efsdump.exe", 12 | "checkver": { 13 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/efsdump.md", 14 | "regex": "#.*?v([\\d.]+)" 15 | }, 16 | "autoupdate": { 17 | "url": "https://download.sysinternals.com/files/EFSDump.zip" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /bucket/findlinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.1", 3 | "description": "Reports the file index and any hard links (alternate file paths on the same volume) that exist for the specified file.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/findlinks", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/FindLinks.zip", 10 | "hash": "90578bc865785e7bc49b1e59e89893816e7256441dfc80f99f58a1200578db3d", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "FindLinks64.exe", 16 | "FindLinks" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "FindLinks.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "FindLinks64a.exe", 27 | "FindLinks" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/findlinks.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/FindLinks.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/handle.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "5.0", 3 | "description": "Show you what files are open by which processes, and much more.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/handle", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Handle.zip", 10 | "hash": "279aaf8eccb6f79147f4dcc6ba091fb895c4cb8b199a0dd186a4c76bc519d2cd", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "handle64.exe", 16 | "handle" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "handle.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "handle64a.exe", 27 | "handle" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/handle.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Handle.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/hex2dec.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.1", 3 | "description": "Convert hex numbers to decimal and vice versa.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/hex2dec", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Hex2Dec.zip", 10 | "hash": "88b4d4dc34855c0171a53b12a626f349e3f72fb4f07edb4fea906ad02d42dab8", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "hex2dec64.exe", 16 | "hex2dec" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "hex2dec.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "hex2dec64a.exe", 27 | "hex2dec" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/hex2dec.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Hex2Dec.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/junction.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.07", 3 | "description": "Create Win2K NTFS junction points.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/junction", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Junction.zip", 10 | "hash": "157dbfbcc0e97e99a78ff075534d1aa64d0d6bf4cae942fc4ed9dd5b4285f1bb", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "junction64.exe", 16 | "junction" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "junction.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "junction64a.exe", 27 | "junction" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/junction.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Junction.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/ldmdump.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.02", 3 | "description": "Dump the contents of the Logical Disk Manager's on-disk database, which describes the partitioning of Windows 2000 Dynamic disks.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/ldmdump", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/LdmDump.zip", 10 | "hash": "21247eb36b5c68598a491bb6b2e7c9b0ee2698da7aa430ea7ac405f5b2580812", 11 | "bin": "ldmdump.exe", 12 | "checkver": { 13 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/ldmdump.md", 14 | "regex": "#.*?v([\\d.]+)" 15 | }, 16 | "autoupdate": { 17 | "url": "https://download.sysinternals.com/files/LdmDump.zip" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /bucket/listdlls.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.2", 3 | "description": "List all the DLLs that are currently loaded, including where they are loaded and their version numbers.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/listdlls", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/ListDlls.zip", 10 | "hash": "b9772e115cf9112790c172d3c7041a429ae95a6d1ac6f5f773c1ce3040581ab5", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Listdlls64.exe", 16 | "Listdlls" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "Listdlls.exe" 22 | } 23 | }, 24 | "checkver": { 25 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/listdlls.md", 26 | "regex": "#.*?v([\\d.]+)" 27 | }, 28 | "autoupdate": { 29 | "url": "https://download.sysinternals.com/files/ListDlls.zip" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/livekd.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "5.63", 3 | "description": "Use Microsoft kernel debuggers to examine a live system.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/livekd", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/LiveKD.zip", 10 | "hash": "334823d4113f2cb41326a934721138c6b595ad6b429a00708aedea68e24773f8", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "livekd64.exe", 16 | "livekd" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "livekd.exe" 22 | } 23 | }, 24 | "checkver": { 25 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/livekd.md", 26 | "regex": "#.*?v([\\d.]+)" 27 | }, 28 | "autoupdate": { 29 | "url": "https://download.sysinternals.com/files/LiveKD.zip" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/loadorder.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.02", 3 | "description": "See the order in which devices are loaded on your WinNT/2K system.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/loadorder", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/LoadOrder.zip", 10 | "hash": "e696080f65ff8b9271aef9e80f1f5c87c9f250965ed4d1fd3060a97a759da61c", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "LoadOrd64.exe", 16 | "LoadOrd" 17 | ], 18 | [ 19 | "LoadOrdC64.exe", 20 | "LoadOrdC" 21 | ] 22 | ], 23 | "shortcuts": [ 24 | [ 25 | "LoadOrd64.exe", 26 | "SysInternals/LoadOrder", 27 | "/accepteula" 28 | ] 29 | ] 30 | }, 31 | "32bit": { 32 | "bin": [ 33 | "LoadOrd.exe", 34 | "LoadOrdC.exe" 35 | ], 36 | "shortcuts": [ 37 | [ 38 | "LoadOrd.exe", 39 | "SysInternals/LoadOrder", 40 | "/accepteula" 41 | ] 42 | ] 43 | }, 44 | "arm64": { 45 | "bin": [ 46 | [ 47 | "LoadOrd64a.exe", 48 | "LoadOrd" 49 | ], 50 | [ 51 | "LoadOrdC64a.exe", 52 | "LoadOrdC" 53 | ] 54 | ], 55 | "shortcuts": [ 56 | [ 57 | "LoadOrd64a.exe", 58 | "SysInternals/LoadOrder", 59 | "/accepteula" 60 | ] 61 | ] 62 | } 63 | }, 64 | "checkver": { 65 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/loadorder.md", 66 | "regex": "#.*?v([\\d.]+)" 67 | }, 68 | "autoupdate": { 69 | "url": "https://download.sysinternals.com/files/LoadOrder.zip" 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /bucket/logonsessions.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.41", 3 | "description": "List the active logon sessions on a system.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/logonsessions", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/logonSessions.zip", 10 | "hash": "19585b9d74a403cd0d5f7dbfe6e226b264816eb0cbd9a90bc030cfdd5d6abbec", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "logonsessions64.exe", 16 | "logonsessions" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "logonsessions.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "logonsessions64a.exe", 27 | "logonsessions" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/logonsessions.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/logonSessions.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/movefile.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.02", 3 | "description": "Allows you to schedule move and delete commands for the next reboot.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/pendmoves", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/pendmoves.zip", 10 | "hash": "377c0a8efbf39a78add4a9fe421ae140400b1a0a1e7f7f447793c690001410a3", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "movefile64.exe", 16 | "movefile" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "movefile.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "movefile64a.exe", 27 | "movefile" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/pendmoves.md", 34 | "regex": "#.*?MoveFile*.?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/pendmoves.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/notmyfault.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.21", 3 | "description": "A tool that you can use to crash, hang, and cause kernel memory leaks on your Windows system.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/notmyfault", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/NotMyFault.zip", 10 | "hash": "e26db5a12a6e1f83085cc40446a0b8fb6e322b989c46f4cb649a955682c15de4", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "notmyfault64.exe", 16 | "notmyfault" 17 | ], 18 | [ 19 | "notmyfaultc64.exe", 20 | "notmyfaultc" 21 | ] 22 | ], 23 | "shortcuts": [ 24 | [ 25 | "notmyfault64.exe", 26 | "SysInternals/NotMyFault", 27 | "/accepteula" 28 | ] 29 | ] 30 | }, 31 | "32bit": { 32 | "bin": [ 33 | "notmyfault.exe", 34 | "notmyfaultc.exe" 35 | ], 36 | "shortcuts": [ 37 | [ 38 | "notmyfault.exe", 39 | "SysInternals/NotMyFault", 40 | "/accepteula" 41 | ] 42 | ] 43 | }, 44 | "arm64": { 45 | "bin": [ 46 | [ 47 | "notmyfault64a.exe", 48 | "notmyfault" 49 | ], 50 | [ 51 | "notmyfaultc64a.exe", 52 | "notmyfaultc" 53 | ] 54 | ], 55 | "shortcuts": [ 56 | [ 57 | "notmyfault64a.exe", 58 | "SysInternals/NotMyFault", 59 | "/accepteula" 60 | ] 61 | ] 62 | } 63 | }, 64 | "checkver": { 65 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/notmyfault.md", 66 | "regex": "#.*?v([\\d.]+)" 67 | }, 68 | "autoupdate": { 69 | "url": "https://download.sysinternals.com/files/NotMyFault.zip" 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /bucket/ntfsinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.2", 3 | "description": "See detailed information about NTFS volumes.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/ntfsinfo", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/NTFSInfo.zip", 10 | "hash": "c71445a4d8df9ccb21923beb575e315529e264ad672de445110aabdc01bc5a9d", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "ntfsinfo64.exe", 16 | "ntfsinfo" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "ntfsinfo.exe" 22 | } 23 | }, 24 | "checkver": { 25 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/ntfsinfo.md", 26 | "regex": "#.*?v([\\d.]+)" 27 | }, 28 | "autoupdate": { 29 | "url": "https://download.sysinternals.com/files/NTFSInfo.zip" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/pendmoves.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.3", 3 | "description": "Enumerate the list of file rename and delete commands that will be executed the next boot.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/pendmoves", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/pendmoves.zip", 10 | "hash": "377c0a8efbf39a78add4a9fe421ae140400b1a0a1e7f7f447793c690001410a3", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "pendmoves64.exe", 16 | "pendmoves" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "pendmoves.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "pendmoves64a.exe", 27 | "pendmoves" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/pendmoves.md", 34 | "regex": "#*.?PendMoves*.?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/pendmoves.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/pipelist.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.02", 3 | "description": "Displays the named pipes on your system, including the number of maximum instances and active instances for each pipe.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/pipelist", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/PipeList.zip", 10 | "hash": "7bfef3046bfcce3efa666c4ae235b3a903ddc8ddba830a5c3ee4178e0a712b8d", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "pipelist64.exe", 16 | "pipelist" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "pipelist.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "pipelist64a.exe", 27 | "pipelist" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/pipelist.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/PipeList.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/portmon.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.03", 3 | "description": "Monitor serial and parallel port activity with this advanced monitoring tool.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/portmon", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/PortMon.zip", 10 | "hash": "ba9795f89315b84c21345b1a05b305ed2880de1fb04c58c7cfc9ebe24eedcdbb", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "portmon64.exe", 16 | "portmon" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "portmon.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "portmon64a.exe", 27 | "portmon" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/portmon.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/PortMon.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/procdump.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "11.0", 3 | "description": "Capturing process dumps of otherwise difficult to isolate and reproduce CPU spikes.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/procdump", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Procdump.zip", 10 | "hash": "d58e81b96d53ded74570ad028d605fcfa1bfcc2e7cb2f5ab24bd64901b0c8783", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "procdump64.exe", 16 | "procdump" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "procdump.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "procdump64a.exe", 27 | "procdump" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/procdump.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Procdump.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/process-explorer.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "17.06", 3 | "description": "Find out what files, registry keys and other objects processes have open, which DLLs they have loaded, and more.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/process-explorer", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/ProcessExplorer.zip", 10 | "hash": "54336cd4f4608903b1f89a43ca88f65c2f209f4512a5201cebd2b38ddc855f24", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "procexp64.exe", 16 | "procexp" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "procexp64.exe", 22 | "SysInternals/Process Explorer", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "procexp.exe", 29 | "shortcuts": [ 30 | [ 31 | "procexp.exe", 32 | "SysInternals/Process Explorer", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "procexp64a.exe", 41 | "procexp" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "procexp64a.exe", 47 | "SysInternals/Process Explorer", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/process-explorer.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/ProcessExplorer.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/procmon.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.01", 3 | "description": "Monitor file system, Registry, process, thread and DLL activity in real-time.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/procmon", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/ProcessMonitor.zip", 10 | "hash": "d4ed579fdc1957fde0124dd41efd8d72af0529254984bfa5a3864ecd8b539252", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Procmon64.exe", 16 | "Procmon" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "Procmon64.exe", 22 | "SysInternals/Process Monitor", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "Procmon.exe", 29 | "shortcuts": [ 30 | [ 31 | "Procmon.exe", 32 | "SysInternals/Process Monitor", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "Procmon64a.exe", 41 | "Procmon" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "Procmon64a.exe", 47 | "SysInternals/Process Monitor", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/procmon.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/ProcessMonitor.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/psexec.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.43", 3 | "description": "Execute processes on remote systems.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/psexec", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/PsExec.zip", 10 | "hash": "a357eb3b4eaa974f47321cc03b0da848a6d19b3e679f6347aeb4dfba65e87045", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "PsExec64.exe", 16 | "PsExec" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "PsExec.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "PsExec64a.exe", 27 | "PsExec" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/psexec.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/PsExec.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/psfile.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.04", 3 | "description": "See what files are opened remotely.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/psfile", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/psfile.zip", 10 | "hash": "1434a1c45bd0fe304fe27668e1abae0856bfad0a413e379257dcc88838bf2264", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "psfile64.exe", 16 | "psfile" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "psfile.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "psfile64a.exe", 27 | "psfile" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/psfile.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/psfile.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/psgetsid.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.46", 3 | "description": "Translate SIDs to their display name and vice versa.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/psgetsid", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/PsGetSid.zip", 10 | "hash": "17e2eba63e4ac5d4d3c8ac683988cede8924bbe43646ea03b1d61e7f49c07630", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "PsGetsid64.exe", 16 | "PsGetsid" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "PsGetsid.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "PsGetsid64a.exe", 27 | "PsGetsid" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/psgetsid.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/PsGetSid.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/psinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.79", 3 | "description": "Obtain information about a system.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/psinfo", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/PsInfo.zip", 10 | "hash": "ae5b7395b423901cf3e34ac05d42da5556acad478976a5a0ebef3244c8a9b88c", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "PsInfo64.exe", 16 | "PsInfo" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "PsInfo.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "PsInfo64a.exe", 27 | "PsInfo" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/psinfo.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/PsInfo.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/pskill.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.17", 3 | "description": "Terminate local or remote processes.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/pskill", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/pskill.zip", 10 | "hash": "c9793e9394a0f5b6d94d09a653691db93569a19c7a8f67d161e23ce8bc7bd11f", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "pskill64.exe", 16 | "pskill" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "pskill.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "pskill64a.exe", 27 | "pskill" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/pskill.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/pskill.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/pslist.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.41", 3 | "description": "Show information about processes and threads.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/pslist", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/pslist.zip", 10 | "hash": "0f5ed107004c0c42ad528bb62aed69be1d8b773f716818c477ef22da1124c822", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "pslist64.exe", 16 | "pslist" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "pslist.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "pslist64a.exe", 27 | "pslist" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/pslist.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/pslist.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/psloggedon.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.35", 3 | "description": "Show users logged on to a system.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/psloggedon", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/PsLoggedon.zip", 10 | "hash": "637e6de955807386a0e87e682eaa475f30e9aa89449337d18d07d9f49858c1da", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "PsLoggedon64.exe", 16 | "PsLoggedon" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "PsLoggedon.exe" 22 | } 23 | }, 24 | "checkver": { 25 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/psloggedon.md", 26 | "regex": "#.*?v([\\d.]+)" 27 | }, 28 | "autoupdate": { 29 | "url": "https://download.sysinternals.com/files/PsLoggedon.zip" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/psloglist.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.82", 3 | "description": "Dump event log records.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/psloglist", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/psloglist.zip", 10 | "hash": "8d29dbd68aa03a9a6adf2e71c78d98999eec46ef13106309fd7cf3c9708e083c", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "psloglist64.exe", 16 | "psloglist" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "psloglist.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "psloglist64a.exe", 27 | "psloglist" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/psloglist.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/psloglist.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/pspasswd.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.25", 3 | "description": "Changes account passwords.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/pspasswd", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/pspasswd.zip", 10 | "hash": "2b8600cb7ff9dbdb5f4ca0c9e13c6db8bfa4ffb40484ff1124f438a906143c8f", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "pspasswd64.exe", 16 | "pspasswd" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "pspasswd.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "pspasswd64a.exe", 27 | "pspasswd" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/pspasswd.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/pspasswd.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/psping.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.12", 3 | "description": "Measure network performance.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/psping", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/psping.zip", 10 | "hash": "c68f60f5381a042a255b4aafe7e5fb7d7aa7349d38f5ff2d81957ef0fd6f8e67", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "psping64.exe", 16 | "psping" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "psping.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "psping64a.exe", 27 | "psping" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/psping.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/psping.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/psservice.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.26", 3 | "description": "View and control services.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/psservice", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/PsService.zip", 10 | "hash": "3532148e01c0fb94f71a402909ee3989defc6b6dee5dcc608e188ceceb58730d", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "PsService.exe", 16 | "PsService" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "PsService.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "PsService64a.exe", 27 | "PsService" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/psservice.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/PsService.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/psshutdown.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.6", 3 | "description": "Shuts down and optionally reboots a computer.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/psshutdown", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/psshutdown.zip", 10 | "hash": "cfb9c65a3706797924a60017431cbddebf8e9591a529c986d4293c0f369e0346", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "psshutdown64.exe", 16 | "psshutdown" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "psshutdown.exe" 22 | } 23 | }, 24 | "checkver": { 25 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/psshutdown.md", 26 | "regex": "#.*?v([\\d.]+)" 27 | }, 28 | "autoupdate": { 29 | "url": "https://download.sysinternals.com/files/psshutdown.zip" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/pssuspend.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.08", 3 | "description": "See what files are opened remotely.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/pssuspend", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "architecture": { 10 | "64bit": { 11 | "url": "https://live.sysinternals.com/pssuspend64.exe#/pssuspend.exe", 12 | "hash": "4bf8fbb7db583e1aacbf36c5f740d012c8321f221066cc68107031bd8b6bc1ee" 13 | }, 14 | "32bit": { 15 | "url": "https://live.sysinternals.com/pssuspend.exe", 16 | "hash": "95a922e178075fb771066db4ab1bd70c7016f794709d514ab1c7f11500f016cd" 17 | }, 18 | "arm64": { 19 | "url": "https://live.sysinternals.com/ARM64/pssuspend64a.exe#/pssuspend.exe", 20 | "hash": "b7f7d9b9848cb7e00c7d22478da8f549b6436c5f2fb15d6680a345b2d50ba5a9" 21 | } 22 | }, 23 | "bin": "pssuspend.exe", 24 | "checkver": { 25 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/pssuspend.md", 26 | "regex": "#.*?v([\\d.]+)" 27 | }, 28 | "autoupdate": { 29 | "architecture": { 30 | "64bit": { 31 | "url": "https://live.sysinternals.com/pssuspend64.exe#/pssuspend.exe" 32 | }, 33 | "32bit": { 34 | "url": "https://live.sysinternals.com/pssuspend.exe" 35 | }, 36 | "arm64": { 37 | "url": "https://live.sysinternals.com/ARM64/pssuspend64a.exe#/pssuspend.exe" 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /bucket/pstools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.51", 3 | "description": "Command-line utilities for listing the processes running on local or remote computers, running processes, rebooting computers, and more.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/pstools", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/PSTools.zip", 10 | "hash": "a9ca77dfe03ce15004157727bb43ba66f00ceb215362c9b3d199f000edaa8d61", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "PsExec64.exe", 16 | "PsExec" 17 | ], 18 | [ 19 | "psfile64.exe", 20 | "psfile" 21 | ], 22 | [ 23 | "PsGetsid64.exe", 24 | "PsGetsid" 25 | ], 26 | [ 27 | "PsInfo64.exe", 28 | "PsInfo" 29 | ], 30 | [ 31 | "pskill64.exe", 32 | "pskill" 33 | ], 34 | [ 35 | "pslist64.exe", 36 | "pslist" 37 | ], 38 | [ 39 | "PsLoggedon64.exe", 40 | "PsLoggedon" 41 | ], 42 | [ 43 | "psloglist64.exe", 44 | "psloglist" 45 | ], 46 | [ 47 | "pspasswd64.exe", 48 | "pspasswd" 49 | ], 50 | [ 51 | "psping64.exe", 52 | "psping" 53 | ], 54 | [ 55 | "PsService64.exe", 56 | "PsService" 57 | ], 58 | [ 59 | "psshutdown64.exe", 60 | "psshutdown" 61 | ], 62 | [ 63 | "pssuspend64.exe", 64 | "pssuspend" 65 | ] 66 | ] 67 | }, 68 | "32bit": { 69 | "bin": [ 70 | "PsExec.exe", 71 | "psfile.exe", 72 | "PsGetsid.exe", 73 | "PsInfo.exe", 74 | "pskill.exe", 75 | "pslist.exe", 76 | "PsLoggedon.exe", 77 | "psloglist.exe", 78 | "pspasswd.exe", 79 | "psping.exe", 80 | "PsService.exe", 81 | "psshutdown.exe", 82 | "pssuspend.exe" 83 | ] 84 | }, 85 | "arm64": { 86 | "bin": [ 87 | [ 88 | "PsExec64a.exe", 89 | "PsExec" 90 | ], 91 | [ 92 | "psfile64a.exe", 93 | "psfile" 94 | ], 95 | [ 96 | "PsGetsid64a.exe", 97 | "PsGetsid" 98 | ], 99 | [ 100 | "PsInfo64a.exe", 101 | "PsInfo" 102 | ], 103 | [ 104 | "pskill64a.exe", 105 | "pskill" 106 | ], 107 | [ 108 | "pslist64a.exe", 109 | "pslist" 110 | ], 111 | [ 112 | "psloglist64a.exe", 113 | "psloglist" 114 | ], 115 | [ 116 | "pspasswd64a.exe", 117 | "pspasswd" 118 | ], 119 | [ 120 | "psping64a.exe", 121 | "psping" 122 | ], 123 | [ 124 | "PsService64a.exe", 125 | "PsService" 126 | ], 127 | [ 128 | "pssuspend64a.exe", 129 | "pssuspend" 130 | ] 131 | ] 132 | } 133 | }, 134 | "checkver": { 135 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/index.md", 136 | "regex": "(?s)PsTools.*?v([\\d.]+)" 137 | }, 138 | "autoupdate": { 139 | "url": "https://download.sysinternals.com/files/PSTools.zip" 140 | }, 141 | "notes": [ 142 | "The tools included in the PsTools suite, which are downloadable as a package, are:", 143 | "", 144 | "- PsExec: execute processes remotely", 145 | "- PsFile: shows files opened remotely", 146 | "- PsGetSid: display the SID of a computer or a user", 147 | "- PsInfo: list information about a system", 148 | "- PsPing: measure network performance", 149 | "- PsKill: kill processes by name or process ID", 150 | "- PsList: list detailed information about processes", 151 | "- PsLoggedOn: see who's logged on locally and via resource sharing (full source is included)", 152 | "- PsLogList: dump event log records", 153 | "- PsPasswd: changes account passwords", 154 | "- PsService: view and control services", 155 | "- PsShutdown: shuts down and optionally reboots a computer", 156 | "- PsSuspend: suspends processes" 157 | ] 158 | } 159 | -------------------------------------------------------------------------------- /bucket/rammap.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.61", 3 | "description": "An advanced physical memory usage analysis utility that presents usage information in different ways on its several different tabs.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/rammap", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/RAMMap.zip", 10 | "hash": "691fa6a7e43babc26e37f9d65a74e7e1ea17eb3d4440141aa7eab6cd5b4c39a9", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "RAMMap64.exe", 16 | "RAMMap" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "RAMMap64.exe", 22 | "SysInternals/RAMMap", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "RAMMap.exe", 29 | "shortcuts": [ 30 | [ 31 | "RAMMap.exe", 32 | "SysInternals/RAMMap", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "RAMMap64a.exe", 41 | "RAMMap" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "RAMMap64a.exe", 47 | "SysInternals/RAMMap", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/rammap.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/RAMMap.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/rdcman.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.1", 3 | "description": "Remote Desktop Connection Manager", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/rdcman", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/RDCMan.zip", 10 | "hash": "fb0d563accc0bc23ce7a9a20e62cc5859c3b3f2fa0f2de3ce7dc23ad9ca2001d", 11 | "bin": "RDCMan.exe", 12 | "shortcuts": [ 13 | [ 14 | "RDCMan.exe", 15 | "SysInternals/RDCMan" 16 | ] 17 | ], 18 | "checkver": { 19 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/rdcman.md", 20 | "regex": "#.*?v([\\d.]+)" 21 | }, 22 | "autoupdate": { 23 | "url": "https://download.sysinternals.com/files/RDCMan.zip" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /bucket/regdelnull.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.11", 3 | "description": "Scan for and delete Registry keys that contain embedded null-characters that are otherwise undeleteable by standard Registry-editing tools.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/regdelnull", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Regdelnull.zip", 10 | "hash": "c8eede7452ece5b41b5ebb2061e162854ac9a51dd7f5e7cfd84b943834433dae", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "RegDelNull64.exe", 16 | "RegDelNull" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "RegDelNull.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "RegDelNull64a.exe", 27 | "RegDelNull" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/regdelnull.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Regdelnull.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/regjump.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.11", 3 | "description": "Jump to the registry path you specify in Regedit.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/regjump", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/regjump.zip", 10 | "hash": "594042e7186ed92a260dbc7ddf708829ee42f59906a399f2c821839f3f7ac375", 11 | "bin": "regjump.exe", 12 | "checkver": { 13 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/regjump.md", 14 | "regex": "#.*?v([\\d.]+)" 15 | }, 16 | "autoupdate": { 17 | "url": "https://download.sysinternals.com/files/regjump.zip" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /bucket/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.2", 3 | "description": "View the registry space usage for the specified registry key.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/ru", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/RU.zip", 10 | "hash": "14ff3824edd2a4b7ca827a8f52142b0f08b7136e061917734dd7465e56dac666", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "ru64.exe", 16 | "ru" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "ru.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "ru64a.exe", 27 | "ru" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/ru.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/RU.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/sdelete.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.05", 3 | "description": "Securely overwrite your sensitive files and cleanse your free space of previously deleted files using this DoD-compliant secure delete program.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/sdelete", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/SDelete.zip", 10 | "hash": "197921ca6f32b532ff4ae161e862079f151a21280960375437f322903aee7fe7", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "sdelete64.exe", 16 | "sdelete" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "sdelete.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "sdelete64a.exe", 27 | "sdelete" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/sdelete.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/SDelete.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/shareenum.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.61", 3 | "description": "Scan file shares on your network and view their security settings to close security holes.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/shareenum", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/ShareEnum.zip", 10 | "hash": "7f88cabcf12a502e8242d5d1d899ee6d1ddec6642e56cbd6511a698827cbfcba", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "ShareEnum64.exe", 16 | "ShareEnum" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "ShareEnum64.exe", 22 | "SysInternals/ShareEnum", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "ShareEnum.exe", 29 | "shortcuts": [ 30 | [ 31 | "ShareEnum.exe", 32 | "SysInternals/ShareEnum", 33 | "/accepteula" 34 | ] 35 | ] 36 | } 37 | }, 38 | "checkver": { 39 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/shareenum.md", 40 | "regex": "#.*?v([\\d.]+)" 41 | }, 42 | "autoupdate": { 43 | "url": "https://download.sysinternals.com/files/ShareEnum.zip" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /bucket/shellrunas.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.02", 3 | "description": "Launch programs as a different user via a convenient shell context-menu entry.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/shellrunas", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/ShellRunas.zip", 10 | "hash": "27170866b14e7f5e3814328fc72433bb77c9cf5f90cae94ec5ba104ce0bbae57", 11 | "bin": "ShellRunas.exe", 12 | "shortcuts": [ 13 | [ 14 | "ShellRunas.exe", 15 | "SysInternals/ShellRunas", 16 | "/accepteula" 17 | ] 18 | ], 19 | "checkver": { 20 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/shellrunas.md", 21 | "regex": "#.*?v([\\d.]+)" 22 | }, 23 | "autoupdate": { 24 | "url": "https://download.sysinternals.com/files/ShellRunas.zip" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /bucket/sigcheck.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.90", 3 | "description": "Dump file version information and verify that images on your system are digitally signed.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/sigcheck", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Sigcheck.zip", 10 | "hash": "96efa256749fde2ef157baee9677e417047a0d77325ad97ca800fa10c4bf0dbf", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "sigcheck64.exe", 16 | "sigcheck" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "sigcheck.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "sigcheck64a.exe", 27 | "sigcheck" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/sigcheck.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Sigcheck.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/streams.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.6", 3 | "description": "Reveal NTFS alternate streams.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/streams", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Streams.zip", 10 | "hash": "9eb0dc6e03bd139a850bdd48c0915276801c0d0ceba21ec1831799351e2268fc", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "streams64.exe", 16 | "streams" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "streams.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "streams64a.exe", 27 | "streams" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/streams.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Streams.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/strings.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.54", 3 | "description": "Search for ANSI and UNICODE strings in binary images.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/strings", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Strings.zip", 10 | "hash": "b1a0a3dc5f639af1c98ae5832676727646eb3d543640e65e310dff747e733a25", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "strings64.exe", 16 | "strings" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "strings.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "strings64a.exe", 27 | "strings" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/strings.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Strings.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/sync.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.2", 3 | "description": "Flush cached data to disk.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/sync", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Sync.zip", 10 | "hash": "4d9025fb54e4ad07084d544b1e5457fa0827d37a77296e4160f5f4ddd244a3a5", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "sync64.exe", 16 | "sync" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "sync.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "sync64a.exe", 27 | "sync" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/sync.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Sync.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/sysinternals-suite.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.05.05", 3 | "description": "A set of utilities to manage, diagnose, troubleshoot, and monitor a Windows environment.", 4 | "homepage": "https://learn.microsoft.com/sysinternals", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "architecture": { 10 | "64bit": { 11 | "url": "https://download.sysinternals.com/files/SysinternalsSuite.zip", 12 | "hash": "32c055470cecf00d368b6cbcddd7575a9540440e6a1ed498e6261feb0ce18acb", 13 | "bin": [ 14 | [ 15 | "accesschk64.exe", 16 | "accesschk" 17 | ], 18 | "AccessEnum.exe", 19 | [ 20 | "ADExplorer64.exe", 21 | "ADExplorer" 22 | ], 23 | [ 24 | "ADInsight64.exe", 25 | "ADInsight" 26 | ], 27 | [ 28 | "adrestore64.exe", 29 | "adrestore" 30 | ], 31 | [ 32 | "Autologon64.exe", 33 | "Autologon" 34 | ], 35 | [ 36 | "Autoruns64.exe", 37 | "Autoruns" 38 | ], 39 | [ 40 | "autorunsc64.exe", 41 | "autorunsc" 42 | ], 43 | [ 44 | "Bginfo64.exe", 45 | "Bginfo" 46 | ], 47 | [ 48 | "Cacheset64.exe", 49 | "Cacheset" 50 | ], 51 | [ 52 | "Clockres64.exe", 53 | "Clockres" 54 | ], 55 | [ 56 | "Contig64.exe", 57 | "Contig" 58 | ], 59 | [ 60 | "Coreinfo64.exe", 61 | "Coreinfo" 62 | ], 63 | [ 64 | "CPUSTRES64.exe", 65 | "CPUSTRES" 66 | ], 67 | [ 68 | "dbgview64.exe", 69 | "Dbgview" 70 | ], 71 | [ 72 | "Desktops64.exe", 73 | "Desktops" 74 | ], 75 | [ 76 | "disk2vhd64.exe", 77 | "disk2vhd" 78 | ], 79 | [ 80 | "diskext64.exe", 81 | "diskext" 82 | ], 83 | [ 84 | "Diskmon64.exe", 85 | "Diskmon" 86 | ], 87 | [ 88 | "DiskView64.exe", 89 | "DiskView" 90 | ], 91 | [ 92 | "du64.exe", 93 | "du" 94 | ], 95 | "efsdump.exe", 96 | [ 97 | "FindLinks64.exe", 98 | "FindLinks" 99 | ], 100 | [ 101 | "handle64.exe", 102 | "handle" 103 | ], 104 | [ 105 | "hex2dec64.exe", 106 | "hex2dec" 107 | ], 108 | [ 109 | "junction64.exe", 110 | "junction" 111 | ], 112 | "ldmdump.exe", 113 | [ 114 | "Listdlls64.exe", 115 | "Listdlls" 116 | ], 117 | [ 118 | "livekd64.exe", 119 | "livekd" 120 | ], 121 | [ 122 | "LoadOrd64.exe", 123 | "LoadOrd" 124 | ], 125 | [ 126 | "LoadOrdC64.exe", 127 | "LoadOrdC" 128 | ], 129 | [ 130 | "logonsessions64.exe", 131 | "logonsessions" 132 | ], 133 | [ 134 | "movefile64.exe", 135 | "movefile" 136 | ], 137 | [ 138 | "notmyfault64.exe", 139 | "notmyfault" 140 | ], 141 | [ 142 | "notmyfaultc64.exe", 143 | "notmyfaultc" 144 | ], 145 | [ 146 | "ntfsinfo64.exe", 147 | "ntfsinfo" 148 | ], 149 | [ 150 | "pendmoves64.exe", 151 | "pendmoves" 152 | ], 153 | [ 154 | "pipelist64.exe", 155 | "pipelist" 156 | ], 157 | "portmon.exe", 158 | [ 159 | "procdump64.exe", 160 | "procdump" 161 | ], 162 | [ 163 | "procexp64.exe", 164 | "procexp" 165 | ], 166 | [ 167 | "Procmon64.exe", 168 | "Procmon" 169 | ], 170 | [ 171 | "PsExec64.exe", 172 | "PsExec" 173 | ], 174 | [ 175 | "psfile64.exe", 176 | "psfile" 177 | ], 178 | [ 179 | "PsGetsid64.exe", 180 | "PsGetsid" 181 | ], 182 | [ 183 | "PsInfo64.exe", 184 | "PsInfo" 185 | ], 186 | [ 187 | "pskill64.exe", 188 | "pskill" 189 | ], 190 | [ 191 | "pslist64.exe", 192 | "pslist" 193 | ], 194 | [ 195 | "PsLoggedon64.exe", 196 | "PsLoggedon" 197 | ], 198 | [ 199 | "psloglist64.exe", 200 | "psloglist" 201 | ], 202 | [ 203 | "pspasswd64.exe", 204 | "pspasswd" 205 | ], 206 | [ 207 | "psping64.exe", 208 | "psping" 209 | ], 210 | [ 211 | "PsService64.exe", 212 | "PsService" 213 | ], 214 | [ 215 | "psshutdown64.exe", 216 | "psshutdown" 217 | ], 218 | [ 219 | "pssuspend64.exe", 220 | "pssuspend" 221 | ], 222 | [ 223 | "RAMMap64.exe", 224 | "RAMMap" 225 | ], 226 | "RDCMan.exe", 227 | [ 228 | "RegDelNull64.exe", 229 | "RegDelNull" 230 | ], 231 | "regjump.exe", 232 | [ 233 | "ru64.exe", 234 | "ru" 235 | ], 236 | [ 237 | "sdelete64.exe", 238 | "sdelete" 239 | ], 240 | [ 241 | "ShareEnum64.exe", 242 | "ShareEnum" 243 | ], 244 | "ShellRunas.exe", 245 | [ 246 | "sigcheck64.exe", 247 | "sigcheck" 248 | ], 249 | [ 250 | "streams64.exe", 251 | "streams" 252 | ], 253 | [ 254 | "strings64.exe", 255 | "strings" 256 | ], 257 | [ 258 | "sync64.exe", 259 | "sync" 260 | ], 261 | [ 262 | "Sysmon64.exe", 263 | "Sysmon" 264 | ], 265 | [ 266 | "tcpvcon64.exe", 267 | "tcpvcon" 268 | ], 269 | [ 270 | "tcpview64.exe", 271 | "tcpview" 272 | ], 273 | [ 274 | "Testlimit64.exe", 275 | "Testlimit" 276 | ], 277 | [ 278 | "vmmap64.exe", 279 | "vmmap" 280 | ], 281 | [ 282 | "Volumeid64.exe", 283 | "Volumeid" 284 | ], 285 | [ 286 | "whois64.exe", 287 | "whois" 288 | ], 289 | [ 290 | "Winobj64.exe", 291 | "Winobj" 292 | ], 293 | [ 294 | "ZoomIt64.exe", 295 | "ZoomIt" 296 | ] 297 | ], 298 | "shortcuts": [ 299 | [ 300 | "AccessEnum.exe", 301 | "SysInternals/AccessEnum - View accesses to directories, files and registry keys", 302 | "/accepteula" 303 | ], 304 | [ 305 | "AdExplorer64.exe", 306 | "SysInternals/ADExplorer - Active Directory viewer and editor", 307 | "/accepteula" 308 | ], 309 | [ 310 | "AdInsight64.exe", 311 | "SysInternals/ADInsight - An LDAP real-time monitoring tool", 312 | "/accepteula" 313 | ], 314 | [ 315 | "Autologon64.exe", 316 | "SysInternals/Autologon - Bypass password screen during logon", 317 | "/accepteula" 318 | ], 319 | [ 320 | "autoruns64.exe", 321 | "SysInternals/Autoruns - View startup programs and processes" 322 | ], 323 | [ 324 | "Bginfo64.exe", 325 | "SysInternals/BGInfo - Wallpaper text configurator", 326 | "/accepteula" 327 | ], 328 | [ 329 | "Cacheset64.exe", 330 | "SysInternals/CacheSet - Control the Cache Manager's working set size", 331 | "/accepteula" 332 | ], 333 | [ 334 | "CPUSTRES64.EXE", 335 | "SysInternals/CPU Stress - Simulate CPU activity by running up to 64 threads in a tight loop", 336 | "/accepteula" 337 | ], 338 | [ 339 | "Dbgview64.exe", 340 | "SysInternals/DebugView - View OutputDebugString and DbgPrint output", 341 | "/accepteula" 342 | ], 343 | [ 344 | "Desktops64.exe", 345 | "SysInternals/Desktops - Create up to four virtual desktops", 346 | "/accepteula" 347 | ], 348 | [ 349 | "Disk2vhd64.exe", 350 | "SysInternals/Disk2vhd - Create VHD files from online disk", 351 | "/accepteula" 352 | ], 353 | [ 354 | "Diskmon64.exe", 355 | "SysInternals/DiskMon - Disk activity monitor", 356 | "/accepteula" 357 | ], 358 | [ 359 | "DiskView64.exe", 360 | "SysInternals/DiskView - Graphical disk sector utility", 361 | "/accepteula" 362 | ], 363 | [ 364 | "LoadOrd64.exe", 365 | "SysInternals/LoadOrder - See the order in which devices are loaded", 366 | "/accepteula" 367 | ], 368 | [ 369 | "NotMyFault64.exe", 370 | "SysInternals/NotMyFault - Crash, hang, and cause kernel memory leaks", 371 | "/accepteula" 372 | ], 373 | [ 374 | "portmon.exe", 375 | "SysInternals/PortMon - Serial and parallel port activity monitor", 376 | "/accepteula" 377 | ], 378 | [ 379 | "procexp64.exe", 380 | "SysInternals/ProcessExplorer - Enhanced Task Manager", 381 | "/accepteula" 382 | ], 383 | [ 384 | "Procmon64.exe", 385 | "SysInternals/ProcessMonitor - Monitor file system, registry, process, thread and DLL activity", 386 | "/accepteula" 387 | ], 388 | [ 389 | "RAMMap64.exe", 390 | "SysInternals/RamMap - Graphical display of memory usage", 391 | "/accepteula" 392 | ], 393 | [ 394 | "RDCMan.exe", 395 | "SysInternals/RDCMan - Remote Desktop Connection Manager" 396 | ], 397 | [ 398 | "ShareEnum64.exe", 399 | "SysInternals/ShareEnum - View network shares", 400 | "/accepteula" 401 | ], 402 | [ 403 | "ShellRunas.exe", 404 | "SysInternals/ShellRunas - Launching programs under different accounts", 405 | "/accepteula" 406 | ], 407 | [ 408 | "tcpview64.exe", 409 | "SysInternals/TCPView - List TCP UDP endpoints", 410 | "/accepteula" 411 | ], 412 | [ 413 | "vmmap64.exe", 414 | "SysInternals/VMMap - View Virtual and Physical Memory", 415 | "/accepteula" 416 | ], 417 | [ 418 | "Winobj64.exe", 419 | "SysInternals/WinObj - Object Manager namespace viewer", 420 | "/accepteula" 421 | ], 422 | [ 423 | "ZoomIt64.exe", 424 | "SysInternals/ZoomIt - Screen magnifier for zooming and drawing on the screen", 425 | "/accepteula" 426 | ] 427 | ] 428 | }, 429 | "32bit": { 430 | "url": "https://download.sysinternals.com/files/SysinternalsSuite.zip", 431 | "hash": "32c055470cecf00d368b6cbcddd7575a9540440e6a1ed498e6261feb0ce18acb", 432 | "bin": [ 433 | "accesschk.exe", 434 | "AccessEnum.exe", 435 | "ADExplorer.exe", 436 | "ADInsight.exe", 437 | "adrestore.exe", 438 | "Autologon.exe", 439 | "Autoruns.exe", 440 | "autorunsc.exe", 441 | "Bginfo.exe", 442 | "Cacheset.exe", 443 | "Clockres.exe", 444 | "Contig.exe", 445 | "Coreinfo.exe", 446 | "CPUSTRES.EXE", 447 | "Dbgview.exe", 448 | "Desktops.exe", 449 | "disk2vhd.exe", 450 | "diskext.exe", 451 | "Diskmon.exe", 452 | "DiskView.exe", 453 | "du.exe", 454 | "efsdump.exe", 455 | "FindLinks.exe", 456 | "handle.exe", 457 | "hex2dec.exe", 458 | "junction.exe", 459 | "ldmdump.exe", 460 | "Listdlls.exe", 461 | "livekd.exe", 462 | "LoadOrd.exe", 463 | "LoadOrdC.exe", 464 | "logonsessions.exe", 465 | "movefile.exe", 466 | "notmyfault.exe", 467 | "notmyfaultc.exe", 468 | "ntfsinfo.exe", 469 | "pendmoves.exe", 470 | "pipelist.exe", 471 | "portmon.exe", 472 | "procdump.exe", 473 | "procexp.exe", 474 | "Procmon.exe", 475 | "PsExec.exe", 476 | "psfile.exe", 477 | "PsGetsid.exe", 478 | "PsInfo.exe", 479 | "pskill.exe", 480 | "pslist.exe", 481 | "PsLoggedon.exe", 482 | "psloglist.exe", 483 | "pspasswd.exe", 484 | "psping.exe", 485 | "PsService.exe", 486 | "psshutdown.exe", 487 | "pssuspend.exe", 488 | "RAMMap.exe", 489 | "RDCMan.exe", 490 | "RegDelNull.exe", 491 | "regjump.exe", 492 | "ru.exe", 493 | "sdelete.exe", 494 | "ShareEnum.exe", 495 | "ShellRunas.exe", 496 | "sigcheck.exe", 497 | "streams.exe", 498 | "strings.exe", 499 | "sync.exe", 500 | "Sysmon.exe", 501 | "tcpvcon.exe", 502 | "tcpview.exe", 503 | "Testlimit.exe", 504 | "vmmap.exe", 505 | "Volumeid.exe", 506 | "whois.exe", 507 | "Winobj.exe", 508 | "ZoomIt.exe" 509 | ], 510 | "shortcuts": [ 511 | [ 512 | "AccessEnum.exe", 513 | "SysInternals/AccessEnum - View accesses to directories, files and registry keys", 514 | "/accepteula" 515 | ], 516 | [ 517 | "AdExplorer.exe", 518 | "SysInternals/ADExplorer - Active Directory viewer and editor", 519 | "/accepteula" 520 | ], 521 | [ 522 | "AdInsight.exe", 523 | "SysInternals/ADInsight - An LDAP real-time monitoring tool", 524 | "/accepteula" 525 | ], 526 | [ 527 | "Autologon.exe", 528 | "SysInternals/Autologon - Bypass password screen during logon", 529 | "/accepteula" 530 | ], 531 | [ 532 | "autoruns.exe", 533 | "SysInternals/Autoruns - View startup programs and processes" 534 | ], 535 | [ 536 | "Bginfo.exe", 537 | "SysInternals/BGInfo - Wallpaper text configurator", 538 | "/accepteula" 539 | ], 540 | [ 541 | "Cacheset.exe", 542 | "SysInternals/CacheSet - Control the Cache Manager's working set size", 543 | "/accepteula" 544 | ], 545 | [ 546 | "CPUSTRES.EXE", 547 | "SysInternals/CPU Stress - Simulate CPU activity by running up to 64 threads in a tight loop", 548 | "/accepteula" 549 | ], 550 | [ 551 | "Dbgview.exe", 552 | "SysInternals/DebugView - View OutputDebugString and DbgPrint output", 553 | "/accepteula" 554 | ], 555 | [ 556 | "Desktops.exe", 557 | "SysInternals/Desktops - Create up to four virtual desktops", 558 | "/accepteula" 559 | ], 560 | [ 561 | "Disk2vhd.exe", 562 | "SysInternals/Disk2vhd - Create VHD files from online disk", 563 | "/accepteula" 564 | ], 565 | [ 566 | "Diskmon.exe", 567 | "SysInternals/DiskMon - Disk activity monitor", 568 | "/accepteula" 569 | ], 570 | [ 571 | "DiskView.exe", 572 | "SysInternals/DiskView - Graphical disk sector utility", 573 | "/accepteula" 574 | ], 575 | [ 576 | "LoadOrd.exe", 577 | "SysInternals/LoadOrder - See the order in which devices are loaded", 578 | "/accepteula" 579 | ], 580 | [ 581 | "NotMyFault.exe", 582 | "SysInternals/NotMyFault - Crash, hang, and cause kernel memory leaks", 583 | "/accepteula" 584 | ], 585 | [ 586 | "portmon.exe", 587 | "SysInternals/PortMon - Serial and parallel port activity monitor", 588 | "/accepteula" 589 | ], 590 | [ 591 | "procexp.exe", 592 | "SysInternals/ProcessExplorer - Enhanced Task Manager", 593 | "/accepteula" 594 | ], 595 | [ 596 | "Procmon.exe", 597 | "SysInternals/ProcessMonitor - Monitor file system, registry, process, thread and DLL activity", 598 | "/accepteula" 599 | ], 600 | [ 601 | "RAMMap.exe", 602 | "SysInternals/RamMap - Graphical display of memory usage", 603 | "/accepteula" 604 | ], 605 | [ 606 | "RDCMan.exe", 607 | "SysInternals/RDCMan - Remote Desktop Connection Manager" 608 | ], 609 | [ 610 | "ShareEnum.exe", 611 | "SysInternals/ShareEnum - View network shares", 612 | "/accepteula" 613 | ], 614 | [ 615 | "ShellRunas.exe", 616 | "SysInternals/ShellRunas - Launching programs under different accounts", 617 | "/accepteula" 618 | ], 619 | [ 620 | "tcpview.exe", 621 | "SysInternals/TCPView - List TCP UDP endpoints", 622 | "/accepteula" 623 | ], 624 | [ 625 | "vmmap.exe", 626 | "SysInternals/VMMap - View Virtual and Physical Memory", 627 | "/accepteula" 628 | ], 629 | [ 630 | "Winobj.exe", 631 | "SysInternals/WinObj - Object Manager namespace viewer", 632 | "/accepteula" 633 | ], 634 | [ 635 | "ZoomIt.exe", 636 | "SysInternals/ZoomIt - Screen magnifier for zooming and drawing on the screen", 637 | "/accepteula" 638 | ] 639 | ] 640 | }, 641 | "arm64": { 642 | "url": "https://download.sysinternals.com/files/SysinternalsSuite-ARM64.zip", 643 | "hash": "0c1148c56780daa15a65aacf8455736595aa3687f879971138fbe89ecd185074", 644 | "bin": [ 645 | [ 646 | "accesschk64a.exe", 647 | "accesschk" 648 | ], 649 | [ 650 | "ADExplorer64a.exe", 651 | "ADExplorer" 652 | ], 653 | [ 654 | "ADInsight64a.exe", 655 | "ADInsight" 656 | ], 657 | [ 658 | "adrestore64a.exe", 659 | "adrestore" 660 | ], 661 | [ 662 | "Autologon64a.exe", 663 | "Autologon" 664 | ], 665 | [ 666 | "Autoruns64a.exe", 667 | "Autoruns" 668 | ], 669 | [ 670 | "autorunsc64a.exe", 671 | "autorunsc" 672 | ], 673 | [ 674 | "Clockres64a.exe", 675 | "Clockres" 676 | ], 677 | [ 678 | "Contig64a.exe", 679 | "Contig" 680 | ], 681 | [ 682 | "Coreinfo64a.exe", 683 | "Coreinfo" 684 | ], 685 | [ 686 | "Dbgview64a.exe", 687 | "Dbgview" 688 | ], 689 | [ 690 | "disk2vhd64a.exe", 691 | "disk2vhd" 692 | ], 693 | [ 694 | "diskext64a.exe", 695 | "diskext" 696 | ], 697 | [ 698 | "DiskView64a.exe", 699 | "DiskView" 700 | ], 701 | [ 702 | "du64a.exe", 703 | "du" 704 | ], 705 | [ 706 | "FindLinks64a.exe", 707 | "FindLinks" 708 | ], 709 | [ 710 | "handle64a.exe", 711 | "handle" 712 | ], 713 | [ 714 | "hex2dec64a.exe", 715 | "hex2dec" 716 | ], 717 | [ 718 | "junction64a.exe", 719 | "junction" 720 | ], 721 | [ 722 | "LoadOrd64a.exe", 723 | "LoadOrd" 724 | ], 725 | [ 726 | "LoadOrdC64a.exe", 727 | "LoadOrdC" 728 | ], 729 | [ 730 | "logonsessions64a.exe", 731 | "logonsessions" 732 | ], 733 | [ 734 | "movefile64a.exe", 735 | "movefile" 736 | ], 737 | [ 738 | "notmyfault64a.exe", 739 | "notmyfault" 740 | ], 741 | [ 742 | "notmyfaultc64a.exe", 743 | "notmyfaultc" 744 | ], 745 | [ 746 | "pendmoves64a.exe", 747 | "pendmoves" 748 | ], 749 | [ 750 | "pipelist64a.exe", 751 | "pipelist" 752 | ], 753 | [ 754 | "procdump64a.exe", 755 | "procdump" 756 | ], 757 | [ 758 | "procexp64a.exe", 759 | "procexp" 760 | ], 761 | [ 762 | "Procmon64a.exe", 763 | "Procmon" 764 | ], 765 | [ 766 | "PsExec64a.exe", 767 | "PsExec" 768 | ], 769 | [ 770 | "psfile64a.exe", 771 | "psfile" 772 | ], 773 | [ 774 | "PsGetsid64a.exe", 775 | "PsGetsid" 776 | ], 777 | [ 778 | "PsInfo64a.exe", 779 | "PsInfo" 780 | ], 781 | [ 782 | "pskill64a.exe", 783 | "pskill" 784 | ], 785 | [ 786 | "pslist64a.exe", 787 | "pslist" 788 | ], 789 | [ 790 | "psloglist64a.exe", 791 | "psloglist" 792 | ], 793 | [ 794 | "pspasswd64a.exe", 795 | "pspasswd" 796 | ], 797 | [ 798 | "psping64a.exe", 799 | "psping" 800 | ], 801 | [ 802 | "PsService64a.exe", 803 | "PsService" 804 | ], 805 | [ 806 | "pssuspend64a.exe", 807 | "pssuspend" 808 | ], 809 | [ 810 | "RAMMap64a.exe", 811 | "RAMMap" 812 | ], 813 | [ 814 | "RegDelNull64a.exe", 815 | "RegDelNull" 816 | ], 817 | [ 818 | "ru64a.exe", 819 | "ru" 820 | ], 821 | [ 822 | "sdelete64a.exe", 823 | "sdelete" 824 | ], 825 | [ 826 | "sigcheck64a.exe", 827 | "sigcheck" 828 | ], 829 | [ 830 | "streams64a.exe", 831 | "streams" 832 | ], 833 | [ 834 | "strings64a.exe", 835 | "strings" 836 | ], 837 | [ 838 | "sync64a.exe", 839 | "sync" 840 | ], 841 | [ 842 | "Sysmon64a.exe", 843 | "Sysmon" 844 | ], 845 | [ 846 | "tcpvcon64a.exe", 847 | "tcpvcon" 848 | ], 849 | [ 850 | "tcpview64a.exe", 851 | "tcpview" 852 | ], 853 | [ 854 | "vmmap64a.exe", 855 | "vmmap.exe" 856 | ], 857 | [ 858 | "whois64a.exe", 859 | "whois" 860 | ], 861 | [ 862 | "Winobj64a.exe", 863 | "Winobj" 864 | ], 865 | [ 866 | "ZoomIt64a.exe", 867 | "ZoomIt" 868 | ] 869 | ], 870 | "shortcuts": [ 871 | [ 872 | "AdExplorer64a.exe", 873 | "SysInternals/AdExplorer - Active Directory viewer and editor", 874 | "/accepteula" 875 | ], 876 | [ 877 | "AdInsight64a.exe", 878 | "SysInternals/AdInsight - An LDAP real-time monitoring tool", 879 | "/accepteula" 880 | ], 881 | [ 882 | "Autologon64a.exe", 883 | "SysInternals/Autologon - Bypass password screen during logon", 884 | "/accepteula" 885 | ], 886 | [ 887 | "Autoruns64a.exe", 888 | "SysInternals/Autoruns - View startup programs and processes" 889 | ], 890 | [ 891 | "Dbgview64a.exe", 892 | "SysInternals/DebugView - View OutputDebugString and DbgPrint output", 893 | "/accepteula" 894 | ], 895 | [ 896 | "Disk2vhd64a.exe", 897 | "SysInternals/Disk2vhd - Create VHD files from online disk", 898 | "/accepteula" 899 | ], 900 | [ 901 | "DiskView64a.exe", 902 | "SysInternals/DiskView - Graphical disk sector utility", 903 | "/accepteula" 904 | ], 905 | [ 906 | "LoadOrd64a.EXE", 907 | "SysInternals/LoadOrder - See the order in which devices are loaded", 908 | "/accepteula" 909 | ], 910 | [ 911 | "NotMyFault64a.exe", 912 | "SysInternals/NotMyFault - Crash, hang, and cause kernel memory leaks", 913 | "/accepteula" 914 | ], 915 | [ 916 | "procexp64a.exe", 917 | "SysInternals/Process Explorer - Enhanced Task Manager", 918 | "/accepteula" 919 | ], 920 | [ 921 | "ProcMon64a.exe", 922 | "SysInternals/Process Monitor - Monitor file system, registry, process, thread and DLL activity", 923 | "/accepteula" 924 | ], 925 | [ 926 | "RAMMap64a.exe", 927 | "SysInternals/RamMap - Graphical display of memory usage", 928 | "/accepteula" 929 | ], 930 | [ 931 | "tcpview64a.exe", 932 | "SysInternals/TCPView - List TCP UDP endpoints", 933 | "/accepteula" 934 | ], 935 | [ 936 | "vmmap64a.exe", 937 | "SysInternals/VMMap - View Virtual and Physical Memory", 938 | "/accepteula" 939 | ], 940 | [ 941 | "Winobj64a.exe", 942 | "SysInternals/WinObj - Object Manager namespace viewer", 943 | "/accepteula" 944 | ], 945 | [ 946 | "ZoomIt64a.exe", 947 | "SysInternals/ZoomIt - Screen magnifier for zooming and drawing on the screen", 948 | "/accepteula" 949 | ] 950 | ] 951 | } 952 | }, 953 | "checkver": { 954 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/live/sysinternals/downloads/sysinternals-suite.md", 955 | "regex": "ms.date: (\\d{2})/(\\d{2})/(\\d{4})", 956 | "replace": "${3}.${1}.${2}" 957 | }, 958 | "autoupdate": { 959 | "architecture": { 960 | "64bit": { 961 | "url": "https://download.sysinternals.com/files/SysinternalsSuite.zip" 962 | }, 963 | "32bit": { 964 | "url": "https://download.sysinternals.com/files/SysinternalsSuite.zip" 965 | }, 966 | "arm64": { 967 | "url": "https://download.sysinternals.com/files/SysinternalsSuite-ARM64.zip" 968 | } 969 | } 970 | } 971 | } 972 | -------------------------------------------------------------------------------- /bucket/sysmon.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "15.15", 3 | "description": "Monitors and reports key system activity via the Windows event log.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/sysmon", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Sysmon.zip", 10 | "hash": "0edb284c2157562c15b2eb6f7fb0b3d1752c86dbce782fd4e5dfea89b10e4ba6", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "sysmon64.exe", 16 | "sysmon" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "sysmon.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "sysmon64a.exe", 27 | "sysmon" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/sysmon.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/Sysmon.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/tcpview.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.19", 3 | "description": "Active socket command-line viewer.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/tcpview", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/TCPView.zip", 10 | "hash": "4fc5ceba3e1b27ad95a24df35d094b454ec5f9478e12a8ca2b1b222705b9683b", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "tcpview64.exe", 16 | "tcpview" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "tcpview64.exe", 22 | "SysInternals/TCPView", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "tcpview.exe", 29 | "shortcuts": [ 30 | [ 31 | "tcpview.exe", 32 | "SysInternals/TCPView", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "tcpview64a.exe", 41 | "tcpview" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "tcpview64a.exe", 47 | "SysInternals/TCPView", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/tcpview.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/TCPView.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/testlimit.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "5.24", 3 | "description": "Windows Stress test utility.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/testlimit", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/Testlimit.zip", 10 | "hash": "b29ed0ad273f2399418f14ec40ede0ef247f0b4e0b07f88e78c50317d8df457d", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Testlimit64.exe", 16 | "Testlimit" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "Testlimit.exe" 22 | } 23 | }, 24 | "checkver": { 25 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/testlimit.md", 26 | "regex": "#.*?v([\\d.]+)" 27 | }, 28 | "autoupdate": { 29 | "url": "https://download.sysinternals.com/files/Testlimit.zip" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/vmmap.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.4", 3 | "description": "A process virtual and physical memory analysis utility.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/vmmap", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/VMMap.zip", 10 | "hash": "71c9bb73f1ba63f69096cc5ab11aaad4f1969b060931f19c97f7ca6458ca1c1e", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "vmmap64.exe", 16 | "vmmap" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "vmmap64.exe", 22 | "SysInternals/VMMap", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "vmmap.exe", 29 | "shortcuts": [ 30 | [ 31 | "vmmap.exe", 32 | "SysInternals/VMMap", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "vmmap64a.exe", 41 | "vmmap" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "vmmap64a.exe", 47 | "SysInternals/VMMap", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/vmmap.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/VMMap.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/volumeid.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.1", 3 | "description": "Set Volume ID of FAT or NTFS drives.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/volumeid", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/VolumeId.zip", 10 | "hash": "4b478c68c79300538d8a92538fe07797a6dbda2c444095a3cfafe159103f6c10", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Volumeid64.exe", 16 | "Volumeid" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "Volumeid.exe" 22 | } 23 | }, 24 | "checkver": { 25 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/volumeid.md", 26 | "regex": "#.*?v([\\d.]+)" 27 | }, 28 | "autoupdate": { 29 | "url": "https://download.sysinternals.com/files/VolumeId.zip" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/whois.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.21", 3 | "description": "See who owns an Internet address.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/whois", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/WhoIs.zip", 10 | "hash": "43d82eb09a93c788030b31668a1b578d4953c52875dccf5c5ebc98059fa834a1", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "whois64.exe", 16 | "whois" 17 | ] 18 | ] 19 | }, 20 | "32bit": { 21 | "bin": "whois.exe" 22 | }, 23 | "arm64": { 24 | "bin": [ 25 | [ 26 | "whois64a.exe", 27 | "whois" 28 | ] 29 | ] 30 | } 31 | }, 32 | "checkver": { 33 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/whois.md", 34 | "regex": "#.*?v([\\d.]+)" 35 | }, 36 | "autoupdate": { 37 | "url": "https://download.sysinternals.com/files/WhoIs.zip" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/winobj.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.14", 3 | "description": "The ultimate Object Manager namespace viewer is here.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/winobj", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/WinObj.zip", 10 | "hash": "585c75e0c2fb82fc43d8b986deac305fa3711db8d5f369dd874b66e721e6f5b3", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "Winobj64.exe", 16 | "Winobj" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "winobj64.exe", 22 | "SysInternals/WinObj", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "Winobj.exe", 29 | "shortcuts": [ 30 | [ 31 | "Winobj.exe", 32 | "SysInternals/WinObj", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "Winobj64a.exe", 41 | "Winobj" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "Winobj64a.exe", 47 | "SysInternals/WinObj", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/winobj.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/WinObj.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /bucket/zoomit.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "9.0", 3 | "description": "Presentation utility for zooming and drawing on the screen.", 4 | "homepage": "https://learn.microsoft.com/sysinternals/downloads/ZoomIt", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://learn.microsoft.com/sysinternals/license-terms" 8 | }, 9 | "url": "https://download.sysinternals.com/files/ZoomIt.zip", 10 | "hash": "f56a403e3ba2001b4b25758e933343588973afab5c24e1189d7aedc2d93d0567", 11 | "architecture": { 12 | "64bit": { 13 | "bin": [ 14 | [ 15 | "ZoomIt64.exe", 16 | "ZoomIt" 17 | ] 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "ZoomIt64.exe", 22 | "SysInternals/ZoomIt", 23 | "/accepteula" 24 | ] 25 | ] 26 | }, 27 | "32bit": { 28 | "bin": "ZoomIt.exe", 29 | "shortcuts": [ 30 | [ 31 | "ZoomIt.exe", 32 | "SysInternals/ZoomIt", 33 | "/accepteula" 34 | ] 35 | ] 36 | }, 37 | "arm64": { 38 | "bin": [ 39 | [ 40 | "ZoomIt64a.exe", 41 | "ZoomIt" 42 | ] 43 | ], 44 | "shortcuts": [ 45 | [ 46 | "ZoomIt64a.exe", 47 | "SysInternals/ZoomIt", 48 | "/accepteula" 49 | ] 50 | ] 51 | } 52 | }, 53 | "checkver": { 54 | "url": "https://raw.githubusercontent.com/MicrosoftDocs/sysinternals/main/sysinternals/downloads/zoomit.md", 55 | "regex": "#.*?v([\\d.]+)" 56 | }, 57 | "autoupdate": { 58 | "url": "https://download.sysinternals.com/files/ZoomIt.zip" 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /deprecated/.gitkeep: -------------------------------------------------------------------------------- 1 | # This directory stores all the deprecated JSON manifests, which are not meant to be installed. 2 | # Delete this '.gitkeep' file once this directory has any files. 3 | -------------------------------------------------------------------------------- /scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | # This directory stores helper files like shell scripts, registry entries etc. for installable applications. 2 | # Delete this '.gitkeep' file once this directory has any files. 3 | --------------------------------------------------------------------------------