├── .gitignore
├── .vscode
└── extensions.json
├── bin
├── test.ps1
├── checkver.ps1
├── checkurls.ps1
├── formatjson.ps1
├── missing-checkver.ps1
└── auto-pr.ps1
├── .gitattributes
├── .editorconfig
├── bucket
├── customizeie.json
├── injecteddll.json
├── mmcompview.json
├── remotedesktoppassview.json
├── jrview.json
├── whosip.json
├── securitysoftview.json
├── hotkeyslist.json
├── pstpassword.json
├── javascriptanimatorexpress.json
├── shellmenunew.json
├── winexplorer.json
├── protectedstoragepassview.json
├── timezonesview.json
├── vncpassview.json
├── adapterwatch.json
├── iconsextract.json
├── messenpass.json
├── whoiscl.json
├── whoisthisdomain.json
├── htmldocedit.json
├── metarweather.json
├── quicksetdns.json
├── getnir.json
├── addrview.json
├── runfromprocess.json
├── dotnetresourcesextract.json
├── activexcompatibilitymanager.json
├── windowspasswordrecoverypackage.json
├── iecookiesview.json
├── ipneighborsview.json
├── skypelogview.json
├── bluetoothcl.json
├── altstreamdump.json
├── none.json
├── wirelessnetconsole.json
├── gacview.json
├── wirelessnetview.json
├── exifdataview.json
├── userprofilesview.json
├── madpassext.json
├── socketsniff.json
├── zipinstaller.json
├── folderchangesview.json
├── searchfilterview.json
├── dnslookupview.json
├── operapassview.json
├── pinginfoview.json
├── appcrashview.json
├── diskcountersview.json
├── dnsdataview.json
├── customexplorertoolbar.json
├── ippathtableview.json
├── netrouteview.json
├── usbdrivelog.json
├── winupdateslist.json
├── userassistview.json
├── netresview.json
├── wirelessconnectioninfo.json
├── dumpedid.json
├── shellbagsview.json
├── controlmymonitor.json
├── flashcookiesview.json
├── hostednetworkstarter.json
├── siteshoter.json
├── operacacheview.json
├── networkconnectlog.json
├── iedesignmode.json
├── mylastsearch.json
├── winsockservicesview.json
├── clipboardic.json
├── disksmartview.json
├── recentfilesview.json
├── urlprotocolview.json
├── edgecookiesview.json
├── keyboardstateview.json
├── monitorinfoview.json
├── openwithview.json
├── fastresolver.json
├── wifidiagnosticsview.json
├── bluetoothview.json
├── webcacheimageinfo.json
├── activexhelper.json
├── chromecacheview.json
├── livecontactsview.json
├── mzcacheview.json
├── urlstringgrabber.json
├── foldersreport.json
├── executedprogramslist.json
├── myuninstaller.json
├── regfileexport.json
├── chromepass.json
├── winlogonview.json
├── ipnetinfo.json
├── jumplistsview.json
├── downtester.json
├── fbcacheview.json
├── simplecodegenerator.json
├── ipinfooffline.json
├── netbscanner.json
├── routerpassview.json
├── safarihistoryview.json
├── windeflogview.json
├── batteryhistoryview.json
├── credhistview.json
├── iecacheview.json
├── iepassview.json
├── muicacheview.json
├── usblogview.json
├── networkcounterswatch.json
├── insideclipboard.json
├── batteryinfoview.json
├── chromehistoryview.json
├── netconnectchoose.json
├── skypecontactsview.json
├── firefoxdownloadsview.json
├── safaricacheview.json
├── wifihistoryview.json
├── domainhostingview.json
├── appresourcesusageview.json
├── countrytraceroute.json
├── imagecacheviewer.json
├── runtimeclassesview.json
├── turnedontimesview.json
├── nk2view.json
├── securityquestionsview.json
├── favoritesview.json
├── startuprun.json
├── webbrowserpassview.json
├── webvideocap.json
├── extpassword.json
├── macaddressview.json
├── freespacelogview.json
├── bluetoothlogview.json
├── esedatabaseview.json
├── winfontsview.json
├── lastactivityview.json
├── officeins.json
├── webcamimagesave.json
├── mailpassview.json
├── tcpconnectproblemview.json
├── sysexporter.json
├── currprocess.json
├── wirelesskeydump.json
├── cleanafterme.json
├── shellmenuview.json
├── heapmemview.json
├── offlineregistryview.json
├── regdllview.json
├── driverview.json
├── firmwaretablesview.json
├── dialupass.json
├── tabletextcompare.json
├── gdiview.json
├── regfromapp.json
├── shortcutsman.json
├── mzcookiesview.json
├── mmcsnapinsview.json
├── handlecountersview.json
├── nirext.json
├── webbrowserbookmarksview.json
├── winlister.json
├── deviceioview.json
├── bulletspassview.json
├── bulkfilechanger.json
├── lsasecretsview.json
├── hashmyfiles.json
├── sniffpass.json
├── lsasecretsdump.json
└── rtmpdumphelper.json
└── LICENSE
/.gitignore:
--------------------------------------------------------------------------------
1 | *.sublime-workspace
2 |
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": [
3 | "EditorConfig.EditorConfig",
4 | "ms-vscode.PowerShell"
5 | ]
6 | }
7 |
--------------------------------------------------------------------------------
/bin/test.ps1:
--------------------------------------------------------------------------------
1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
2 | Invoke-Pester "$psscriptroot/.."
3 |
--------------------------------------------------------------------------------
/bin/checkver.ps1:
--------------------------------------------------------------------------------
1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
2 | $checkver = "$env:SCOOP_HOME/bin/checkver.ps1"
3 | $dir = "$psscriptroot/../bucket" # checks the parent dir
4 | Invoke-Expression -command "& '$checkver' -dir '$dir' $($args | ForEach-Object { "$_ " })"
5 |
--------------------------------------------------------------------------------
/bin/checkurls.ps1:
--------------------------------------------------------------------------------
1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
2 | $checkurls = "$env:SCOOP_HOME/bin/checkurls.ps1"
3 | $dir = "$psscriptroot/../bucket" # checks the parent dir
4 | Invoke-Expression -command "& '$checkurls' -dir '$dir' $($args | ForEach-Object { "$_ " })"
5 |
--------------------------------------------------------------------------------
/bin/formatjson.ps1:
--------------------------------------------------------------------------------
1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
2 | $formatjson = "$env:SCOOP_HOME/bin/formatjson.ps1"
3 | $path = "$psscriptroot/../bucket" # checks the parent dir
4 | Invoke-Expression -command "& '$formatjson' -dir '$path' $($args | ForEach-Object { "$_ " })"
5 |
--------------------------------------------------------------------------------
/.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 |
--------------------------------------------------------------------------------
/bin/missing-checkver.ps1:
--------------------------------------------------------------------------------
1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
2 | $missing_checkver = "$env:SCOOP_HOME/bin/missing-checkver.ps1"
3 | $dir = "$psscriptroot/../bucket" # checks the parent dir
4 | Invoke-Expression -command "& '$missing_checkver' -dir '$dir' $($args | ForEach-Object { "$_ " })"
5 |
--------------------------------------------------------------------------------
/.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 | [[Mm]akefile{,.*}]
16 | # TAB-style indentation
17 | indent_style = tab
18 |
--------------------------------------------------------------------------------
/bin/auto-pr.ps1:
--------------------------------------------------------------------------------
1 | param(
2 | # overwrite upstream param
3 | [String]$upstream = "kodybrown/scoop-nirsoft:master"
4 | )
5 |
6 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
7 | $autopr = "$env:SCOOP_HOME/bin/auto-pr.ps1"
8 | $dir = "$psscriptroot/../bucket" # checks the parent dir
9 | Invoke-Expression -command "& '$autopr' -dir '$dir' -upstream $upstream $($args | ForEach-Object { "$_ " })"
10 |
--------------------------------------------------------------------------------
/bucket/customizeie.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/ctie.html",
3 | "checkver": "CustomizeIE v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "The CustomizeIE utility allows you to easily add, edit and delete additional toolbar buttons and menu items in Internet Explorer. (Version 5.0 and above)",
7 | "url": "https://www.nirsoft.net/utils/ctie.zip",
8 | "hash": "d63d1eb8d1728a53a40e58517b55a029335e7b940d07dfd75acb4db1016b5891",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/ctie.zip"
11 | },
12 | "bin": "ctie.exe",
13 | "shortcuts": [
14 | [
15 | "ctie.exe",
16 | "NirSoft\\CustomizeIE - Customize buttons & menus in IE"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/injecteddll.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/injected_dll.html",
3 | "checkver": "InjectedDLL v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "InjectedDLL is a small utility that displays the list of DLLs that are automatically injected on every process in your system.",
7 | "url": "https://www.nirsoft.net/utils/injecteddll.zip",
8 | "hash": "8f601d8d92b4c28b64a756b447157834e510fb8b471210b2881ca810470bc4bb",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/injecteddll.zip"
11 | },
12 | "bin": "InjectedDLL.exe",
13 | "shortcuts": [
14 | [
15 | "InjectedDLL.exe",
16 | "NirSoft\\InjectedDLL - Display the list of injected DLLs"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/mmcompview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/mmview.html",
3 | "checkver": "MMCompView v(\\d+\\.\\d\\d)",
4 | "version": "1.10",
5 | "license": "freeware",
6 | "description": "The MMCompView utility displays the details of all installed multimedia components (Codec and ActiveX filters) and allows you to disable and enable specific components.",
7 | "url": "https://www.nirsoft.net/utils/mmview.zip",
8 | "hash": "8dfcf804a9fe9c0e07893ececb083459c24d64ed7c9d9d35ac40e60d4f55bebe",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/mmview.zip"
11 | },
12 | "bin": "mmview.exe",
13 | "shortcuts": [
14 | [
15 | "mmview.exe",
16 | "NirSoft\\MMCompView - Lists the installed Codec and ActiveX filters"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/remotedesktoppassview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/remote_desktop_password.html",
3 | "checkver": "Remote Desktop PassView v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "Remote Desktop PassView is a small utility that reveals the password stored by Microsoft Remote Desktop Connection utility inside the .rdp files.",
7 | "url": "https://www.nirsoft.net/toolsdownload/rdpv.zip",
8 | "hash": "528de69797c36423a1e6b64fa8b1825f354e6707f2ca3760d81a9f58d69d58bb",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/rdpv.zip"
11 | },
12 | "bin": "rdpv.exe",
13 | "shortcuts": [
14 | [
15 | "rdpv.exe",
16 | "NirSoft\\Remote Desktop PassView - Recover passwords of Microsoft Remote Desktop"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/jrview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/jrview.html",
3 | "checkver": "JRView v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "JRView is a small utility that displays the list of all Java Runtime Environments and Java Development Kits installed on your system, and allows you to run a Java application (.class or .jar file) on the desired Java environment.",
7 | "url": "https://www.nirsoft.net/utils/jrview.zip",
8 | "hash": "ef9bbfbd17b7b9c7215b54b86597c5e345b44904d1ab7b55d1081796453619a1",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/jrview.zip"
11 | },
12 | "bin": "jrview.exe",
13 | "shortcuts": [
14 | [
15 | "jrview.exe",
16 | "NirSoft\\JRView - Displays the installed Java Environments"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/whosip.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/whosip.html",
3 | "checkver": "WhosIP v(\\d+\\.\\d\\d)",
4 | "version": "1.18",
5 | "license": "freeware",
6 | "description": "WhosIP is a simple command-line utility that allows you to easily find all available information about an IP address: The owner of the IP address, the country/state name, IP addresses range, contact information (address, phone, fax, and email), and more.",
7 | "url": "https://www.nirsoft.net/utils/whosip.zip",
8 | "hash": "a84ac36ffd1a6e0d7c28aa00c2d1f27c511443741047dca9977747afba0fe92b",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/whosip.zip"
11 | },
12 | "bin": "whosip.exe",
13 | "shortcuts": [
14 | [
15 | "whosip.exe",
16 | "NirSoft\\WhosIP - get information about an IP address"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/securitysoftview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/security_software_view.html",
3 | "checkver": "SecuritySoftView v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "SecuritySoftView is a simple tool that displays the AntiVirus, AntiSpyware, and Firewall programs that are currently installed on your system and registered with the security center of Windows operating system.",
7 | "url": "https://www.nirsoft.net/utils/securitysoftview.zip",
8 | "hash": "399ab8d877ec11fce4647e9111988d25af512116747ebb0fddf797fa16d4295b",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/securitysoftview.zip"
11 | },
12 | "bin": "SecuritySoftView.exe",
13 | "shortcuts": [
14 | [
15 | "SecuritySoftView.exe",
16 | "NirSoft\\SecuritySoftView"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/hotkeyslist.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/hot_keys_list.html",
3 | "checkver": "HotKeysList v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "HotKeysList is a simple tool for Windows that displays the list of hot keys that are currently registered on your system. You can use this tool to easily determine which hot keys on your system are available to use.",
7 | "url": "https://www.nirsoft.net/utils/hotkeyslist.zip",
8 | "hash": "e20e2c76003f0869788c6e171d252b0a44663ecbe8bc0f321d6eab28a8b11402",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/hotkeyslist.zip"
11 | },
12 | "bin": "HotKeysList.exe",
13 | "shortcuts": [
14 | [
15 | "HotKeysList.exe",
16 | "NirSoft\\HotKeysList - Displays hot keys registered on your system"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/pstpassword.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/pst_password.html",
3 | "checkver": "PstPassword v(\\d+\\.\\d\\d)",
4 | "version": "1.20",
5 | "license": "freeware",
6 | "description": "PstPassword is a small utility that recover lost password of Outlook PST (Personal Folders) file. Works with PST file created by any version of Outlook (Outlook 97 - 2003). The password is recovered instantly.",
7 | "url": "https://www.nirsoft.net/toolsdownload/pstpassword.zip",
8 | "hash": "3e8e3636e7f3bffaad2367237ba0bc94ec3d2f5585726b28c14ccc10a51aa135",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/pstpassword.zip"
11 | },
12 | "bin": "PstPassword.exe",
13 | "shortcuts": [
14 | [
15 | "PstPassword.exe",
16 | "NirSoft\\PstPassword - Recover lost Outlook PST password"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/javascriptanimatorexpress.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/jsae.html",
3 | "checkver": "JavaScript Animator Express v(\\d+\\.\\d\\d)",
4 | "version": "1.10",
5 | "license": "freeware",
6 | "description": "This utility allows you to easily create animation from image files (GIFs and JPGs) on your local drive. The animation is achieved by creating a simple HTML page with JavaScript animation, and running it on your default browser.",
7 | "url": "https://www.nirsoft.net/utils/jsae.zip",
8 | "hash": "2b6e1be03a3b897f25bbc4249e0b39efe368e47ad63d8909c2aaaecfc1f082e1",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/jsae.zip"
11 | },
12 | "bin": "jsae.exe",
13 | "shortcuts": [
14 | [
15 | "jsae.exe",
16 | "NirSoft\\JavaScript Animator Express - Creates Javascript animation"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/shellmenunew.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/shell_menu_new.html",
3 | "checkver": "ShellMenuNew v(\\d+\\.\\d\\d)",
4 | "version": "1.02",
5 | "license": "freeware",
6 | "description": "ShellMenuNew is a small utility that displays the list of all menu items in the 'New' submenu of Windows Explorer. It allows you to easily disable unwanted menu items, so this 'New' submenu will display only the items that you need.",
7 | "url": "https://www.nirsoft.net/utils/shellmenunew.zip",
8 | "hash": "0e5cf7e7f8df686d3d08caa79c251b61eff829e48c5175bd5bd998d433867ab6",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/shellmenunew.zip"
11 | },
12 | "bin": "ShellMenuNew.exe",
13 | "shortcuts": [
14 | [
15 | "ShellMenuNew.exe",
16 | "NirSoft\\ShellMenuNew - Disable_Enable items in Explorer 'New' menu"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/winexplorer.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/winexp.html",
3 | "checkver": "WinExplorer v(\\d+\\.\\d\\d)",
4 | "version": "1.30",
5 | "license": "freeware",
6 | "description": "WinExplorer is a utility that shows all system's windows in hierarchical display. For every window in the hierarchy, you can view its properties, like handle, class name, caption, size, position and more. You can also modify some properties, like Caption and Visible/Enabled.",
7 | "url": "https://www.nirsoft.net/utils/winexp.zip",
8 | "hash": "12403572FCF3676335C59B72887FA2910E616973938630DC34E7B856AAF34075",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/winexp.zip"
11 | },
12 | "bin": "winexp.exe",
13 | "shortcuts": [
14 | [
15 | "winexp.exe",
16 | "NirSoft\\WinExplorer - Shows system windows in hierarchical display"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/protectedstoragepassview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/pspv.html",
3 | "checkver": "Protected Storage PassView v(\\d+\\.\\d\\d)",
4 | "version": "1.63",
5 | "license": "freeware",
6 | "description": "Protected Storage PassView is a small utility that reveals the passwords stored on your computer by Internet Explorer, Outlook Express and MSN Explorer. The passwords are revealed by reading the information from the Protected Storage.",
7 | "url": "https://www.nirsoft.net/toolsdownload/pspv.zip",
8 | "hash": "6abf7774b8778430c2d5bdee5335e42fccbf8ea4b7e27439c98d13a5ca9c8dbe",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/pspv.zip"
11 | },
12 | "bin": "pspv.exe",
13 | "shortcuts": [
14 | [
15 | "pspv.exe",
16 | "NirSoft\\Protected Storage PassView - recovers the Protected Storage passwords"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/timezonesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/time_zones_view.html",
3 | "checkver": "TimeZonesView v(\\d+\\.\\d\\d)",
4 | "version": "1.06",
5 | "license": "freeware",
6 | "description": "TimeZonesView is a simple tool for Windows that displays all world time zones. For every time zone, the following information is displayed: name, description, current date/time in this time zone and date/time that daylight saving time begins and ends.",
7 | "url": "https://www.nirsoft.net/utils/timezonesview.zip",
8 | "hash": "9f3b5abef89b03e291816a51efa96090f31a047e25a2751bd565598717207571",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/timezonesview.zip"
11 | },
12 | "bin": "TimeZonesView.exe",
13 | "shortcuts": [
14 | [
15 | "TimeZonesView.exe",
16 | "NirSoft\\TimeZonesView - Displays all world time zones"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/vncpassview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/vnc_password.html",
3 | "checkver": "VNCPassView v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "VNCPassView is a small utility that recover the passwords stored by the VNC tool. It can recover 2 of passwords: password stored for the current logged-on user (HKEY_CURRENT_USER in the Registry), and password stored for the all users.",
7 | "url": "https://www.nirsoft.net/toolsdownload/vncpassview.zip",
8 | "hash": "a598f49d5b6c06097550952aef7260f226227cf64a982c8fedb605f8f30039b4",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/vncpassview.zip"
11 | },
12 | "bin": "VNCPassView.exe",
13 | "shortcuts": [
14 | [
15 | "VNCPassView.exe",
16 | "NirSoft\\VNCPassView - Recover the passwords stored by the VNC tool"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/adapterwatch.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/awatch.html",
3 | "checkver": "AdapterWatch v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "AdapterWatch displays useful information about your network adapters: IP addresses, Hardware address, WINS servers, DNS servers, MTU value, Number of bytes received or sent, The current transfer speed, and more. In addition, it displays general TCP/IP/UDP/ICMP statistics for your local computer.",
7 | "url": "https://www.nirsoft.net/utils/awatch.zip",
8 | "hash": "cc059ac00160b4bb3a2f6ad1c34017b8d938dfdd85152c137ddffecc7f203d0d",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/awatch.zip"
11 | },
12 | "bin": "awatch.exe",
13 | "shortcuts": [
14 | [
15 | "awatch.exe",
16 | "NirSoft\\AdapterWatch - displays network adapter information"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/iconsextract.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/iconsext.html",
3 | "checkver": "IconsExtract v(\\d+\\.\\d\\d)",
4 | "version": "1.47",
5 | "license": "freeware",
6 | "description": "This utility scans the files and folders on your computer, and extract the icons and cursors stored in EXE, DLL, OCX, CPL, and in other file types. You can save the extracted icons to ICO files (or CUR files for cursors), or copy the image of a single icon into the clipboard.",
7 | "url": "https://www.nirsoft.net/utils/iconsext.zip",
8 | "hash": "97582531dd0176e312f3a8b101e50d02224970aec5030f0e0ff2ac767f572981",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/iconsext.zip"
11 | },
12 | "bin": "iconsext.exe",
13 | "shortcuts": [
14 | [
15 | "iconsext.exe",
16 | "NirSoft\\IconsExtract - Extract icons and cursors from EXE_DLL files"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/messenpass.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/mspass.html",
3 | "checkver": "MessenPass v(\\d+\\.\\d\\d)",
4 | "version": "1.42",
5 | "license": "freeware",
6 | "description": "MessenPass is a password recovery tool that reveals the passwords of the following instant messenger applications: MSN Messenger, Windows Messenger (In Windows XP), Yahoo Messenger, ICQ Lite 4.x/2003, AOL Instant Messenger, AOL Instant Messenger/Netscape 7, Trillian, Miranda, and GAIM.",
7 | "url": "https://www.nirsoft.net/toolsdownload/mspass.zip",
8 | "hash": "7bc1dc7ff89b14da813d57857d0dcff98194211a410c9c3a7a43871fff277a42",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/mspass.zip"
11 | },
12 | "bin": "mspass.exe",
13 | "shortcuts": [
14 | [
15 | "mspass.exe",
16 | "NirSoft\\MessenPass - Recovers instant messenger passwords"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/whoiscl.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/whoiscl.html",
3 | "checkver": "WhoisCL v(\\d+\\.\\d\\d)",
4 | "version": "1.90",
5 | "license": "freeware",
6 | "description": "WhoisCL is a simple command-line utility that allows you to easily get information about a registered domain. It automatically connect to the right WHOIS server, according to the top-level domain name, and retrieve the WHOIS record of the domain. It supports both generic domains and country code domains.",
7 | "url": "https://www.nirsoft.net/utils/whoiscl.zip",
8 | "hash": "cb042f522ca674288655739db24b389defac0d2f05bd5d7e915aefd3068e4d85",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/whoiscl.zip"
11 | },
12 | "bin": "WhoisCL.exe",
13 | "shortcuts": [
14 | [
15 | "WhoisCL.exe",
16 | "NirSoft\\WhoisCL - Get WHOIS record from command-line"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/whoisthisdomain.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/whois_this_domain.html",
3 | "checkver": "WhoisThisDomain v(\\d+\\.\\d\\d)",
4 | "version": "2.46",
5 | "license": "freeware",
6 | "description": "This utility allows you to easily get information about a registered domain. It automatically connect to the right WHOIS server, according to the top-level domain name, and retrieve the WHOIS record of the domain. It support both generic domains and country code domains.",
7 | "url": "https://www.nirsoft.net/utils/whoistd.zip",
8 | "hash": "c24d09c7bfb6ba9008ea38bc09b0e4f30b9c55b27708c54724cf7343b76c46cc",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/whoistd.zip"
11 | },
12 | "bin": "whoistd.exe",
13 | "shortcuts": [
14 | [
15 | "whoistd.exe",
16 | "NirSoft\\WhoisThisDomain - Get information about a registered domain"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/htmldocedit.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/html_doc_edit.html",
3 | "checkver": "HtmlDocEdit v(\\d+\\.\\d\\d)",
4 | "version": "1.02",
5 | "license": "freeware",
6 | "description": "HtmlDocEdit is a simple HTML designer/editor based on the Internet Explorer browser, that allows you to easily edit HTML files without any knowledge in HTML. with HtmlDocEdit you can change the font/color of selected text, add images, add links, add ordered and unordered lists, and more...",
7 | "url": "https://www.nirsoft.net/utils/htmldocedit.zip",
8 | "hash": "eed77808621fa1331ba194b1593bc18ec7a1628601282ff0a5163b02ce945cde",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/htmldocedit.zip"
11 | },
12 | "bin": "HtmlDocEdit.exe",
13 | "shortcuts": [
14 | [
15 | "HtmlDocEdit.exe",
16 | "NirSoft\\HtmlDocEdit - Simple HTML designer_editor"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/metarweather.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/mweather.html",
3 | "checkver": "MetarWeather v(\\d+\\.\\d\\d)",
4 | "version": "1.78",
5 | "license": "freeware",
6 | "description": "The MetarWeather utility decodes METAR weather reports from around the world, and displays them in a simple weather report table. You can save the weather report into a text or HTML files. MetarWeather can decode METAR reports from a text file, or download the latest reports directly from the Internet.",
7 | "url": "https://www.nirsoft.net/utils/mweather.zip",
8 | "hash": "00dfe305eb9e7a0b363e084891030f2639a9a857203028829f2943f4863db657",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/mweather.zip"
11 | },
12 | "bin": "mweather.exe",
13 | "shortcuts": [
14 | [
15 | "mweather.exe",
16 | "NirSoft\\MetarWeather - Decode METAR weather reports"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/quicksetdns.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/quick_set_dns.html",
3 | "checkver": "QuickSetDNS v(\\d+\\.\\d\\d)",
4 | "version": "1.35",
5 | "license": "freeware",
6 | "description": "QuickSetDNS is a simple tool that allows you to easily change the DNS servers that are used for your Internet connection. You can set the desired DNS servers from the user interface, by choosing from a list of DNS servers that you defined, or from command-line, without displaying any user interface.",
7 | "url": "https://www.nirsoft.net/utils/quicksetdns.zip",
8 | "hash": "36e44a30c7bf9158f358604186b2ab4be46c4c2e0da3f97af8df4c06a20461f3",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/quicksetdns.zip"
11 | },
12 | "bin": "QuickSetDNS.exe",
13 | "shortcuts": [
14 | [
15 | "QuickSetDNS.exe",
16 | "NirSoft\\QuickSetDNS - Change the DNS servers"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/getnir.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/get_nir_command_line_tool.html",
3 | "checkver": "GetNir v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "GetNir is a command-line tool for Windows that receives tab-delimited or comma-delimited data from other tools through Standard input (stdin) , finds and extracts the desired values according to the specified filter expression and column names, and then sends these values to the Standard output (stdout).",
7 | "url": "https://www.nirsoft.net/utils/getnir.zip",
8 | "hash": "f50dd73972c8295fb9b58296955cbfdc8c2025992fed83c0c96fd1ce1b71632c",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/getnir.zip"
11 | },
12 | "bin": "GetNir.exe",
13 | "shortcuts": [
14 | [
15 | "GetNir.exe",
16 | "NirSoft\\GetNir - extract values from tab_comma-delimited data"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/addrview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/addrview.html",
3 | "checkver": "AddrView v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "AddrView allows you to parse HTML pages and extract most URL addresses stored in them. AddrView extracts URLs of images (
tag), links to other files ( tag), CSS files, frames, Flash files, and more. You can save the extracted addresses list to text, HTML or XML files, or add these addresses to your Favorities.",
7 | "url": "https://www.nirsoft.net/utils/addrview.zip",
8 | "hash": "806883045b6b510625d05ae965222b80c451a0b18ce30343ec9607cca10d4017",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/addrview.zip"
11 | },
12 | "bin": "AddrView.exe",
13 | "shortcuts": [
14 | [
15 | "AddrView.exe",
16 | "NirSoft\\AddrView - Extract URL addresses from HTML pages"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/runfromprocess.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/run_from_process.html",
3 | "checkver": "RunFromProcess v(\\d+\\.\\d\\d)",
4 | "version": "1.07",
5 | "license": "freeware",
6 | "description": "RunFromProcess is a command-line utility that allows you to run a program from another process that you choose. The program that you run will be executed as a child of the specified process and it'll run with the same user and security context of the specified parent process.",
7 | "url": "https://www.nirsoft.net/utils/runfromprocess.zip",
8 | "hash": "1dfe0d12e325480bd65f06a802abc8bb6b6877eba2d442171614c66e271fc0b5",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/runfromprocess.zip"
11 | },
12 | "bin": "RunFromProcess.exe",
13 | "shortcuts": [
14 | [
15 | "RunFromProcess.exe",
16 | "NirSoft\\RunFromProcess - Run a program from another process"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/dotnetresourcesextract.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/dot_net_resources_extract.html",
3 | "checkver": "DotNetResourcesExtract v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "DotNetResourcesExtract is a small utility that scan dll/exe files of .NET applications, and extract all .NET embedded resources (Bitmaps, Gifs, HTML files, and so on) stored in them into the folder that you specify.",
7 | "url": "https://www.nirsoft.net/utils/dotnetresourcesextract.zip",
8 | "hash": "5375bd9fbb7dd9d84fc2584ccee12280402585b7f9de30fe38fe453019fb3a93",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/dotnetresourcesextract.zip"
11 | },
12 | "bin": "DotNetResourcesExtract.exe",
13 | "shortcuts": [
14 | [
15 | "DotNetResourcesExtract.exe",
16 | "NirSoft\\DotNetResourcesExtract - Extract resources from .NET applications"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/activexcompatibilitymanager.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/acm.html",
3 | "checkver": "ActiveX Compatibility Manager v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "This utility allows you to easily disable/enable ActiveX components on Internet Explorer browser. It disables the desired ActiveX component by setting the \"kill bit\" of the desired CLSID under the following Registry key: HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Internet Explorer\\ActiveX Compatibility",
7 | "url": "https://www.nirsoft.net/utils/acm.zip",
8 | "hash": "f06016105b015a5a3b3e38204cc67cd4e32814cdaaad147cce9ade34313b7bf4",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/acm.zip"
11 | },
12 | "bin": "acm.exe",
13 | "shortcuts": [
14 | [
15 | "acm.exe",
16 | "NirSoft\\ActiveX Compatibility Manager - Disable_enable ActiveX components on IE"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/windowspasswordrecoverypackage.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/password_recovery_tools.html",
3 | "checkver": "Windows Password Recovery Package v(\\d+\\.\\d\\d)",
4 | "version": "3.60",
5 | "license": "freeware",
6 | "description": "A package of password recovery utilities for Windows, including IE PassView to recover the Web passwords of Internet Explorer, Mail PassView to recover passwords of email applications, MessenPass utility to recover passwords of IM applications, and much more...",
7 | "url": "https://www.nirsoft.net/packages/passrecpk.zip",
8 | "hash": "80cba30745ec49ac2f48d5feeb80b00e9fc79a901fc4f3b1a3d5b6b634583cf3",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/packages/passrecpk.zip"
11 | },
12 | "bin": "mspass.exe",
13 | "shortcuts": [
14 | [
15 | "mspass.exe",
16 | "NirSoft\\Windows Password Recovery Package - Password Recovery package for Windows"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/iecookiesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/iecookies.html",
3 | "checkver": "IECookiesView v(\\d+\\.\\d\\d)",
4 | "version": "1.79",
5 | "license": "freeware",
6 | "description": "This utility displays the details of all cookies that Internet Explorer stores on your computer. In addition, it allows you to change the content of the cookies, delete unwanted cookie files, save the cookies into a readable text file, find cookies by specifying the domain name, view the cookies of other users and in other computers, and more...",
7 | "url": "https://www.nirsoft.net/utils/iecv.zip",
8 | "hash": "b6d781e15cafd41e059e1f524996192af5321d9f262a3c5f44ea8cd4fb290baf",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/iecv.zip"
11 | },
12 | "bin": "iecv.exe",
13 | "shortcuts": [
14 | [
15 | "iecv.exe",
16 | "NirSoft\\IECookiesView - Displays the cookies of Internet Explorer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/ipneighborsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/ip_neighbor_table_view.html",
3 | "checkver": "IPNeighborsView v(\\d+\\.\\d\\d)",
4 | "version": "1.02",
5 | "license": "freeware",
6 | "description": "IPNeighborsView is a tool for Windows 10/8/7/Vista that displays the IP neighbor table of your local computer. For every IP neighbor entry, the following information is displayed: IP Address, MAC Address, MAC Address Company, State, State Time, Local Adapter Name, Local Connection Name.",
7 | "url": "https://www.nirsoft.net/utils/ipneighborsview.zip",
8 | "hash": "0ebb265285cffd79c61b8eb3dbea17674db9b8bec475bb47ce19e0fe03af6003",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/ipneighborsview.zip"
11 | },
12 | "bin": "IPNeighborsView.exe",
13 | "shortcuts": [
14 | [
15 | "IPNeighborsView.exe",
16 | "NirSoft\\IPNeighborsView - View the IP neighbor table on Windows"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/skypelogview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/skype_log_view.html",
3 | "checkver": "SkypeLogView v(\\d+\\.\\d\\d)",
4 | "version": "1.55",
5 | "license": "freeware",
6 | "description": "SkypeLogView reads the log files created by Skype application, and displays the details of incoming/outgoing calls, chat messages, and file transfers made by the specified Skype account. You can select one or more items from the logs list, and then copy them to the clipboard, or export them into text/html/csv/xml file.",
7 | "url": "https://www.nirsoft.net/utils/skypelogview.zip",
8 | "hash": "3358e8e5e1a4eaa8ad022f91ae15160e20937e57099e09a3d078bb78dfa3379c",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/skypelogview.zip"
11 | },
12 | "bin": "SkypeLogView.exe",
13 | "shortcuts": [
14 | [
15 | "SkypeLogView.exe",
16 | "NirSoft\\SkypeLogView - View log files created by Skype"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/bluetoothcl.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/bluetoothcl.html",
3 | "checkver": "BluetoothCL v(\\d+\\.\\d\\d)",
4 | "version": "1.07",
5 | "license": "freeware",
6 | "description": "BluetoothCL is a small console application that dumps all current detected bluetooth devices into the standard output. For each Bluetooth device, the following information is displayed: MAC Address, Name, Major Device Type, Minor Device Type, and optionally the company name of the device (if external file of MAC addresses - oui.txt is provided)",
7 | "url": "https://www.nirsoft.net/utils/bluetoothcl.zip",
8 | "hash": "025a4a02527a533299370be128323e4a2443fde0f404b2cf8793b3748c0c531f",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/bluetoothcl.zip"
11 | },
12 | "bin": "BluetoothCL.exe",
13 | "shortcuts": [
14 | [
15 | "BluetoothCL.exe",
16 | "NirSoft\\BluetoothCL - Show bluetooth devices list"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/altstreamdump.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/alternate_stream_dump.html",
3 | "checkver": "AltStreamDump v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "AltStreamDump is a console application (Command Prompt) that dumps the list of NTFS alternate streams found in the current directory. By using a few command-line options, you can also instruct AltStreamDump to displays the alternate streams list of other folders and to scan subfolders in the desired folder depth.",
7 | "url": "https://www.nirsoft.net/utils/altstreamdump.zip",
8 | "hash": "d65d237b0c8c8b2dba51d8784090fe3ded92a5c3e841db3354c3dce3fbeaf905",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/altstreamdump.zip"
11 | },
12 | "bin": "AltStreamDump.exe",
13 | "shortcuts": [
14 | [
15 | "AltStreamDump.exe",
16 | "NirSoft\\AltStreamDump - Dumps the list of NTFS alternate streams"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/none.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/pocket_pc/pocket_asterisk.html",
3 | "checkver": "None v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "PocketAsterisk is a small utility for Pocket PC devices that reveals that passwords stored behind the asterisks ('***') in standard password text-boxes. You can use it to recover the passwords of POP3/IMAP accounts stored by the 'Messaging' application of Pocket PC or to recover any other password that is displayed as asterisks.",
7 | "url": "https://www.nirsoft.net/pocket_pc/pocketasterisk.zip",
8 | "hash": "823acbc7958014ec2999b5b61408f0415a90d428707fe158b3f14db6f8612ebd",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/pocket_pc/pocketasterisk.zip"
11 | },
12 | "bin": "PocketAsterisk.exe",
13 | "shortcuts": [
14 | [
15 | "PocketAsterisk.exe",
16 | "NirSoft\\None - Reveals passwords stored behind the asterisks"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/wirelessnetconsole.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/wireless_net_console.html",
3 | "checkver": "WirelessNetConsole v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "WirelessNetConsole is a small console application that dumps all current detected wireless networks information into the standard output. For each wireless network, the following information is displayed: SSID, Signal Quality in %, PHY types, RSSI, MAC Address, Channel Frequency, and more.",
7 | "url": "https://www.nirsoft.net/utils/wirelessnetconsole.zip",
8 | "hash": "6b365808b7526bcfcee1cf870dd4d0602669695481ed70ed6edb2f4572abb78a",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/wirelessnetconsole.zip"
11 | },
12 | "bin": "WirelessNetConsole.exe",
13 | "shortcuts": [
14 | [
15 | "WirelessNetConsole.exe",
16 | "NirSoft\\WirelessNetConsole - View wireless networks information"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/gacview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/dot_net_tools/gac_viewer.html",
3 | "checkver": "GACView v(\\d+\\.\\d\\d)",
4 | "version": "1.11",
5 | "license": "freeware",
6 | "description": "GACView is an alternative to the standard .NET assembly viewer on Windows Explorer. In addition to the standard columns, GACView displays additional information for each assembly, like modified date, file size, full path of the assembly file, file version, and so on. GACView also allows you to delete an assembly the cannot be uninstalled in the regular way.",
7 | "url": "https://www.nirsoft.net/dot_net_tools/gacview.zip",
8 | "hash": "f8f6b2033681aee70136ca8880197b84b08e119da0518625b42ec38ec6380045",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/dot_net_tools/gacview.zip"
11 | },
12 | "bin": "gacview.exe",
13 | "shortcuts": [
14 | [
15 | "gacview.exe",
16 | "NirSoft\\GACView - .NET assembly viewer alternative"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/wirelessnetview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/wireless_network_view.html",
3 | "checkver": "WirelessNetView v(\\d+\\.\\d\\d)",
4 | "version": "1.75",
5 | "license": "freeware",
6 | "description": "WirelessNetView is a small utility that runs in the background, and monitor the activity of wireless networks around you. For each detected network, it displays the following information: SSID, Last Signal Quality, Average Signal Quality, Detection Counter, Authentication Algorithm, Cipher Algorithm, and more.",
7 | "url": "https://www.nirsoft.net/utils/wirelessnetview.zip",
8 | "hash": "d33aca4977de8dfaaa859813d21fe7d20709f80ace32302891b604fdc0c6ff78",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/wirelessnetview.zip"
11 | },
12 | "bin": "WirelessNetView.exe",
13 | "shortcuts": [
14 | [
15 | "WirelessNetView.exe",
16 | "NirSoft\\WirelessNetView - Monitor the activity of wireless networks"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/exifdataview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/exif_data_view.html",
3 | "checkver": "ExifDataView v(\\d+\\.\\d\\d)",
4 | "version": "1.15",
5 | "license": "freeware",
6 | "description": "ExifDataView is a small utility that reads and displays the Exif data stored inside .jpg image files generated by digital cameras. The EXIF data includes the name of the company created the camera, camera model, the date/time that the photograph was taken, Exposure Time, ISO Speed, GPS information (for digital cameras with GPS), and more.",
7 | "url": "https://www.nirsoft.net/utils/exifdataview.zip",
8 | "hash": "0f45ca559056837401f3934a39db0b74ba24ecfde97dc6bc2e7211f2ae9e7e47",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/exifdataview.zip"
11 | },
12 | "bin": "ExifDataView.exe",
13 | "shortcuts": [
14 | [
15 | "ExifDataView.exe",
16 | "NirSoft\\ExifDataView - Displays Exif data stored inside .jpg files"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/userprofilesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/user_profiles_view.html",
3 | "checkver": "UserProfilesView v(\\d+\\.\\d\\d)",
4 | "version": "1.10",
5 | "license": "freeware",
6 | "description": "UserProfilesView displays the list of all user profiles that you currently have in your system. For each user profile, the following information is displayed: Domain\\User Name, Profile Path, Last Load Time, Registry File Size, User SID, and more. You can save the profiles list into text/xml/html/csv file.",
7 | "url": "https://www.nirsoft.net/utils/userprofilesview.zip",
8 | "hash": "350bbfdd12ca9d8b7ecf59b92410424acf99197f0bd9d8b2451cd7026413e2a4",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/userprofilesview.zip"
11 | },
12 | "bin": "UserProfilesView.exe",
13 | "shortcuts": [
14 | [
15 | "UserProfilesView.exe",
16 | "NirSoft\\UserProfilesView - View user profiles information on your system"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/madpassext.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/microsoft_account_dpapi_password.html",
3 | "checkver": "MadPassExt v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "This tool allows you to decrypt and extract the secret DPAPI password generated for your Microsoft account when using it to log into Windows 10 or Windows 11. After you retrieve this DPAPI password, you can use it to recover passwords encrypted with DPAPI from external hard drive, as long as they were encrypted with the same Microsoft account.",
7 | "url": "https://www.nirsoft.net/utils/madpassext.zip",
8 | "hash": "d20fb5b9af14b0cb025a95575c8e7febe19f19c2dab3a126d186becd29e3a90b",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/madpassext.zip"
11 | },
12 | "bin": "MadPassExt.exe",
13 | "shortcuts": [
14 | [
15 | "MadPassExt.exe",
16 | "NirSoft\\MadPassExt - Microsoft Account DPAPI Password Extractor"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/socketsniff.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/socket_sniffer.html",
3 | "checkver": "SocketSniff v(\\d+\\.\\d\\d)",
4 | "version": "1.11",
5 | "license": "freeware",
6 | "description": "SocketSniff allows you to watch the Windows Sockets (WinSock) activity of the selected process. For each created socket, the following information is displayed: socket handle, socket type, local and remote addresses, local and remote ports, total number of send/receive bytes, and more. You can also watch the content of each send or receive call, in Ascii mode or as Hex Dump.",
7 | "url": "https://www.nirsoft.net/utils/socketsniff.zip",
8 | "hash": "2160d297c21a4758e540ea5291c6d4df4bce74c2dab85647a8a1a875fcf49ccc",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/socketsniff.zip"
11 | },
12 | "bin": "SocketSniff.exe",
13 | "shortcuts": [
14 | [
15 | "SocketSniff.exe",
16 | "NirSoft\\SocketSniff - Windows Sockets (WinSock) Sniffer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/zipinstaller.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/zipinst.html",
3 | "checkver": "ZipInstaller v(\\d+\\.\\d\\d)",
4 | "version": "1.21",
5 | "license": "freeware",
6 | "description": "The ZipInstaller utility installs and uninstalls applications and utilities that do not provide an internal installation program. It automatically extracts all files from the Zip file, copies them to the destination folder you select, creates shortcuts in the start menu and in your desktop, and adds an uninstall module to allow you to automatically remove the software in the future.",
7 | "url": "https://www.nirsoft.net/utils/zipinst.zip",
8 | "hash": "5f086a0dc689217026f06111327ae5a7d9baaa250322b84ff9dda2c74f3de788",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/zipinst.zip"
11 | },
12 | "bin": "zipinst.exe",
13 | "shortcuts": [
14 | [
15 | "zipinst.exe",
16 | "NirSoft\\ZipInstaller - Install applications with no install support"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/folderchangesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/folder_changes_view.html",
3 | "checkver": "FolderChangesView v(\\d+\\.\\d\\d)",
4 | "version": "2.36",
5 | "license": "freeware",
6 | "description": "FolderChangesView is a simple tool that monitors the folder or disk drive that you choose and lists every filename that is being modified, created, or deleted while the folder is being monitored. You can use FolderChangesView with any local disk drive or with a remote network share, as long as you have read permission to the selected folder.",
7 | "url": "https://www.nirsoft.net/utils/folderchangesview.zip",
8 | "hash": "b9ddce06e7634340d0ad68ccf318f284edc9c46fbdfd759eade95a7fb82dae63",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/folderchangesview.zip"
11 | },
12 | "bin": "FolderChangesView.exe",
13 | "shortcuts": [
14 | [
15 | "FolderChangesView.exe",
16 | "NirSoft\\FolderChangesView - Monitor folder_drive changes"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/searchfilterview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/search_filter_view.html",
3 | "checkver": "SearchFilterView v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "When you search the content of files with Windows search, it uses the right search IFilter plugin according to the file extension. This utility allows you to easily view the search filters installed on your system and the file extensions that are associated with them, as well as it allows you to easily add or remove file extensions for these filters.",
7 | "url": "https://www.nirsoft.net/utils/searchfilterview.zip",
8 | "hash": "8c55bafdd3e48a8bb8d1c6d7ea755c5fa05f0b37c4499c1de2e96608959f36cb",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/searchfilterview.zip"
11 | },
12 | "bin": "SearchFilterView.exe",
13 | "shortcuts": [
14 | [
15 | "SearchFilterView.exe",
16 | "NirSoft\\SearchFilterView - view the installed search filters"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/dnslookupview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/dns_lookup_view.html",
3 | "checkver": "DNSLookupView v(\\d+\\.\\d\\d)",
4 | "version": "1.12",
5 | "license": "freeware",
6 | "description": "DNSLookupView is a DNS tracing tool for Windows 11/10 that allows you to view the details of every DNS query sent through the DNS Client service of Windows. For every DNS query, the following information is displayed: Host Name, Query Type (A, AAAA, and so on), Query Status (Error or succeeded), Query Result, Query Timestamp, ID and name of the process that requested the DNS lookup.",
7 | "url": "https://www.nirsoft.net/utils/dnslookupview.zip",
8 | "hash": "bd9c559b6d5ee28f6ca5183aba78d6a84e6ca8ddbc86f8f6f590edc4921c296d",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/dnslookupview.zip"
11 | },
12 | "bin": "DNSLookupView.exe",
13 | "shortcuts": [
14 | [
15 | "DNSLookupView.exe",
16 | "NirSoft\\DNSLookupView - DNS Lookup Viewer for Windows 11_10"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/operapassview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/opera_password_recovery.html",
3 | "checkver": "OperaPassView v(\\d+\\.\\d\\d)",
4 | "version": "1.10",
5 | "license": "freeware",
6 | "description": "OperaPassView is a small password recovery tool that decrypts the content of the Opera Web browser password file (wand.dat) and displays the list of all Web site passwords stored in this file. You can easily select one or more passwords in the OperaPassView window, and then copy the passwords list to the clipboard and save it into text/html/csv/xml file.",
7 | "url": "https://www.nirsoft.net/toolsdownload/operapassview.zip",
8 | "hash": "d4b8a1da4bfc923e5025691c4fa6e1e49049786ee554f2ce4bd026e7388c4807",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/operapassview.zip"
11 | },
12 | "bin": "OperaPassView.exe",
13 | "shortcuts": [
14 | [
15 | "OperaPassView.exe",
16 | "NirSoft\\OperaPassView - Recover passwords of Opera Web browser"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/pinginfoview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/multiple_ping_tool.html",
3 | "checkver": "PingInfoView v(\\d+\\.\\d\\d)",
4 | "version": "3.15",
5 | "license": "freeware",
6 | "description": "PingInfoView is a small utility that allows you to easily ping multiple host names and IP addresses, and watch the result in one table. It automatically ping to all hosts every number of seconds that you specify, and displays the number of succeed and failed pings, as well as the average ping time. You can also save the ping result into text/html/xml file, or copy it to the clipboard.",
7 | "url": "https://www.nirsoft.net/utils/pinginfoview.zip",
8 | "hash": "e96fa0a5ad2e5146210cced8abe290e16989e3fee89b9dfc18cb25406ca5d258",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/pinginfoview.zip"
11 | },
12 | "bin": "PingInfoView.exe",
13 | "shortcuts": [
14 | [
15 | "PingInfoView.exe",
16 | "NirSoft\\PingInfoView - ping multiple host names and IP addresses"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/appcrashview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/app_crash_view.html",
3 | "checkver": "AppCrashView v(\\d+\\.\\d\\d)",
4 | "version": "1.35",
5 | "license": "freeware",
6 | "description": "AppCrashView is a small utility for Windows Vista and Windows 7 that displays the details of all application crashes occurred in your system. The crashes information is extracted from the .wer files created by the Windows Error Reporting (WER) component of the operating system every time that a crash is occurred. AppCrashView also allows you to easily save the crashes list to text/csv/html/xml file.",
7 | "url": "https://www.nirsoft.net/utils/appcrashview.zip",
8 | "hash": "76eca5db923e938504d525b8b48a64ab4ad375ced896665dbc543960b07c6054",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/appcrashview.zip"
11 | },
12 | "bin": "AppCrashView.exe",
13 | "shortcuts": [
14 | [
15 | "AppCrashView.exe",
16 | "NirSoft\\AppCrashView - Displays the application crashes list"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/diskcountersview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/disk_counters_view.html",
3 | "checkver": "DiskCountersView v(\\d+\\.\\d\\d)",
4 | "version": "1.30",
5 | "license": "freeware",
6 | "description": "DiskCountersView displays the system counters of each disk drive in your system, including the total number of read/write operations and the total number of read/write bytes. It also displays general drive information, like disk name, partition number, partition location, and so on. You can save the information into text/html/csv/xml file or copy it to the clipboard.",
7 | "url": "https://www.nirsoft.net/utils/diskcountersview.zip",
8 | "hash": "916de66eaee1fed9ce1b337683dc94d3929cf12c53dd4a6d33c4db8470770c0e",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/diskcountersview.zip"
11 | },
12 | "bin": "DiskCountersView.exe",
13 | "shortcuts": [
14 | [
15 | "DiskCountersView.exe",
16 | "NirSoft\\DiskCountersView - Show disk drive read_write counters"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/dnsdataview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/dns_records_viewer.html",
3 | "checkver": "DNSDataView v(\\d+\\.\\d\\d)",
4 | "version": "1.71",
5 | "license": "freeware",
6 | "description": "This utility is a GUI alternative to the NSLookup tool that comes with Windows operating system. It allows you to easily retrieve the DNS records (MX, NS, A, SOA) of the specified domains. You can use the default DNS server of your Internet connection, or use any other DNS server that you specify. After retrieving the DNS records for the desired domains, you can save them into text/xml/html/csv file.",
7 | "url": "https://www.nirsoft.net/utils/dnsdataview.zip",
8 | "hash": "c6e8607093f3100c2a0d45a168e665d38ccae0ade36ac4032ef80142f6a1feb8",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/dnsdataview.zip"
11 | },
12 | "bin": "DNSDataView.exe",
13 | "shortcuts": [
14 | [
15 | "DNSDataView.exe",
16 | "NirSoft\\DNSDataView - Retrieve the DNS records of your domains"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/customexplorertoolbar.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/custom_explorer_toolbar.html",
3 | "checkver": "CustomExplorerToolbar v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "CustomExplorerToolbar is small utility for Windows 7 only, which allows you to easily customize the toolbar of Windows Explorer, and add buttons that were existed in previous versions of Windows, like Copy, Cut, Paste, Select All, and more. This utility also allows you to remove the toolbar buttons that you previously added.",
7 | "url": "https://www.nirsoft.net/utils/customexplorertoolbar.zip",
8 | "hash": "80fff8da356ad971108847f122f821a2e9b2dd098a4b906c74b94f2be24d337e",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/customexplorertoolbar.zip"
11 | },
12 | "bin": "CustomExplorerToolbar.exe",
13 | "shortcuts": [
14 | [
15 | "CustomExplorerToolbar.exe",
16 | "NirSoft\\CustomExplorerToolbar - Customize the Explorer toolbar of Windows 7"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/ippathtableview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/ip_path_table_view.html",
3 | "checkver": "IPPathTableView v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "IPPathTableView is a tool for Windows 11/10/8/7/Vista that displays the IP path table of your local computer. For every IP path entry, the following information is displayed: Source, Destination, Next Hop, MTU, Reachaable (Yes/No), Adapter Name, Connection Name, Link Transmit Speed, Link Receive Speed. The IP path table contains the list of all IP Addresses that your computer connected recently.",
7 | "url": "https://www.nirsoft.net/utils/ippathtableview.zip",
8 | "hash": "99100f18750f661692c3e2767539f89ab9ded4ecb96ca6cbeae5513f6fb33f2b",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/ippathtableview.zip"
11 | },
12 | "bin": "IPPathTableView.exe",
13 | "shortcuts": [
14 | [
15 | "IPPathTableView.exe",
16 | "NirSoft\\IPPathTableView - IP Path Table Viewer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/netrouteview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/network_route_view.html",
3 | "checkver": "NetRouteView v(\\d+\\.\\d\\d)",
4 | "version": "1.40",
5 | "license": "freeware",
6 | "description": "NetRouteView is a GUI alternative to the standard route utility (Route.exe) of Windows operating system. It displays the list of all routes on your current network, including the destination, mask, gateway, interface IP address, metric value, type, protocol, age (in seconds), interface name, and the MAC address. NetRouteView also allows you to easily add new routes, as well as to remove or modify existing static routes.",
7 | "url": "https://www.nirsoft.net/utils/netrouteview.zip",
8 | "hash": "266d4972ef251f950d63f3c5491da99dffceb3c505f7d8118fc9eccdb476101a",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/netrouteview.zip"
11 | },
12 | "bin": "NetRouteView.exe",
13 | "shortcuts": [
14 | [
15 | "NetRouteView.exe",
16 | "NirSoft\\NetRouteView - GUI route utility"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/usbdrivelog.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/usb_drive_log.html",
3 | "checkver": "USBDriveLog v(\\d+\\.\\d\\d)",
4 | "version": "1.13",
5 | "license": "freeware",
6 | "description": "USBDriveLog is a tool for Windows 10 that displays a log of all USB drives plugged to your computer. For every USB drive event, the following information is displayed: Device Model, Revision, Manufacturer, Serial Number, Plug Time, Unplug Time, Device ID, Device Capacity, and more... USBDriveLog allows you to retrieve the information from your local computer, from remote computer on your network, and from external hard drive.",
7 | "url": "https://www.nirsoft.net/utils/usbdrivelog.zip",
8 | "hash": "02ae2777f95c0895a08ab752b1a5830b4c052f679f9144098855fae9ec86d95d",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/usbdrivelog.zip"
11 | },
12 | "bin": "USBDriveLog.exe",
13 | "shortcuts": [
14 | [
15 | "USBDriveLog.exe",
16 | "NirSoft\\USBDriveLog - USB Drive Log For Windows 10"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/winupdateslist.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/wul.html",
3 | "checkver": "WinUpdatesList v(\\d+\\.\\d\\d)",
4 | "version": "1.33",
5 | "license": "freeware",
6 | "description": "WinUpdatesList displays the list of all Windows updates (Service Packs and Hotfixes) installed on your local computer. For hotfix updates, this utility also displays the list of files updated with these hotfixes. In addition, it allows you to instantly open the Web link in Microsoft Web site that provides more information about the selected update, uninstall an update, copy the update information to the clipboard, or save it to text/HTML/XML file.",
7 | "url": "https://www.nirsoft.net/utils/wul.zip",
8 | "hash": "944bfcc87558b7315966542c0b3c82110a4754e222e759f091d0b27eb76fc0a7",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/wul.zip"
11 | },
12 | "bin": "wul.exe",
13 | "shortcuts": [
14 | [
15 | "wul.exe",
16 | "NirSoft\\WinUpdatesList - Displays the list of all Windows updates"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/userassistview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/userassist_view.html",
3 | "checkver": "UserAssistView v(\\d+\\.\\d\\d)",
4 | "version": "1.02",
5 | "license": "freeware",
6 | "description": "This utility decrypt and displays the list of all UserAssist entries stored under HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\UserAssist key in the Registry. The UserAssist key contains information about the exe files and links that you open frequently. you can save the list of UserAssist entries into text/html/xml/csv file, as well as you can delete unwanted items.",
7 | "url": "https://www.nirsoft.net/utils/userassistview.zip",
8 | "hash": "11b75025ac99ad31fa2c27b91ebbdb891fced36ff8b2567b0b76146af88d57d9",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/userassistview.zip"
11 | },
12 | "bin": "UserAssistView.exe",
13 | "shortcuts": [
14 | [
15 | "UserAssistView.exe",
16 | "NirSoft\\UserAssistView - decrypt UserAssist entries in the Registry"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/netresview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/netresview.html",
3 | "checkver": "NetResView v(\\d+\\.\\d\\d)",
4 | "version": "1.27",
5 | "license": "freeware",
6 | "description": "NetResView is a small utility that displays the list of all network resources (computers, disk shares, and printer shares) on your LAN. As opposed to \"My Network Places\" module of Windows, NetResView display all network resources from all domains/workgroups in one screen, and including admin/hidden shares. Also, for each computer, NetResView displays the IP address, the operating system name/version, and the MAC address of the network card.",
7 | "url": "https://www.nirsoft.net/utils/netresview.zip",
8 | "hash": "84ce97effb45314d315ab221482ccbf7237f6942f0c4fac0d3b52fec22c28c15",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/netresview.zip"
11 | },
12 | "bin": "NetResView.exe",
13 | "shortcuts": [
14 | [
15 | "NetResView.exe",
16 | "NirSoft\\NetResView - View network resources on your LAN"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/wirelessconnectioninfo.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/wireless_connection_information.html",
3 | "checkver": "WirelessConnectionInfo v(\\d+\\.\\d\\d)",
4 | "version": "1.20",
5 | "license": "freeware",
6 | "description": "WirelessConnectionInfo is a simple tool for Windows Vista/7/8/2008 that displays general information and statistics about the active wifi connection, including the SSID, BSSID, PHY Type, Signal Quality, Receiving rate, Transmission Rate, Authentication Algorithm, Channel Number, Total number of transmitted/received frames, and more...",
7 | "url": "https://www.nirsoft.net/utils/wirelessconnectioninfo.zip",
8 | "hash": "126aba538a639046e949ad2a4c7228c7365aa17c90a7f71d1ae2f8a9cfbfec92",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/wirelessconnectioninfo.zip"
11 | },
12 | "bin": "WirelessConnectionInfo.exe",
13 | "shortcuts": [
14 | [
15 | "WirelessConnectionInfo.exe",
16 | "NirSoft\\WirelessConnectionInfo - Displays information about wifi connection"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/dumpedid.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/dump_edid.html",
3 | "checkver": "DumpEDID v(\\d+\\.\\d\\d)",
4 | "version": "1.07",
5 | "license": "freeware",
6 | "description": "DumpEDID is a small console application that extract the EDID (\"Extended display identification data\") records from your computer, analyze it, and dump it into the console window. EDID record provide essential information about your monitor: manufacture week/year, monitor manufacturer, monitor model, supported display modes, and so on... You can also get the EDID records of a remote computer, if you login to this computer with administrator rights.",
7 | "url": "https://www.nirsoft.net/utils/dumpedid.zip",
8 | "hash": "1773478ecec2d0e7dcb8d41dd3dd1353e26446a4a798ab294a1ce652a9b84609",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/dumpedid.zip"
11 | },
12 | "bin": "DumpEDID.exe",
13 | "shortcuts": [
14 | [
15 | "DumpEDID.exe",
16 | "NirSoft\\DumpEDID - Dump EDID information into the console window"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/shellbagsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/shell_bags_view.html",
3 | "checkver": "ShellBagsView v(\\d+\\.\\d\\d)",
4 | "version": "1.35",
5 | "license": "freeware",
6 | "description": "Each time that you open a folder in Explorer, Windows automatically save the settings of this folder into the Registry. This utility displays the list of all folder settings saved by Windows. For each folder, the following information is displayed: The date/time that you opened it, the entry number, display mode (Details, Icons, Tiles, and so on...), the last position of the window, and the last size of the window.",
7 | "url": "https://www.nirsoft.net/utils/shellbagsview.zip",
8 | "hash": "d667323a180c19a6ea83e10fdbe4f34d30d66863015099bbae0575a1b851b4da",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/shellbagsview.zip"
11 | },
12 | "bin": "ShellBagsView.exe",
13 | "shortcuts": [
14 | [
15 | "ShellBagsView.exe",
16 | "NirSoft\\ShellBagsView - Displays folder settings saved by Windows"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/controlmymonitor.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/control_my_monitor.html",
3 | "checkver": "ControlMyMonitor v(\\d+\\.\\d\\d)",
4 | "version": "1.38",
5 | "license": "freeware",
6 | "description": "ControlMyMonitor allows you view and modify the settings of your monitor (Also known as 'VCP Features'), like brightness, contrast, sharpness, red/green/blue color balance, and more... You can modify the monitor settings from the GUI and from command-line. You can also export all settings of your monitor into a configuration file and then later load the same configuration back into your monitor.",
7 | "url": "https://www.nirsoft.net/utils/controlmymonitor.zip",
8 | "hash": "e0752096ee7dfd17e6ae91eefaaecff900055ba1462f9c845ce237f18a1d5386",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/controlmymonitor.zip"
11 | },
12 | "bin": "ControlMyMonitor.exe",
13 | "shortcuts": [
14 | [
15 | "ControlMyMonitor.exe",
16 | "NirSoft\\ControlMyMonitor - View and modify the settings of your monitor"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/flashcookiesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/flash_cookies_view.html",
3 | "checkver": "FlashCookiesView v(\\d+\\.\\d\\d)",
4 | "version": "1.15",
5 | "license": "freeware",
6 | "description": "FlashCookiesView is a small utility that displays the list of cookie files created by Flash component (Local Shared Object) in your Web browser. For each cookie file, the lower pane of FlashCookiesView displays the content of the file in readable format or as Hex dump. You can also select one or more cookie files, and then copy them to the clipboard, save them to text/html/xml file or delete them.",
7 | "url": "https://www.nirsoft.net/utils/flashcookiesview.zip",
8 | "hash": "a8217a04b664d055cd137620f8f7585d2dd0c326cf90d4a01383b9e5f154b86e",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/flashcookiesview.zip"
11 | },
12 | "bin": "FlashCookiesView.exe",
13 | "shortcuts": [
14 | [
15 | "FlashCookiesView.exe",
16 | "NirSoft\\FlashCookiesView - View Flash cookies stored in your computer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/hostednetworkstarter.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/wifi_hotspot_starter.html",
3 | "checkver": "HostedNetworkStarter v(\\d+\\.\\d\\d)",
4 | "version": "1.15",
5 | "license": "freeware",
6 | "description": "HostedNetworkStarter is a simple tool for Windows 7 and later that allows you to easily create a wifi hotspot with your wireless network adapter, using the Wifi hosted network feature of Windows operating system. With the wifi hotspot created by this tool, you can allow any device with wifi support to access the network and the Internet connection available in your computer.",
7 | "url": "https://www.nirsoft.net/utils/hostednetworkstarter.zip",
8 | "hash": "f0908be0beb76b880ecf827d7b3f6ea8190b1674a88b782dd82f844afa6bed84",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/hostednetworkstarter.zip"
11 | },
12 | "bin": "HostedNetworkStarter.exe",
13 | "shortcuts": [
14 | [
15 | "HostedNetworkStarter.exe",
16 | "NirSoft\\HostedNetworkStarter - Create a wifi hotspot on Windows"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/siteshoter.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/web_site_screenshot.html",
3 | "checkver": "SiteShoter v(\\d+\\.\\d\\d)",
4 | "version": "1.42",
5 | "license": "freeware",
6 | "description": "SiteShoter is a small utility that allows you to save a screenshot of any Web page into a file. It automatically creates hidden window of Internet Explorer, loads the desired Web page, and than save the entire content of the Web page into an image file (.png, .jpg, .tiff, .bmp or .gif). You can use SiteShoter in user interface mode, or alternatively, you can run SiteShoter in command-line mode without displaying any user interface.",
7 | "url": "https://www.nirsoft.net/utils/siteshoter.zip",
8 | "hash": "72cc2633ebc81a5c6a79e7543c2da9b1e56e901c7d2c9e688d582a630838d2cc",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/siteshoter.zip"
11 | },
12 | "bin": "SiteShoter.exe",
13 | "shortcuts": [
14 | [
15 | "SiteShoter.exe",
16 | "NirSoft\\SiteShoter - Save a screenshot of any Web page into a file"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/operacacheview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/opera_cache_view.html",
3 | "checkver": "OperaCacheView v(\\d+\\.\\d\\d)",
4 | "version": "1.40",
5 | "license": "freeware",
6 | "description": "OperaCacheView is a small utility that reads the cache folder of Opera Web browser, and displays the list of all files currently stored in the cache. For each cache file, the following information is displayed: URL, Content type, File size, Last accessed time, and last modified time in the server. You can easily select one or more items from the cache list, and then extract the files to another folder, or copy the URLs list to the clipboard.",
7 | "url": "https://www.nirsoft.net/utils/operacacheview.zip",
8 | "hash": "b205f7d66e4fdb7e2c3af7ab3903cb6cfa15467f0913a30f49a93acea971780e",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/operacacheview.zip"
11 | },
12 | "bin": "OperaCacheView.exe",
13 | "shortcuts": [
14 | [
15 | "OperaCacheView.exe",
16 | "NirSoft\\OperaCacheView - Opera Cache Viewer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/networkconnectlog.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/network_connect_log.html",
3 | "checkver": "NetworkConnectLog v(\\d+\\.\\d\\d)",
4 | "version": "1.16",
5 | "license": "freeware",
6 | "description": "NetworkConnectLog is a simple utility that repeatedly scans your local area network (Using ARP and Netbios protocols) and add a new log line every time that a new computer or device connects to your network, and when a computer or device disconnects from your network. After the connect/disconnect log lines are accumulated, you can easily export the log lines to comma-delimited/tab-delimited/html/xml file.",
7 | "url": "https://www.nirsoft.net/utils/networkconnectlog.zip",
8 | "hash": "b48e97201145f9d9b15256729e26aceebf28f9a8d8633b9519f5ae9dd9eeeedd",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/networkconnectlog.zip"
11 | },
12 | "bin": "NetworkConnectLog.exe",
13 | "shortcuts": [
14 | [
15 | "NetworkConnectLog.exe",
16 | "NirSoft\\NetworkConnectLog - connected_disconnected computers log"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/iedesignmode.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/ie_design_mode.html",
3 | "checkver": "IEDesignMode v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "IEDesignMode Adds a new menu item into the context menu of Internet Explorer that allows you to easily switch the active Internet Explorer window to design mode. When a Web page in in design mode, you can change the location of images and other objects, change the current text, paste a new text into the Web page, and so on. After you made your changes, you can easily switch back to non-design mode and/or save the modified Web page to HTML file.",
7 | "url": "https://www.nirsoft.net/utils/iedesignmode.zip",
8 | "hash": "e2dc751ee453c5c135fd845e86e375c3e9d8842d9e30e5ad20e82af30297c3dc",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/iedesignmode.zip"
11 | },
12 | "bin": "IEDesignMode.exe",
13 | "shortcuts": [
14 | [
15 | "IEDesignMode.exe",
16 | "NirSoft\\IEDesignMode - Switch Internet Explorer to design mode"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/mylastsearch.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/my_last_search.html",
3 | "checkver": "MyLastSearch v(\\d+\\.\\d\\d)",
4 | "version": "1.65",
5 | "license": "freeware",
6 | "description": "MyLastSearch utility scans the cache and history files of your Web browser, and locate all search queries that you made with the most popular search engines (Google, Yahoo and MSN). The search queries that you made are displayed in a table with the following columns: Search Text, Search Engine, Search Time, Web Browser, and the search URL. You can select one or more search queries and then copy them to the clipboard or save them into text/html/xml file.",
7 | "url": "https://www.nirsoft.net/utils/mylastsearch.zip",
8 | "hash": "1c9ac237f092c9a9c420993b39e1ec57af88be13b9bffe87d6c6fac82b3277e1",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/mylastsearch.zip"
11 | },
12 | "bin": "MyLastSearch.exe",
13 | "shortcuts": [
14 | [
15 | "MyLastSearch.exe",
16 | "NirSoft\\MyLastSearch - View your latest Web searches"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/winsockservicesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/winsock_service_providers.html",
3 | "checkver": "WinsockServicesView v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "This utility displays the details of all Winsock service providers installed on your system. For every Winsock service, the following information is displayed: Display Name, Status (Enabled/Disabled), DLL Type (32-bit or 64-bit), DLL Filename, DLL Description/Version, and Created/Modified Time. WinsockServicesView also allows you to easily disable/enable a Winsock service provider.",
7 | "url": "https://www.nirsoft.net/utils/winsockservicesview.zip",
8 | "hash": "135131357d35cd429bc9a06408b810082e1db3ec910f3314e3c5377142d219b9",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/winsockservicesview.zip"
11 | },
12 | "bin": "WinsockServicesView.exe",
13 | "shortcuts": [
14 | [
15 | "WinsockServicesView.exe",
16 | "NirSoft\\WinsockServicesView - View_Disable_Enable Winsock service providers"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/clipboardic.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/clipboardic.html",
3 | "checkver": "Clipboardic v(\\d+\\.\\d\\d)",
4 | "version": "1.19",
5 | "license": "freeware",
6 | "description": "Clipboardic is a small utility that listen to the clipboard activity, and each time that you copy something into the clipboard, it automatically save the copied data into Windows clipboard file (.clp). Later, when you need the copied data again, you can simply select the right clipboard file, and Clipboardic will automatically insert it into the clipboard. Clipboardic also allows you to easily share the clipboard data between multiple computers on your local network.",
7 | "url": "https://www.nirsoft.net/utils/clipboardic.zip",
8 | "hash": "24dbae3a287a333e0d71c7e48f2a98577b14e1d6e265d285abd1d66f78cdb880",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/clipboardic.zip"
11 | },
12 | "bin": "Clipboardic.exe",
13 | "shortcuts": [
14 | [
15 | "Clipboardic.exe",
16 | "NirSoft\\Clipboardic - Small and simple clipboard manager"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/disksmartview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/disk_smart_view.html",
3 | "checkver": "DiskSmartView v(\\d+\\.\\d\\d)",
4 | "version": "1.21",
5 | "license": "freeware",
6 | "description": "DiskSmartView is a small utility that retrieves the S.M.A.R.T information (S.M.A.R.T = Self-Monitoring, Analysis, and Reporting Technology) from IDE/SATA disks. This information includes the disk model/firmware/serial number, cylinders/heads, power-on hours (POH), internal temperature, disk errors rate, and more. You can use the S.M.A.R.T information retrieved by DiskSmartView to find out whether there is any significant problem in your disk drive.",
7 | "url": "https://www.nirsoft.net/utils/disksmartview.zip",
8 | "hash": "8d10b7f4c8b60a39e33f28dc45782f734ce4af84bac33945251786c0c361f9dd",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/disksmartview.zip"
11 | },
12 | "bin": "DiskSmartView.exe",
13 | "shortcuts": [
14 | [
15 | "DiskSmartView.exe",
16 | "NirSoft\\DiskSmartView - Retrieves S.M.A.R.T information"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/recentfilesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/recent_files_view.html",
3 | "checkver": "RecentFilesView v(\\d+\\.\\d\\d)",
4 | "version": "1.33",
5 | "license": "freeware",
6 | "description": "Each time that you open a file from Windows Explorer or from a standard open/save dialog-box, the name of the file that you opened is recorded by the operating system. Some of the names are saved into the 'Recent' folder. Other are saved into the Registry. This utility display the list of all recently opened files, and allows you to delete unwanted filename entries. You can also save the files list into text/html/xml file.",
7 | "url": "https://www.nirsoft.net/utils/recentfilesview.zip",
8 | "hash": "6920cc0165fcffa1a009c663c3dce7c84a62ca0e4b73d9d86dc9cc0dc39dca61",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/recentfilesview.zip"
11 | },
12 | "bin": "RecentFilesView.exe",
13 | "shortcuts": [
14 | [
15 | "RecentFilesView.exe",
16 | "NirSoft\\RecentFilesView - Display the list of recently opened files"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/urlprotocolview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/url_protocol_view.html",
3 | "checkver": "URLProtocolView v(\\d+\\.\\d\\d)",
4 | "version": "1.15",
5 | "license": "freeware",
6 | "description": "URLProtocolView is a simple utility that displays all URL protocols (for example: ftp:, telnet:, mailto:) that are currently installed on your system. For each URL protocol, the following information is displayed: The protocol name, the protocol description, the command-line that is executed when you type or click the URL, the product name, and the company name. This utility also allows you to easily enable/disable the URL protocols.",
7 | "url": "https://www.nirsoft.net/utils/urlprotocolview.zip",
8 | "hash": "17e9df993efdb66ed3e301fb69e531974f09a0ad3212efe88ac4331e40508873",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/urlprotocolview.zip"
11 | },
12 | "bin": "URLProtocolView.exe",
13 | "shortcuts": [
14 | [
15 | "URLProtocolView.exe",
16 | "NirSoft\\URLProtocolView - View_disable_enable the URL protocols"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/edgecookiesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/edge_cookies_view.html",
3 | "checkver": "EdgeCookiesView v(\\d+\\.\\d\\d)",
4 | "version": "1.17",
5 | "license": "freeware",
6 | "description": "EdgeCookiesView is a tool for Windows that displays the cookies stored by newer versions of Microsoft Edge Web browser (Starting from Fall Creators Update 1709 of Windows 10). It also allows you to select one or more cookies and then export them to tab-delimited, csv file, html file, or to a file in cookies.txt format. You can read the cookies from the current running system or from the WebCacheV01.dat database on external hard drive.",
7 | "url": "https://www.nirsoft.net/utils/edgecookiesview.zip",
8 | "hash": "2ffad52588c2373f6bf4f6da662af3ed577e00d78260036b5ef87f7e7e5b5c65",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/edgecookiesview.zip"
11 | },
12 | "bin": "EdgeCookiesView.exe",
13 | "shortcuts": [
14 | [
15 | "EdgeCookiesView.exe",
16 | "NirSoft\\EdgeCookiesView - Display cookies from new versions of MS-Edge"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/keyboardstateview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/keyboard_state_view.html",
3 | "checkver": "KeyboardStateView v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "KeyboardStateView is a simple tool for Windows that displays the current state and virtual key code of every key you press. It also allows you to view the current state of all keyboard keys. For every key, the following information is displayed: Key Name (VK_XXXX ), Description, Key Code (Decimal), Key Code (Hexadecimal), Key Pressed Status, Key Toggled Status (Useful for Num Lock, Caps Lock), and last time that the key was pressed.",
7 | "url": "https://www.nirsoft.net/utils/keyboardstateview.zip",
8 | "hash": "b8ea99128e5ec854f3ce2596177687538f8d2b802943f35a223795d9452a0cd5",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/keyboardstateview.zip"
11 | },
12 | "bin": "KeyboardStateView.exe",
13 | "shortcuts": [
14 | [
15 | "KeyboardStateView.exe",
16 | "NirSoft\\KeyboardStateView - Shows current state of every key"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/monitorinfoview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/monitor_info_view.html",
3 | "checkver": "MonitorInfoView v(\\d+\\.\\d\\d)",
4 | "version": "1.22",
5 | "license": "freeware",
6 | "description": "MonitorInfoView is a small utility that displays essential information about your monitor: manufacture week/year, monitor manufacturer, monitor model, supported display modes, and more... The information is extracted from the EDID (\"Extended display identification data\") records stored on your computer. You can also view the monitor information of multiple computers on your network, if you login to these computers with administrator rights.",
7 | "url": "https://www.nirsoft.net/utils/monitorinfoview.zip",
8 | "hash": "1d9b7093b42f491bb13098649538d3516b8df318baca2773736ae48281ae1aef",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/monitorinfoview.zip"
11 | },
12 | "bin": "MonitorInfoView.exe",
13 | "shortcuts": [
14 | [
15 | "MonitorInfoView.exe",
16 | "NirSoft\\MonitorInfoView - displays information about your monitor"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/openwithview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/open_with_view.html",
3 | "checkver": "OpenWithView v(\\d+\\.\\d\\d)",
4 | "version": "1.11",
5 | "license": "freeware",
6 | "description": "OpenWithView is a small utility that displays the list of all available applications in the 'Open With' dialog-box of Windows, and allows you to easily disable/enable the applications in the list. When application is disabled, it won't be displayed in the 'Other Programs' section of the 'Open With' dialog-box. This utility can be useful if your 'Open With' window displays too much applications, and you want to remove the applications that you don't use frequently.",
7 | "url": "https://www.nirsoft.net/utils/openwithview.zip",
8 | "hash": "91c6bc5be89d52329882f85637e63e35c20efb5c289d9f83c9083e72cab7192e",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/openwithview.zip"
11 | },
12 | "bin": "OpenWithView.exe",
13 | "shortcuts": [
14 | [
15 | "OpenWithView.exe",
16 | "NirSoft\\OpenWithView - Disable_enable items in 'Open With' window"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/fastresolver.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/fastresolver.html",
3 | "checkver": "FastResolver v(\\d+\\.\\d\\d)",
4 | "version": "1.26",
5 | "license": "freeware",
6 | "description": "FastResolver is a small utility that resolves multiple host names into IP addresses and vice versa. You can simply type the list of IP addresses or host name that you want to resolve, or alternatively, you can specify IP addresses range that you want to scan. For local network, FastResolver also allows you to get the MAC address of all IP addresses that you scan. FastResolver is a multithreaded application, so it can resolve dozens of addresses within a few seconds.",
7 | "url": "https://www.nirsoft.net/utils/fastresolver.zip",
8 | "hash": "476a8e2d01b271f5b774904805b3419d58ac593bd0332e019d992eff95143212",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/fastresolver.zip"
11 | },
12 | "bin": "FastResolver.exe",
13 | "shortcuts": [
14 | [
15 | "FastResolver.exe",
16 | "NirSoft\\FastResolver - Resolves multiple host names _ IP addresses"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/wifidiagnosticsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/wifi_diagnostics_view.html",
3 | "checkver": "WifiDiagnosticsView v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "WifiDiagnosticsView is a Wifi diagnostics tool for Windows 11/10/8/7/Vista that monitors the wireless network service of Windows operating system and displays any event that occurs while WifiDiagnosticsView is running, including wireless networks scan, connect to access point, disconnect from access point, failed connection attempt, and so on.. When a failure is detected, the error code and error description is displayed.",
7 | "url": "https://www.nirsoft.net/utils/wifidiagnosticsview.zip",
8 | "hash": "6bce2e81f0b0381ce4cbf66fd9a8d7be08430d58577c43f7153957de7affa0ba",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/wifidiagnosticsview.zip"
11 | },
12 | "bin": "WifiDiagnosticsView.exe",
13 | "shortcuts": [
14 | [
15 | "WifiDiagnosticsView.exe",
16 | "NirSoft\\WifiDiagnosticsView - Wifi diagnostics tool for Windows"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/bluetoothview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/bluetooth_viewer.html",
3 | "checkver": "BluetoothView v(\\d+\\.\\d\\d)",
4 | "version": "1.66",
5 | "license": "freeware",
6 | "description": "BluetoothView is a small utility that runs in the background, and monitor the activity of Bluetooth devices around you. For each detected Bluetooth device, it displays the following information: Device Name, Bluetooth Address, Major Device Type, Minor Device Type, First Detection Time, Last Detection Time, and more. BluetoothView can also notify you when a new Bluetooth device is detected, by displaying a balloon in your taskbar or by playing a small beep sound.",
7 | "url": "https://www.nirsoft.net/utils/bluetoothview.zip",
8 | "hash": "0c85497da7a0b4ecee9cdd5e55afa9bc248cd282dcd2eacc7a3ad1f16eb4ecbc",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/bluetoothview.zip"
11 | },
12 | "bin": "BluetoothView.exe",
13 | "shortcuts": [
14 | [
15 | "BluetoothView.exe",
16 | "NirSoft\\BluetoothView - Monitors the Bluetooth activity around you"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/webcacheimageinfo.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/web_cache_image_info.html",
3 | "checkver": "WebCacheImageInfo v(\\d+\\.\\d\\d)",
4 | "version": "1.34",
5 | "license": "freeware",
6 | "description": "WebCacheImageInfo is a simple tool that searches for JPEG images with EXIF information stored inside the cache of your Web browser (Internet Explorer, Firefox, or Chrome), and then it displays the list of all images found in the cache with the interesting information stored in them, like the software that was used to create the image, the camera model that was used to photograph the image, and the date/time that the image was created.",
7 | "url": "https://www.nirsoft.net/utils/webcacheimageinfo.zip",
8 | "hash": "079757d81aafa7ef09a3a7bc98ee1fb6a3666a0580ce3a9fe8195c37e3837919",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/webcacheimageinfo.zip"
11 | },
12 | "bin": "WebCacheImageInfo.exe",
13 | "shortcuts": [
14 | [
15 | "WebCacheImageInfo.exe",
16 | "NirSoft\\WebCacheImageInfo - Show images info in Web browser cache"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/activexhelper.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/axhelper.html",
3 | "checkver": "ActiveXHelper v(\\d+\\.\\d\\d)",
4 | "version": "1.12",
5 | "license": "freeware",
6 | "description": "ActiveXHelper is a small utility that allows you to view essential information about ActiveX components installed on your computer. You can view the entire (and very large !) list of ActiveX components by loading it from HKEY_CLASSES_ROOT\\CLSID Registry key, or alternatively, display only the ActiveX components that you specify. In addition, you can temporarily disable specific ActiveX components. When ActiveX components are disabled, they cannot be used by any software, until you enable them again.",
7 | "url": "https://www.nirsoft.net/utils/axhelper.zip",
8 | "hash": "57b7f131622fc10e42db30525880780402453367cfd7cb83198e9afab4f7aba7",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/axhelper.zip"
11 | },
12 | "bin": "axhelper.exe",
13 | "shortcuts": [
14 | [
15 | "axhelper.exe",
16 | "NirSoft\\ActiveXHelper - View ActiveX components information"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/chromecacheview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/chrome_cache_view.html",
3 | "checkver": "ChromeCacheView v(\\d+\\.\\d\\d)",
4 | "version": "2.47",
5 | "license": "freeware",
6 | "description": "ChromeCacheView is a small utility that reads the cache folder of Google Chrome Web browser, and displays the list of all files currently stored in the cache. For each cache file, the following information is displayed: URL, Content type, File size, Last accessed time, Expiration time, Server name, Server response, and more. You can easily select one or more items from the cache list, and then extract the files to another folder, or copy the URLs list to the clipboard.",
7 | "url": "https://www.nirsoft.net/utils/chromecacheview.zip",
8 | "hash": "733baa68efd83dc1bac122809f0f2820910695d11a442bb5280f002f1390d43f",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/chromecacheview.zip"
11 | },
12 | "bin": "ChromeCacheView.exe",
13 | "shortcuts": [
14 | [
15 | "ChromeCacheView.exe",
16 | "NirSoft\\ChromeCacheView - Chrome Browser Cache Viewer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/livecontactsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/live_messenger_contacts.html",
3 | "checkver": "LiveContactsView v(\\d+\\.\\d\\d)",
4 | "version": "1.26",
5 | "license": "freeware",
6 | "description": "LiveContactsView is a small utility that allows you to view the details of all contacts in your Windows Live Messenger. For each contact, LiveContactsView display the following fields: Email address, nickname, quick name, first name, last name, and more. You can easily select one or more contacts and then export them into text/xml/html/csv file, or copy them into the clipboard and then paste them into Excel or to any other spreadsheet application.",
7 | "url": "https://www.nirsoft.net/utils/livecontactsview.zip",
8 | "hash": "8cc89f10e002c3aa4da6d711ce4342d318d9cfe4471d38835c89ddb03594119e",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/livecontactsview.zip"
11 | },
12 | "bin": "LiveContactsView.exe",
13 | "shortcuts": [
14 | [
15 | "LiveContactsView.exe",
16 | "NirSoft\\LiveContactsView - View the conacts of Windows Live Messenger"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/mzcacheview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/mozilla_cache_viewer.html",
3 | "checkver": "MZCacheView v(\\d+\\.\\d\\d)",
4 | "version": "2.21",
5 | "license": "freeware",
6 | "description": "MozillaCacheView is a small utility that reads the cache folder of Firefox/Mozilla/Netscape Web browsers, and displays the list of all files currently stored in the cache. For each cache file, the following information is displayed: URL, Content type, File size, Last modified time, Last fetched time, Expiration time, Fetch count, Server name, and more. You can easily select one or more items from the cache list, and then extract the files to another folder, or copy the URLs list to the clipboard.",
7 | "url": "https://www.nirsoft.net/utils/mzcacheview.zip",
8 | "hash": "161fed464cb05a025c65328924d0e9e5df9244065edbae72e8b0a826a660abd1",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/mzcacheview.zip"
11 | },
12 | "bin": "MZCacheView.exe",
13 | "shortcuts": [
14 | [
15 | "MZCacheView.exe",
16 | "NirSoft\\MZCacheView - Firefox_Mozilla Cache Viewer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/urlstringgrabber.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/url_string_grabber.html",
3 | "checkver": "URLStringGrabber v(\\d+\\.\\d\\d)",
4 | "version": "1.11",
5 | "license": "freeware",
6 | "description": "URLStringGrabber is a small utility that scans all opened windows of Internet Explorer and grab the URLs stored in them, including clickable links, images, script files, CSS files, RSS feeds, and flash (.swf) files. The URLs list is displayed in table, and you can easily export some of the URLs or the entire URLs list into text, csv, html, or xml file. You can also copy the URLs list into the clipboard and paste them into Excel or other spreadsheet application.",
7 | "url": "https://www.nirsoft.net/utils/urlstringgrabber.zip",
8 | "hash": "446d92375c35f0748866b48b4321eeeb5e6dfb61a7af2c80dce36748e7caa737",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/urlstringgrabber.zip"
11 | },
12 | "bin": "URLStringGrabber.exe",
13 | "shortcuts": [
14 | [
15 | "URLStringGrabber.exe",
16 | "NirSoft\\URLStringGrabber - Grab URL strings of Web sites from IE"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/foldersreport.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/folrep.html",
3 | "checkver": "FoldersReport v(\\d+\\.\\d\\d)",
4 | "version": "1.21",
5 | "license": "freeware",
6 | "description": "The FoldersReport utility scans a drive or a base folder that you select, and displays essential information for each folder that it finds: The size of all files inside the folder, The real files size on the disk, number of files inside the folder, number of hidden files, number of compressed files, and number of subfolders. You can use this utility to easily find out which folders use the most space in your drive. You can scan the folders of your local drives, CD-ROM drives, and network resources on a remote computer.",
7 | "url": "https://www.nirsoft.net/utils/folrep.zip",
8 | "hash": "82a662e081f86fee20ae390ab83d05ed5a0290a83ba0aaf0c2e50c46bf4e1fdb",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/folrep.zip"
11 | },
12 | "bin": "folrep.exe",
13 | "shortcuts": [
14 | [
15 | "folrep.exe",
16 | "NirSoft\\FoldersReport - Creates a report about folders in your disk"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/executedprogramslist.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/executed_programs_list.html",
3 | "checkver": "ExecutedProgramsList v(\\d+\\.\\d\\d)",
4 | "version": "1.11",
5 | "license": "freeware",
6 | "description": "ExecutedProgramsList is a simple tool that displays a list of programs and batch files that you previously executed on your system. For every program, ExecutedProgramsList displays the .exe file, the created/modified time of the .exe file, and the current version information of the program (product name, product version, company name) if it's available. For some of the programs, the last time execution time of the program is also displayed.",
7 | "url": "https://www.nirsoft.net/utils/executedprogramslist.zip",
8 | "hash": "84057a0660a51f07c56d893b9949befcc55a271c0e65a23e765bf958b2ae947a",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/executedprogramslist.zip"
11 | },
12 | "bin": "ExecutedProgramsList.exe",
13 | "shortcuts": [
14 | [
15 | "ExecutedProgramsList.exe",
16 | "NirSoft\\ExecutedProgramsList - Lists previously executed programs"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/myuninstaller.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/myuninst.html",
3 | "checkver": "MyUninstaller v(\\d+\\.\\d\\d)",
4 | "version": "1.77",
5 | "license": "freeware",
6 | "description": "MyUninstaller is an alternative utility to the standard Add/Remove applet of Windows operating system. It displays the list of all installed application, and allows you to uninstall an application, delete an uninstall entry, and save the list of all installed applications into a text file or HTML file. MyUninstaller also provides additional information for most installed applications that the standard Add/Remove applet doesn't display: product name, company, version, uninstall string, installation folder and more.",
7 | "url": "https://www.nirsoft.net/utils/myuninst.zip",
8 | "hash": "22f2fc8d324fcd8d36698e0496d7a4c5b69a09f3a36de533f99c83ba4446f799",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/myuninst.zip"
11 | },
12 | "bin": "myuninst.exe",
13 | "shortcuts": [
14 | [
15 | "myuninst.exe",
16 | "NirSoft\\MyUninstaller - Alternative to the standard Add_Remove Applet"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/regfileexport.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/registry_file_offline_export.html",
3 | "checkver": "RegFileExport v(\\d+\\.\\d\\d)",
4 | "version": "1.11",
5 | "license": "freeware",
6 | "description": "RegFileExport is a small console application that allows you to easily extract data from offline Registry file located on another disk drive. RegFileExport read the Registry file, ananlyze it, and then export the Registry data into a standard .reg file of Windows. You can export the entire Registry file, or only a specific Registry key. RegFileExport may also be able to export some of the Registry data even when the Registry file is corrupted and cannot be loaded by Windows.",
7 | "url": "https://www.nirsoft.net/utils/regfileexport.zip",
8 | "hash": "de7282d7d8646ffa212bf2a11b7f537fd3d0febb0b5679bb724a1ca2b946ecd0",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/regfileexport.zip"
11 | },
12 | "bin": "RegFileExport.exe",
13 | "shortcuts": [
14 | [
15 | "RegFileExport.exe",
16 | "NirSoft\\RegFileExport - Export offline Registry file to .reg file"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/chromepass.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/chromepass.html",
3 | "checkver": "ChromePass v(\\d+\\.\\d\\d)",
4 | "version": "1.56",
5 | "license": "freeware",
6 | "description": "ChromePass is a small password recovery tool that allows you to view the user names and passwords stored by Google Chrome Web browser. For each password entry, the following information is displayed: Origin URL, Action URL, User Name Field, Password Field, User Name, Password, and Created Time. You can select one or more items and then save them into text/html/xml file or copy them to the clipboard.",
7 | "url": "https://www.nirsoft.net/toolsdownload/chromepass.zip#dl.zip_",
8 | "hash": "a9ad9227a4b253f4ac4651a8e614bc64c60e474accdcbec70d59c55fd7f1d199",
9 | "pre_install": "Expand-7zipArchive \"$dir\\$fname\" -Switches '-pchpass9126*' -Removal",
10 | "autoupdate": {
11 | "url": "https://www.nirsoft.net/toolsdownload/chromepass.zip#dl.zip_"
12 | },
13 | "bin": "ChromePass.exe",
14 | "shortcuts": [
15 | [
16 | "ChromePass.exe",
17 | "NirSoft\\ChromePass - Password recovery tool for Google Chrome"
18 | ]
19 | ]
20 | }
21 |
--------------------------------------------------------------------------------
/bucket/winlogonview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/windows_log_on_times_view.html",
3 | "checkver": "WinLogOnView v(\\d+\\.\\d\\d)",
4 | "version": "1.41",
5 | "license": "freeware",
6 | "description": "WinLogOnView is a simple tool for Windows Vista/7/8/2008 that analyses the security event log of Windows operating system, and detects the date/time that users logged on and logged off. For every time that a user log on/log off to your system, the following information is displayed: Logon ID, User Name, Domain, Computer, Logon Time, Logoff Time, Duration, and network address. WinLogOnView also allows you to easily export the logon sessions information to tab-delimited/comma-delimited/html/xml file.",
7 | "url": "https://www.nirsoft.net/utils/winlogonview.zip",
8 | "hash": "e680236347a5c63b25a0ea6f745e0bcb5529fd9939753c3c099ccb9d5b549c8d",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/winlogonview.zip"
11 | },
12 | "bin": "WinLogOnView.exe",
13 | "shortcuts": [
14 | [
15 | "WinLogOnView.exe",
16 | "NirSoft\\WinLogOnView - Displays logon_logoff times on Windows"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/ipnetinfo.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/ipnetinfo.html",
3 | "checkver": "IPNetInfo v(\\d+\\.\\d\\d)",
4 | "version": "1.95",
5 | "license": "freeware",
6 | "description": "IPNetInfo is a small utility that allows you to easily find all available information about an IP address: The owner of the IP address, the country/state name, IP addresses range, contact information (address, phone, fax, and email), and more. This utility can be very useful for finding the origin of unsolicited mail. You can simply copy the message headers from your email software and paste them into IPNetInfo utility. IPNetInfo automatically extracts all IP addresses from the message headers, and displays the information about these IP addresses.",
7 | "url": "https://www.nirsoft.net/utils/ipnetinfo.zip",
8 | "hash": "f3db23a0e915f490a00b8d241bc8f2524c67ebafb37b6d28939cb7bba11ea399",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/ipnetinfo.zip"
11 | },
12 | "bin": "ipnetinfo.exe",
13 | "shortcuts": [
14 | [
15 | "ipnetinfo.exe",
16 | "NirSoft\\IPNetInfo - Get information about IP address"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/jumplistsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/jump_lists_view.html",
3 | "checkver": "JumpListsView v(\\d+\\.\\d\\d)",
4 | "version": "1.16",
5 | "license": "freeware",
6 | "description": "JumpListsView is a simple tool that displays the information stored by the 'Jump Lists' feature of Windows 7 and Windows 8. For every record found in the Jump Lists, the following information is displayed: The filename that the user opened, the date/time of the file opening event, the ID of the application that was used to open the file, the size/time/attributes of the file on the time that the file was opened, and more... You can also export the Jump Lists records to csv/tab-delimited/xml/html file.",
7 | "url": "https://www.nirsoft.net/utils/jumplistsview.zip",
8 | "hash": "2e3447efac788110292e8bb3438bbdb24246b46cedc873a2d55ef87c152705b9",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/jumplistsview.zip"
11 | },
12 | "bin": "JumpListsView.exe",
13 | "shortcuts": [
14 | [
15 | "JumpListsView.exe",
16 | "NirSoft\\JumpListsView - Displays Jump Lists information of Windows 7"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/downtester.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/download_speed_tester.html",
3 | "checkver": "DownTester v(\\d+\\.\\d\\d)",
4 | "version": "1.30",
5 | "license": "freeware",
6 | "description": "DownTester allows you to easily test your Internet download speed in multiple locations around the world. It automatically test the download speed of the URLs that you choose, one after another. It moves to the next download URL after the specified number of seconds has been elapsed or after it downloads the specified amount of KB - just according to your preferences. After the download test is finished, you can easily save the result into text/html/xml/csv file, or copy it to the clipboard and paste it into Excel and other applications.",
7 | "url": "https://www.nirsoft.net/utils/downtester.zip",
8 | "hash": "15d6a3ecea7ab676769042cfdb3cbbea197f81be63aec409e792dd2258642fe2",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/downtester.zip"
11 | },
12 | "bin": "DownTester.exe",
13 | "shortcuts": [
14 | [
15 | "DownTester.exe",
16 | "NirSoft\\DownTester - Test your Internet download speed"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/fbcacheview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/facebook_cache_viewer.html",
3 | "checkver": "FBCacheView v(\\d+\\.\\d\\d)",
4 | "version": "1.22",
5 | "license": "freeware",
6 | "description": "FBCacheView is a simple tool that scans the cache of your Web browser (Internet Explorer, Firefox, or Chrome), and lists all images displayed in Facebook pages that you previously visited, including profile pictures, images uploaded to Facebook, and images taken from other Web sites. For every Facebook image, the following information is displayed: URL of the image, Web browser that was used to visit the page, image type, date/time of the image, visit time, image file size, and external URL (For images taken from another Web site).",
7 | "url": "https://www.nirsoft.net/utils/fbcacheview.zip",
8 | "hash": "4577f33de9fc7a76b0dec73025b4483c0ff17a48b36e984975c9b4f4efc954e6",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/fbcacheview.zip"
11 | },
12 | "bin": "FBCacheView.exe",
13 | "shortcuts": [
14 | [
15 | "FBCacheView.exe",
16 | "NirSoft\\FBCacheView - Shows Facebook images in cache"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/simplecodegenerator.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/qr_code_generator.html",
3 | "checkver": "SimpleCodeGenerator v(\\d+\\.\\d\\d)",
4 | "version": "1.16",
5 | "license": "freeware",
6 | "description": "SimpleCodeGenerator is a simple tool for Windows that allows you to quickly generate QR Code for scanning with App on your Smartphone. You can display the QR Code on the screen, copy it to the clipboard and then paste it to another program (as image), or save it image file - .png , .gif , .jpg , .tiff, or .bmp SimpleCodeGenerator also allows you to generate QR Code from command line and save it as image file ( .png , .gif , .jpg , .tiff, or .bmp) without displaying any user interface.",
7 | "url": "https://www.nirsoft.net/utils/simplecodegenerator.zip",
8 | "hash": "aba117577c883c6023e5602c9e825739a27b664c8ee6a4edbfc940eb167c2cb5",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/simplecodegenerator.zip"
11 | },
12 | "bin": "SimpleCodeGenerator.exe",
13 | "shortcuts": [
14 | [
15 | "SimpleCodeGenerator.exe",
16 | "NirSoft\\SimpleCodeGenerator - QR Code Generator for Windows"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/ipinfooffline.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/ip_country_info_offline.html",
3 | "checkver": "IPInfoOffline v(\\d+\\.\\d\\d)",
4 | "version": "1.70",
5 | "license": "freeware",
6 | "description": "IPInfoOffline Allows you to view information about IP addresses, without connecting any external server. It uses a compressed IP addresses database that is stored inside the exe file. For each IP address, the following information is displayed: IP block range, Organization (RIPE, ARIN, APNIC, LACNIC or AFRINIC), Assigned Date, Country Name, and Country Code. After retrieving the information about the desired IP addresses, You can copy the information to the clipboard, or save it into text/html/xml/csv file.",
7 | "url": "https://www.nirsoft.net/utils/ipinfooffline.zip",
8 | "hash": "a9a19a6a0230df524481cb28dbb44d9668ae847d4de38bbd1487a12fa20dceca",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/ipinfooffline.zip"
11 | },
12 | "bin": "IPInfoOffline.exe",
13 | "shortcuts": [
14 | [
15 | "IPInfoOffline.exe",
16 | "NirSoft\\IPInfoOffline - view country information about IP addresses"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/netbscanner.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/netbios_scanner.html",
3 | "checkver": "NetBScanner v(\\d+\\.\\d\\d)",
4 | "version": "1.11",
5 | "license": "freeware",
6 | "description": "NetBScanner is a network scanner tool that scans all computers in the IP addresses range you choose, using NetBIOS protocol. For every computer located by this NetBIOS scanner, the following information is displayed: IP Address, Computer Name, Workgroup or Domain, MAC Address, and the company that manufactured the network adapter (determined according to the MAC address). NetBScanner also shows whether a computer is a Master Browser. You can easily select one or more computers found by NetBScanner, and then export the list into csv/tab-delimited/xml/html file.",
7 | "url": "https://www.nirsoft.net/utils/netbscanner.zip",
8 | "hash": "f4970e58d94ef7112924b16ae81187e18d9bad26d407e9b6a37172c5d5973c3c",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/netbscanner.zip"
11 | },
12 | "bin": "NetBScanner.exe",
13 | "shortcuts": [
14 | [
15 | "NetBScanner.exe",
16 | "NirSoft\\NetBScanner - NetBIOS scanner"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/routerpassview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/router_password_recovery.html",
3 | "checkver": "RouterPassView v(\\d+\\.\\d\\d)",
4 | "version": "1.90",
5 | "license": "freeware",
6 | "description": "Most modern routers allow you to backup the configuration of the router into a file, and then restore the configuration from the file when it's needed. The backup file of the router usually contains important data like your ISP user name/password, the login password of the router, and wireless network keys. If you lost one of these password/keys, but you still have a backup file of your router configuration, RouterPassView might help you to recover your lost password from your router file.",
7 | "url": "https://www.nirsoft.net/toolsdownload/routerpassview.zip",
8 | "hash": "0d68fb19ca14c8200f9015703f728628bc3dd3b76614b709d1da5821fceb4aba",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/routerpassview.zip"
11 | },
12 | "bin": "RouterPassView.exe",
13 | "shortcuts": [
14 | [
15 | "RouterPassView.exe",
16 | "NirSoft\\RouterPassView - Recover passwords from router config file"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/safarihistoryview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/safari_history_view.html",
3 | "checkver": "SafariHistoryView v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "SafariHistoryView is a simple utility for Windows that reads and parses the history file of Safari Web browser (history.plist) and displays the browsing history in a simple table. Every browsing history line includes the following information: URL, Web Page Title, Last Visit Time, Visit Count, Redirected To URL, and Record Index. SafariHistoryView allows you to easily export the browsing history data into text/csv/html/xml file, or copy the data to the clipboard and then paste it into Excel.",
7 | "url": "https://www.nirsoft.net/utils/safarihistoryview.zip",
8 | "hash": "6b467088a046c2428fad1a7a78395622f6e23798c87186220fee04fbec0f488c",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/safarihistoryview.zip"
11 | },
12 | "bin": "SafariHistoryView.exe",
13 | "shortcuts": [
14 | [
15 | "SafariHistoryView.exe",
16 | "NirSoft\\SafariHistoryView - History viewer for Safari Web browser"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/windeflogview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/windows_defender_log_viewer.html",
3 | "checkver": "WinDefLogView v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "WinDefLogView is a tool for Windows 10 and Windows 11 that reads the event log of Windows Defender (Microsoft-Windows-Windows Defender/Operational) and displays a log of threats detected by Windows Defender on your system. For every log line, the following information is displayed: Filename, Detect Time, Threat Name, Severity, Category, Detection User, Action, Origin, and more... You can view the detected threats log on your local computer, on remote computers on your network, and on external disk plugged to your computer.",
7 | "url": "https://www.nirsoft.net/utils/windeflogview.zip",
8 | "hash": "235c17c453e96182a72ee957b40c567bc7bef2d466b8b7302d38e79cf1f3d219",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/windeflogview.zip"
11 | },
12 | "bin": "WinDefLogView.exe",
13 | "shortcuts": [
14 | [
15 | "WinDefLogView.exe",
16 | "NirSoft\\WinDefLogView - Windows Defender Log Viewer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/batteryhistoryview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/battery_history_view.html",
3 | "checkver": "BatteryHistoryView v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "BatteryHistoryView extracts and displays the history information of the laptop battery stored in the SRUDB.dat database of Windows 10 and Windows 11. The battery history information is automatically collected by Windows operating systems and includes the following information: Timestamp, Cycle Count, Designed Capacity, Full Charged Capacity, Charge Level, Charge Percent, Active AC Time, CS AC Time, Active DC Time, CS DC Time, Active Discharge Time, CS Discharge Time, Active Energy, CS Energy.",
7 | "url": "https://www.nirsoft.net/utils/batteryhistoryview.zip",
8 | "hash": "20e65b6259623c126d7bc2b5a0e5a54f4d054a53a7c4d28ede31739c138f1036",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/batteryhistoryview.zip"
11 | },
12 | "bin": "BatteryHistoryView.exe",
13 | "shortcuts": [
14 | [
15 | "BatteryHistoryView.exe",
16 | "NirSoft\\BatteryHistoryView - Displays battery history information"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/credhistview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/credhist_view.html",
3 | "checkver": "CredHistView v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "Every time that you change the login password on your system, Windows stores the hashes of the previous password in the CREDHist file (Located in %appdata%\\Microsoft\\Protect\\CREDHIST ) This tool allows you to decrypt the CREDHist file and view the SHA1 and NTLM hashes of all previous passwords you used on your system. In order to decrypt the file, you have to provide your latest login password. You can this tool to decrypt the CREDHIST file on your currently running system, as well as to decrypt the CREDHIST stored on external hard drive.",
7 | "url": "https://www.nirsoft.net/utils/credhistview.zip",
8 | "hash": "aba457a4db13fe592a075d617859b2655c09a8c7a842d5c0870987b5e001d2fa",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/credhistview.zip"
11 | },
12 | "bin": "CredHistView.exe",
13 | "shortcuts": [
14 | [
15 | "CredHistView.exe",
16 | "NirSoft\\CredHistView - Decrypt the CREDHIST file of Windows"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/iecacheview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/ie_cache_viewer.html",
3 | "checkver": "IECacheView v(\\d+\\.\\d\\d)",
4 | "version": "1.58",
5 | "license": "freeware",
6 | "description": "IECacheView is a small utility that reads the cache folder of Internet Explorer, and displays the list of all files currently stored in the cache. For each cache file, the following information is displayed: Filename, Content Type, URL, Last Accessed Time, Last Modified Time, Expiration Time, Number Of Hits, File Size, Folder Name, and full path of the cache filename. You can easily save the cache information into text/html/xml file, or copy the cache table to the clipboard and then paste it to another application, like Excel or OpenOffice Spreadsheet.",
7 | "url": "https://www.nirsoft.net/utils/iecacheview.zip",
8 | "hash": "93cb4f0f78c37575f107a73f781be92670fab93328e96207c2c0fdd745f6acf5",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/iecacheview.zip"
11 | },
12 | "bin": "IECacheView.exe",
13 | "shortcuts": [
14 | [
15 | "IECacheView.exe",
16 | "NirSoft\\IECacheView - Internet Explorer Cache Viewer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/iepassview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/internet_explorer_password.html",
3 | "checkver": "IE PassView v(\\d+\\.\\d\\d)",
4 | "version": "1.42",
5 | "license": "freeware",
6 | "description": "IE PassView is a small utility that reveals the passwords stored by Internet Explorer Web browser. It supports all versions of Internet Explorer, from version 4.0 and up to 8.0. For each password that is stored by Internet Explorer, the following information is displayed: Web address, Password Type (AutoComplete, Password-Protected Web Site, or FTP), Storage Location (Registry, Credentials File, or Protected Storage), and the user name/password pair. You can select one or more items from the passwords list and export them into text/html/csv/xml file.",
7 | "url": "https://www.nirsoft.net/toolsdownload/iepv.zip",
8 | "hash": "8164e8181cd85b4da180bb7671ca04eef548fdabee1696a741ebb88e09b3058f",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/iepv.zip"
11 | },
12 | "bin": "iepv.exe",
13 | "shortcuts": [
14 | [
15 | "iepv.exe",
16 | "NirSoft\\IE PassView - Recover Internet Explorer Passwords"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/muicacheview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/muicache_view.html",
3 | "checkver": "MUICacheView v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "Each time that you start using a new application, Windows operating system automatically extract the application name from the version resource of the exe file, and stores it for using it later, in Registry key known as the 'MuiCache'. This utility allows you to easily view and edit the list of all MuiCache items on your system. You can edit the name of the application, or alternatively, you can delete unwanted MUICache items. Be aware that even if your delete MUICache items, they'll reappear in the next time that you run the application.",
7 | "url": "https://www.nirsoft.net/utils/muicacheview.zip",
8 | "hash": "d22499c5ad2fba84f9f82a3a0c05cc085321b5502968699a831aa96afaf669a0",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/muicacheview.zip"
11 | },
12 | "bin": "MUICacheView.exe",
13 | "shortcuts": [
14 | [
15 | "MUICacheView.exe",
16 | "NirSoft\\MUICacheView - Edit_delete MUICache items in your system"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/usblogview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/usb_log_view.html",
3 | "checkver": "USBLogView v(\\d+\\.\\d\\d)",
4 | "version": "1.26",
5 | "license": "freeware",
6 | "description": "USBLogView is a small utility that runs in the background and records the details of any USB device that is plugged or unplugged into your system. For every log line created by USBLogView, the following information is displayed: Event Type (Plug/Unplug), Event Time, Device Name, Description, Device Type, Drive Letter (For storage devices), Serial Number (Only for some types of devices), Vendor ID, Product ID, Vendor Name, Product Name, and more... You can easily select one or more log records and then export them into csv/tab-delimited/xml/html file.",
7 | "url": "https://www.nirsoft.net/utils/usblogview.zip",
8 | "hash": "8ec630a9ed42389d73c1c82de05f0019f61baf7af81fc16de13c6643eb07fd4d",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/usblogview.zip"
11 | },
12 | "bin": "USBLogView.exe",
13 | "shortcuts": [
14 | [
15 | "USBLogView.exe",
16 | "NirSoft\\USBLogView - Records the details of plugged USB devices"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/networkcounterswatch.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/network_counters_watch.html",
3 | "checkver": "NetworkCountersWatch v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "NetworkCountersWatch is a tool for Windows that displays system counters for every network interface on your system. The system counters include the number of incoming/outgoing bytes, number of incoming/outgoing packets, number of broadcast packets, and more. You can also initialize all counters to zero at any time in order to watch the network counters for specific event. NetworkCountersWatch also calculates and displays the current download speed and upload speed on your network interface.",
7 | "url": "https://www.nirsoft.net/utils/networkcounterswatch.zip",
8 | "hash": "7323f92c67bc830a9b1ee586f43dea58b4ee95dc1f7deb0e3d30acdd082eeaa9",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/networkcounterswatch.zip"
11 | },
12 | "bin": "NetworkCountersWatch.exe",
13 | "shortcuts": [
14 | [
15 | "NetworkCountersWatch.exe",
16 | "NirSoft\\NetworkCountersWatch - View network system counters"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/insideclipboard.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/inside_clipboard.html",
3 | "checkver": "InsideClipboard v(\\d+\\.\\d\\d)",
4 | "version": "1.26",
5 | "license": "freeware",
6 | "description": "Each time that you copy something into the clipboard for pasting it into another application, the copied data is saved into multiple formats. The main clipboard application of Windows only display the basic clipboard formats, like text and bitmaps, but doesn't display the list of all formats that are stored in the clipboard. InsideClipboard is a small utility that displays the binary content of all formats that are currently stored in the clipboard, and allow you to save the content of specific format into a binary file.",
7 | "url": "https://www.nirsoft.net/utils/insideclipboard.zip",
8 | "hash": "54f7c48f9c270bbddfa4e8b5c055d862d481622480f1c9395965d5e0468006df",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/insideclipboard.zip"
11 | },
12 | "bin": "InsideClipboard.exe",
13 | "shortcuts": [
14 | [
15 | "InsideClipboard.exe",
16 | "NirSoft\\InsideClipboard - Displays the content of all clipboard formats"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/batteryinfoview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/battery_information_view.html",
3 | "checkver": "BatteryInfoView v(\\d+\\.\\d\\d)",
4 | "version": "1.25",
5 | "license": "freeware",
6 | "description": "BatteryInfoView is a small utility for laptops and netbook computers that displays the current status and information about your battery. The displayed battery information includes the battery name, manufacture name, serial number, manufacture date, power state (charging/discharging), current battery capacity, full charged capacity, voltage, charge/discharge rate, and more... BatteryInfoView also provides a log window, which adds a new log line containing the battery status every 30 seconds or any other time interval that you choose.",
7 | "url": "https://www.nirsoft.net/utils/batteryinfoview.zip",
8 | "hash": "ecbf6ecb79d19c821f04c39f5c622ed85c38f5a6deeedc442366f175a2d016e1",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/batteryinfoview.zip"
11 | },
12 | "bin": "BatteryInfoView.exe",
13 | "shortcuts": [
14 | [
15 | "BatteryInfoView.exe",
16 | "NirSoft\\BatteryInfoView - Displays battery information"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/chromehistoryview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/chrome_history_view.html",
3 | "checkver": "ChromeHistoryView v(\\d+\\.\\d\\d)",
4 | "version": "1.53",
5 | "license": "freeware",
6 | "description": "ChromeHistoryView is a small utility that reads the history data file of Google Chrome Web browser, and displays the list of all visited Web pages in the last days. For each visited Web page, the following information is displayed: URL, Title, Visit Date/Time, Number of visits, number of times that the user typed this address (Typed Count), Referrer, and Visit ID. You can select one or more history items, and them export them into html/xml/csv/text file, or copy the information to the clipboard and paste it into Excel.",
7 | "url": "https://www.nirsoft.net/utils/chromehistoryview.zip",
8 | "hash": "2ec1c491db61f9f003ea2d8b9c01773a298ec4f46eb838b2ef277b02d16d9ba7",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/chromehistoryview.zip"
11 | },
12 | "bin": "ChromeHistoryView.exe",
13 | "shortcuts": [
14 | [
15 | "ChromeHistoryView.exe",
16 | "NirSoft\\ChromeHistoryView - View the browsing history of Chrome"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/netconnectchoose.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/net_connect_choose.html",
3 | "checkver": "NetConnectChoose v(\\d+\\.\\d\\d)",
4 | "version": "1.10",
5 | "license": "freeware",
6 | "description": "NetConnectChoose is a simple tool that allows you to easily choose the default Internet connection that will be used by all Internet applications, when you have more than a single Internet connection on the same time. (Each connection on different network adapter) It also displays extensive information about every active network/Internet connection, including network adapter name, MAC Address, Name Servers, MTU, Interface Speed, current incoming/outgoing data speed, number of received/sent packets, received/sent bytes, and more...",
7 | "url": "https://www.nirsoft.net/utils/netconnectchoose.zip",
8 | "hash": "a2c9735688b3d763508d5b5012309604ffd365d09f3f2a99e72bc4aff906b132",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/netconnectchoose.zip"
11 | },
12 | "bin": "NetConnectChoose.exe",
13 | "shortcuts": [
14 | [
15 | "NetConnectChoose.exe",
16 | "NirSoft\\NetConnectChoose - Set default Internet connection"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/skypecontactsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/skype_contacts_view.html",
3 | "checkver": "SkypeContactsView v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "SkypeContactsView is a simple tool that displays the list of all Skype contacts stored in the local database file of Skype. For each contact, one or more of the following fields are displayed: Skype Name, Full Name, Display Name, Gender, ID, Birthday, Profile Time, Last Online Time, Last Used Time, Phone, Emails, and more... SkypeContactsView also allows you to export the contacts list into text/tab-delimited/comma-delimited/xml/html file, or copy them to the clipboard and then paste them into Excel or other spreadsheet application.",
7 | "url": "https://www.nirsoft.net/utils/skypecontactsview.zip",
8 | "hash": "03a920762ff09cf20b5328e2f6700089b0dfef1bf893d3a14c6868c041943120",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/skypecontactsview.zip"
11 | },
12 | "bin": "SkypeContactsView.exe",
13 | "shortcuts": [
14 | [
15 | "SkypeContactsView.exe",
16 | "NirSoft\\SkypeContactsView - Displays the Skype contacts"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/firefoxdownloadsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/firefox_downloads_view.html",
3 | "checkver": "FirefoxDownloadsView v(\\d+\\.\\d\\d)",
4 | "version": "1.40",
5 | "license": "freeware",
6 | "description": "This utility displays the list of the latest files that you downloaded with Firefox. For every download record, the following information is displayed: Download URL, Download Filename (with full path), Referrer, MIME Type, File Size, Start/End Time, Download Duration, and Average Download Speed. You can easily select one or more downloads, and then save the list into xml/html/text/csv file or copy the downloads information to the clipboard and paste it into Excel or other spreadsheet application.",
7 | "url": "https://www.nirsoft.net/utils/firefoxdownloadsview.zip",
8 | "hash": "5bdb9f62367b5be0069545177beb443b7cbc8f22f0382c997a635e1719139afc",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/firefoxdownloadsview.zip"
11 | },
12 | "bin": "FirefoxDownloadsView.exe",
13 | "shortcuts": [
14 | [
15 | "FirefoxDownloadsView.exe",
16 | "NirSoft\\FirefoxDownloadsView - Displayed the list of downloaded files in Fir"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/safaricacheview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/safari_cache_view.html",
3 | "checkver": "SafariCacheView v(\\d+\\.\\d\\d)",
4 | "version": "1.11",
5 | "license": "freeware",
6 | "description": "SafariCacheView is a simple utility for Windows that reads and parses the cache file of Safari Web browser (cache.db) and displays the list of all cached files in a simple table. Every cache information line includes the following information: Filename, Content Type, URL, Content Length, Server Name, Server Time, Expiration Time, Last Modified Time, Content Encoding, and Referrer. SafariCacheView also allows you to select one or more cache items and then extract them into the desired folder or save the cache list into html/text/xml/csv file.",
7 | "url": "https://www.nirsoft.net/utils/safaricacheview.zip",
8 | "hash": "f4fb700d4aab6c28d96d247f7824446081903f8d502c2948f530f71ab600bd3e",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/safaricacheview.zip"
11 | },
12 | "bin": "SafariCacheView.exe",
13 | "shortcuts": [
14 | [
15 | "SafariCacheView.exe",
16 | "NirSoft\\SafariCacheView - Cache viewer for Safari Web browser"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/wifihistoryview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/wifi_history_view.html",
3 | "checkver": "WifiHistoryView v(\\d+\\.\\d\\d)",
4 | "version": "1.65",
5 | "license": "freeware",
6 | "description": "WifiHistoryView is a simple tool for Windows 10/8/7/Vista that displays the history of connections to wireless networks on your computer. For every event that the computer connected to a wireless network or disconnected from it, the following information is displayed: The date/time that the event occurred, network name (SSID), profile name, network adapter name, BSSID of the router/Access Point, and more... WifiHistoryView can read the wifi history information from a running system or from external event log file of another computer.",
7 | "url": "https://www.nirsoft.net/utils/wifihistoryview.zip",
8 | "hash": "5920bdf3dd4a7e6d53265c90b8c343e13592ec7dd23a97d7adecf36e8b1d2163",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/wifihistoryview.zip"
11 | },
12 | "bin": "WifiHistoryView.exe",
13 | "shortcuts": [
14 | [
15 | "WifiHistoryView.exe",
16 | "NirSoft\\WifiHistoryView - Wireless networks Connections History Viewer"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/domainhostingview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/domain_hosting_view.html",
3 | "checkver": "DomainHostingView v(\\d+\\.\\d\\d)",
4 | "version": "1.82",
5 | "license": "freeware",
6 | "description": "DomainHostingView is a utility for Windows that collects extensive information about a domain by using a series of DNS and WHOIS queries, and generates HTML report that can be displayed in any Web browser. The information displayed by the report of DomainHostingView includes: the hosting company or data center that hosts the Web server, mail server, and domain name server (DNS) of the specified domain, the created/changed/expire date of the domain, domain owner, domain registrar that registered the domain, list of all DNS records, and more...",
7 | "url": "https://www.nirsoft.net/utils/domainhostingview.zip",
8 | "hash": "19840123792425409b10d6259cb6c22cbbb3a6e1e1cc8b909926a71268a77fe9",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/domainhostingview.zip"
11 | },
12 | "bin": "DomainHostingView.exe",
13 | "shortcuts": [
14 | [
15 | "DomainHostingView.exe",
16 | "NirSoft\\DomainHostingView - Creates HTML report for a domain"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/appresourcesusageview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/app_resources_usage_view.html",
3 | "checkver": "AppResourcesUsageView v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "AppResourcesUsageView extracts and displays the application resources usage information stored in the SRUDB.dat database of Windows 10 and Windows 11. The application resources usage data is automatically collected by Windows operating systems and includes the following information: Record ID, Timestamp, Application, User, Cycle Time (Foreground/Background), Face Time, Context Switches (Foreground/Background), Bytes Read/Written (Foreground/Background), Read/Write Operations Count (Foreground/Background).",
7 | "url": "https://www.nirsoft.net/utils/appresourcesusageview.zip",
8 | "hash": "59b01dff53c18edf6d465f9c1b86250b2ff701780918a071071d250fd63567d9",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/appresourcesusageview.zip"
11 | },
12 | "bin": "AppResourcesUsageView.exe",
13 | "shortcuts": [
14 | [
15 | "AppResourcesUsageView.exe",
16 | "NirSoft\\AppResourcesUsageView - View application resources usage information"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/countrytraceroute.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/country_traceroute.html",
3 | "checkver": "CountryTraceRoute v(\\d+\\.\\d\\d)",
4 | "version": "1.50",
5 | "license": "freeware",
6 | "description": "CountryTraceRoute is a Traceroute utility, similar to the tracert tool of Windows, but with graphical user interface, and it's also much faster than tracert of Windows. CountryTraceRoute also displays the country of the owner of every IP address found in the Traceroute. After the Traceroute is completed, you can select all items (Ctrl+A) and then save them into csv/tab-delimited/html/xml file with 'Save Selected Items' option (Ctrl+S) or copy them to the clipboard (Ctrl+C) and then paste the result into Excel or other spreadsheet application.",
7 | "url": "https://www.nirsoft.net/utils/countrytraceroute.zip",
8 | "hash": "4b43a5af9f3d9e7acca64ab861319e1a5953f935374dd6a5cd834f121b0c46f9",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/countrytraceroute.zip"
11 | },
12 | "bin": "CountryTraceRoute.exe",
13 | "shortcuts": [
14 | [
15 | "CountryTraceRoute.exe",
16 | "NirSoft\\CountryTraceRoute - Fast Traceroute with IP country information"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/imagecacheviewer.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/image_cache_viewer.html",
3 | "checkver": "ImageCacheViewer v(\\d+\\.\\d\\d)",
4 | "version": "1.31",
5 | "license": "freeware",
6 | "description": "ImageCacheViewer is a simple tool that scans the cache of your Web browser (Internet Explorer, Firefox, or Chrome), and lists the images displayed in the Web sites that you recently visited. For every cached image file, the following information is displayed: URL of the image, Web browser that was used to visit the page, image type, date/time of the image, browsing time, and file size. When selecting a cache item in the upper pane of ImageCacheViewer, the image is displayed in the lower pane, and you can copy the image to the clipboard by pressing Ctrl+M.",
7 | "url": "https://www.nirsoft.net/utils/imagecacheviewer.zip",
8 | "hash": "0a6364bd1a0a62aa29f9ba5a8a16c56fdf194ad9b424b7f2efd76c73e52c9da7",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/imagecacheviewer.zip"
11 | },
12 | "bin": "ImageCacheViewer.exe",
13 | "shortcuts": [
14 | [
15 | "ImageCacheViewer.exe",
16 | "NirSoft\\ImageCacheViewer - Displays Web browser cache images"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/runtimeclassesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/runtime_classes_view.html",
3 | "checkver": "RuntimeClassesView v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "RuntimeClassesView is a tool for Windows 10 and Windows 11 that displays the list of Windows Runtime (WinRT) classes installed on your system. For every Runtime class, the following information is displayed: Class Name, Filename, Threading, Trust Level, Server, Activation Type, Registry Key, Bitness, Key Modified Time, CLSID, and file version information. When selecting a Windows Runtime class in the upper pane, this tool tries to get the list of interfaces implemented by the selected class and the list is displayed in the lower pane.",
7 | "url": "https://www.nirsoft.net/utils/runtimeclassesview.zip",
8 | "hash": "490144a2ca73a4bbc5bf46eb0c806c4131c64eafaaf18fe45d134e31d59a5823",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/runtimeclassesview.zip"
11 | },
12 | "bin": "RuntimeClassesView.exe",
13 | "shortcuts": [
14 | [
15 | "RuntimeClassesView.exe",
16 | "NirSoft\\RuntimeClassesView - View the list of Windows Runtime classes"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/turnedontimesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/computer_turned_on_times.html",
3 | "checkver": "TurnedOnTimesView v(\\d+\\.\\d\\d)",
4 | "version": "1.46",
5 | "license": "freeware",
6 | "description": "TurnedOnTimesView is a simple tool that analyses the event log of Windows operating system, and detects the time ranges that your computer was turned on. For every period of time that the computer was turned on, the following information is displayed: Startup Time, Shutdown Time, Duration, Shutdown Reason, Shutdown Type, Shutdown Process, and Shutdown Code. TurnedOnTimesView allows you to get this information from your local computer, and from remote computer on your network if you have enough privilege to read the event log of Windows remotely.",
7 | "url": "https://www.nirsoft.net/utils/turnedontimesview.zip",
8 | "hash": "1a1c1e6ed4583acb7b0a8960b34f37797fed81fe65dab1c33d1353e3923a9c4e",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/turnedontimesview.zip"
11 | },
12 | "bin": "TurnedOnTimesView.exe",
13 | "shortcuts": [
14 | [
15 | "TurnedOnTimesView.exe",
16 | "NirSoft\\TurnedOnTimesView - View when your computer was turned on"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/nk2view.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/outlook_nk2_autocomplete.html",
3 | "checkver": "NK2View v(\\d+\\.\\d\\d)",
4 | "version": "1.43",
5 | "license": "freeware",
6 | "description": "Each time that you send a new message in Outlook, the emails that you type in To/Cc fields, are automatically inserted into the AutoComplete list, so in the next time that you type an email address, Outlook automatically completes the right email address for you. The AutoComplete file of Outlook is stored under [Your Profile]\\Application Data\\Microsoft\\Outlook , and it always saved as the profile name of Outlook with .NK2 extension. This utility reads the AutoComplete file of Outlook (with .NK2 extension), displays all email records stored in it, and allows you to easily export these records into text/html/xml file.",
7 | "url": "https://www.nirsoft.net/utils/nk2view.zip",
8 | "hash": "03b80609afa79346e7a198beb5ec2f703cc5b698d09087403c51ccf022296d68",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/nk2view.zip"
11 | },
12 | "bin": "nk2view.exe",
13 | "shortcuts": [
14 | [
15 | "nk2view.exe",
16 | "NirSoft\\NK2View - View the content of Outlook .NK2 file"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/securityquestionsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/security_questions_view.html",
3 | "checkver": "SecurityQuestionsView v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "SecurityQuestionsView is a tool for Windows 10 that allows you to view the security questions and their answers stored in the Registry by Windows 10 operating system. SecurityQuestionsView can decrypt the security questions stored on your current running system (Requires elevation) and it can also decrypt the security questions stored on external hard drive. SecurityQuestionsView displays the security questions of all users on your system that chose to set their security questions, for every user there are usually 3 questions.",
7 | "url": "https://www.nirsoft.net/utils/securityquestionsview.zip",
8 | "hash": "9828559bc09a569bb2aaf134401d705db8441c2f9a1a0c37e1d7d14006f9b4e4",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/securityquestionsview.zip"
11 | },
12 | "bin": "SecurityQuestionsView.exe",
13 | "shortcuts": [
14 | [
15 | "SecurityQuestionsView.exe",
16 | "NirSoft\\SecurityQuestionsView - View Windows 10 security questions"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | This is free and unencumbered software released into the public domain.
2 |
3 | Anyone is free to copy, modify, publish, use, compile, sell, or
4 | distribute this software, either in source code form or as a compiled
5 | binary, for any purpose, commercial or non-commercial, and by any
6 | means.
7 |
8 | In jurisdictions that recognize copyright laws, the author or authors
9 | of this software dedicate any and all copyright interest in the
10 | software to the public domain. We make this dedication for the benefit
11 | of the public at large and to the detriment of our heirs and
12 | successors. We intend this dedication to be an overt act of
13 | relinquishment in perpetuity of all present and future rights to this
14 | software under copyright law.
15 |
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
24 | For more information, please refer to
25 |
--------------------------------------------------------------------------------
/bucket/favoritesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/faview.html",
3 | "checkver": "FavoritesView v(\\d+\\.\\d\\d)",
4 | "version": "1.32",
5 | "license": "freeware",
6 | "description": "FavoritesView displays the list of all your Favorties (of Internet Explorer browser) and bookmarks (of Netscape/Mozilla browsers) in a single page. Each line in the list specifies the title of the item, the URL address, the created/modified date of the bookmark item, and the folder name. You select one or more of these bookmarks, and then copy them to the clipboard, delete them (Only for Internet Explorer Favorites), export them to tab-delimited text file, HTML file, or XML file. FavoritesView also allows you to locate duplicate URL addresses in your Favorites/Bookmarks or find specific item by specifying the URL or the title.",
7 | "url": "https://www.nirsoft.net/utils/faview.zip",
8 | "hash": "60f94079be9f34247c424e5512ea42f8633df694d6b7c9cfd38fd5fe863b19c3",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/faview.zip"
11 | },
12 | "bin": "faview.exe",
13 | "shortcuts": [
14 | [
15 | "faview.exe",
16 | "NirSoft\\FavoritesView - Lists Favorties_bookmarks in a single page"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/startuprun.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/strun.html",
3 | "checkver": "StartupRun v(\\d+\\.\\d\\d)",
4 | "version": "1.22",
5 | "license": "freeware",
6 | "description": "The StartupRun utility displays the list of all applications that are loaded automatically when Windows boots. For each application, additional information is displayed (Product Name, File Version, Description, and Company Name), in order to allow you to easily identify the applications that are loaded at Windows startup. if StartupRun identifies a spyware or adware program that runs at startup, it automatically paints it in pink color. In addition, you are allowed to Edit, disable, enable and delete the selected startup entries. You can also save the list of startup items into a text or html files, and even add a new startup entry to the Registry.",
7 | "url": "https://www.nirsoft.net/utils/strun.zip",
8 | "hash": "bb4b5eca060e4f7db632b224e971d8a7237e379946c512468ade37ba9eed17a6",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/strun.zip"
11 | },
12 | "bin": "strun.exe",
13 | "shortcuts": [
14 | [
15 | "strun.exe",
16 | "NirSoft\\StartupRun - Displays the applications loaded on startup"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/webbrowserpassview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/web_browser_password.html",
3 | "checkver": "WebBrowserPassView v(\\d+\\.\\d\\d)",
4 | "version": "2.12",
5 | "license": "freeware",
6 | "description": "WebBrowserPassView is a password recovery tool that reveals the passwords stored by the following Web browsers: Internet Explorer (Version 4.0 - 8.0), Mozilla Firefox (All Versions), Google Chrome, and Opera. This tool can be used to recover your lost/forgotten password of any Website, including popular Web sites, like Facebook, Yahoo, Google, and GMail, as long as the password is stored by your Web Browser. After retrieving your lost passwords, you can save them into text/html/csv/xml file, by using the 'Save Selected Items' option (Ctrl+S).",
7 | "url": "https://www.nirsoft.net/toolsdownload/webbrowserpassview.zip",
8 | "hash": "ae05a1f901bdcd1b40c598b6563c08fbaac998e3e4c7fda36ab967f8f174940f",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/webbrowserpassview.zip"
11 | },
12 | "bin": "WebBrowserPassView.exe",
13 | "shortcuts": [
14 | [
15 | "WebBrowserPassView.exe",
16 | "NirSoft\\WebBrowserPassView - Recover lost passwords from your Web browser"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/webvideocap.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/web_video_capture.html",
3 | "checkver": "WebVideoCap v(\\d+\\.\\d\\d)",
4 | "version": "1.41",
5 | "license": "freeware",
6 | "description": "While watching a video in a Web site, you may sometimes want to save the video into your local drive, and then play it offline later. This utility allows you to capture .flv (Flash Video) files and RTSP streams while the Web browser download and play them inside a Web page. After the entire video file is downloaded and played by the Web browser, the video file is saved in the folder that you selected, and you can play it offline later with any Video player. WebVideoCap can capture the video files of most popular video-sharing sites, including YouTube, Google Video, Yahoo Video, iFilm, Metacafe, Putfile, and more...",
7 | "url": "https://www.nirsoft.net/utils/webvideocap.zip",
8 | "hash": "394bf3835ce0ad7e0e880763ee3ec1332de59ddbe2c9d5317756f742cd2968ed",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/webvideocap.zip"
11 | },
12 | "bin": "WebVideoCap.exe",
13 | "shortcuts": [
14 | [
15 | "WebVideoCap.exe",
16 | "NirSoft\\WebVideoCap - Capture Flash Video files and RTSP streams"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/extpassword.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/external_drive_password_recovery.html",
3 | "checkver": "ExtPassword v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "ExtPassword! is tool for Windows that allows you to recover passwords stored on external drive plugged to your computer. ExtPassword! can decrypt and extract multiple types of passwords and essential information, including passwords of common Web browsers, passwords of common email software, dialup/VPN passwords, wireless network keys, Windows network credentials, Windows product key, Windows security questions. This tool might be useful if you have a disk with Windows operating system that cannot boot anymore, but most files on this hard drive are still accessible and you need to extract your passwords from it.",
7 | "url": "https://www.nirsoft.net/utils/extpassword.zip",
8 | "hash": "03ad8c2630d0a483549b6d8ce95fe59ab60d5dcc0f53a6f3e7deef517995caeb",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/extpassword.zip"
11 | },
12 | "bin": "ExtPassword.exe",
13 | "shortcuts": [
14 | [
15 | "ExtPassword.exe",
16 | "NirSoft\\ExtPassword - External Drive Password Recovery"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/macaddressview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/mac_address_lookup_find.html",
3 | "checkver": "MACAddressView v(\\d+\\.\\d\\d)",
4 | "version": "1.48",
5 | "license": "freeware",
6 | "description": "MACAddressView is a MAC address lookup tool that allows you to easily find the company details (company name, address, and country) according to the MAC address of a product. MACAddressView also allows you to find MAC address records according to the company name, company address, or country name. After finding the desired MAC address records, you can save them into text/xml/HTML/csv file file or copy them to the clipboard and paste them into Excel or other applications. MACAddressView doesn't send any request to a remote server, it simply uses the internal MAC addresses dadabase stored inside the .exe file.",
7 | "url": "https://www.nirsoft.net/utils/macaddressview.zip",
8 | "hash": "ab0439c04e469f1eb28d6e26c20520a77e16d0188e3b6bf2a547f3716ac785f6",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/macaddressview.zip"
11 | },
12 | "bin": "MACAddressView.exe",
13 | "shortcuts": [
14 | [
15 | "MACAddressView.exe",
16 | "NirSoft\\MACAddressView - MAC address lookup tool"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/freespacelogview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/free_disk_space_log_view.html",
3 | "checkver": "FreeSpaceLogView v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "FreeSpaceLogView is a tool for Windows 10 that displays a log of free disk space on your system. This tool only works for NTFS formatted disks. For every log item, the following information is displayed: Log Time, Volume Name, Volume Guid, Lowest Free Space, Highest Free Space, Is Boot Volume (Yes/No). The free space log information is taken from the following event log channel: Microsoft-Windows-Ntfs/Operational FreeSpaceLogView allows you to get the disk free space information from your local computer, from remote computer on your network, and from external hard drive plugged to your computer.",
7 | "url": "https://www.nirsoft.net/utils/freespacelogview.zip",
8 | "hash": "1b8fd0ad7b1a376e89f0ae07c8501e03d386a867b8bd4542d3f09a6eac319982",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/freespacelogview.zip"
11 | },
12 | "bin": "FreeSpaceLogView.exe",
13 | "shortcuts": [
14 | [
15 | "FreeSpaceLogView.exe",
16 | "NirSoft\\FreeSpaceLogView - View log of free disk space on Windows"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/bluetoothlogview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/bluetooth_log_view.html",
3 | "checkver": "BluetoothLogView v(\\d+\\.\\d\\d)",
4 | "version": "1.12",
5 | "license": "freeware",
6 | "description": "BluetoothLogView is a small utility that monitors the activity of Bluetooth devices around you, and displays a log of Bluetooth devices on the main window. Every time that a new Bluetooth device arrives to your area and when the device leaves your area, a new log line is added with the following information: Device Name, Device Address, Event Time, Event Type ('Device Arrival' or 'Device Left'), Device Type, and the company that created the device. BluetoothLogView also allows you to specify a description for every device (according to its MAC address) that will appear under the 'Description' column.",
7 | "url": "https://www.nirsoft.net/utils/bluetoothlogview.zip",
8 | "hash": "baaf54b422aa8a5c5dd6a21e842f40c04186fd5a33bf6c126538009ffc3f31c9",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/bluetoothlogview.zip"
11 | },
12 | "bin": "BluetoothLogView.exe",
13 | "shortcuts": [
14 | [
15 | "BluetoothLogView.exe",
16 | "NirSoft\\BluetoothLogView - Creates log of Bluetooth activity around you"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/esedatabaseview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/ese_database_view.html",
3 | "checkver": "ESEDatabaseView v(\\d+\\.\\d\\d)",
4 | "version": "1.74",
5 | "license": "freeware",
6 | "description": "ESEDatabaseView is a simple utility that reads and displays the data stored inside Extensible Storage Engine (ESE) database (Also known as 'Jet Blue' or .edb file). It displays a list of all tables available in the opened database file, allows you to choose the desired table to view, and then when you choose a table, it displays all records found in the selected table. ESEDatabaseView also allows you to easily choose one or more records, and then export them into comma-delimited/tab-delimited/html/xml file, or copy the records to the clipboard (Ctrl+C) and then paste them into Excel or other spreadsheet application.",
7 | "url": "https://www.nirsoft.net/utils/esedatabaseview.zip",
8 | "hash": "1ee30f78b41ac3b8486a798f87d43c4f27dd294713899873b150a432056b234f",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/esedatabaseview.zip"
11 | },
12 | "bin": "ESEDatabaseView.exe",
13 | "shortcuts": [
14 | [
15 | "ESEDatabaseView.exe",
16 | "NirSoft\\ESEDatabaseView - View the content of ESE database files"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/winfontsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/windows_fonts_viewer.html",
3 | "checkver": "WinFontsView v(\\d+\\.\\d\\d)",
4 | "version": "1.10",
5 | "license": "freeware",
6 | "description": "WinFontsView is a small utility that enumerates all fonts installed on your system, and displays them in one simple table. For each font, WinFontsView draws 5 samples of the font in different sizes, in order to allow you to easily find and choose the desired font that you need. WinFontsView also allows you to view the fonts as Bold, as Italic or with underline, as well as it allows you to export the fonts list into html file. If you need to find a font in non-English character set, WinFontsView also allows you to choose the right characters set of the fonts and to type the characters displayed in the sample text of each font.",
7 | "url": "https://www.nirsoft.net/utils/winfontsview.zip",
8 | "hash": "1752867afb28afbeec8a48135db1e1fbbd1e4a638ddea5fa4ad1fd487d108de2",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/winfontsview.zip"
11 | },
12 | "bin": "WinFontsView.exe",
13 | "shortcuts": [
14 | [
15 | "WinFontsView.exe",
16 | "NirSoft\\WinFontsView - Display the fonts installed on your system"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/lastactivityview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/computer_activity_view.html",
3 | "checkver": "LastActivityView v(\\d+\\.\\d\\d)",
4 | "version": "1.37",
5 | "license": "freeware",
6 | "description": "LastActivityView is a tool for Windows operating system that collects information from various sources on a running system, and displays a log of actions made by the user and events occurred on this computer. The activity displayed by LastActivityView includes: Running .exe file, Opening open/save dialog-box, Opening file/folder from Explorer or other software, software installation, system shutdown/start, application or system crash, network connection/disconnection and more... You can easily export this information into csv/tab-delimited/xml/html file or copy it to the clipboard and then paste into Excel or other software.",
7 | "url": "https://www.nirsoft.net/utils/lastactivityview.zip",
8 | "hash": "09976fd76ae40a608f424655cda82b2be77c426c88ea95af78378b47630397bf",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/lastactivityview.zip"
11 | },
12 | "bin": "LastActivityView.exe",
13 | "shortcuts": [
14 | [
15 | "LastActivityView.exe",
16 | "NirSoft\\LastActivityView - View latest computer activity"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/officeins.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/officeins.html",
3 | "checkver": "OfficeIns v(\\d+\\.\\d\\d)",
4 | "version": "1.20",
5 | "license": "freeware",
6 | "description": "OfficeIns is a small utility that displays the details of all installed Microsoft Office add-ins on your computer, and allows you to disable/enable them.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/officeins-x64.zip",
10 | "hash": "ea1d9741db87493decdc5981a4347217a9b767ed454f362aa331f6022e39c4a2"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/officeins.zip",
14 | "hash": "e8abe0f5dde125e3f97c8039aa4bc4c9078ce6961797e0532a934567ea1b594e"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/officeins-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/officeins.zip"
24 | }
25 | }
26 | },
27 | "bin": "OfficeIns.exe",
28 | "shortcuts": [
29 | [
30 | "OfficeIns.exe",
31 | "NirSoft\\OfficeIns - Microsoft Office add-ins Manager"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/webcamimagesave.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/web_cam_image_capture.html",
3 | "checkver": "WebCamImageSave v(\\d+\\.\\d\\d)",
4 | "version": "1.11",
5 | "license": "freeware",
6 | "description": "WebCamImageSave is simple WebCam capture utility that allows you to easily capture a still image from your camera every number of seconds that you choose, and save it into image file (.jpg, .png, .bmp) on your disk. You can format the saved image filename with the date/time that the image was taken according to your preference, for example: c:\\images\\img20110725_123256.jpg WebCamImageSave also adds a label with the date/time that the image was captured into the image, by using the font, color, and date/time format that you choose. You can also capture a single camera image from command-line, without displaying any user interface.",
7 | "url": "https://www.nirsoft.net/utils/webcamimagesave.zip",
8 | "hash": "afca2873b620ae7dce5d650318d4b1c6cdebe3c3fbf2170bb40b6bf8c9d1536f",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/webcamimagesave.zip"
11 | },
12 | "bin": "WebCamImageSave.exe",
13 | "shortcuts": [
14 | [
15 | "WebCamImageSave.exe",
16 | "NirSoft\\WebCamImageSave - Capture still images from your WebCam"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/mailpassview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/mailpv.html",
3 | "checkver": "Mail PassView v(\\d+\\.\\d\\d)",
4 | "version": "1.92",
5 | "license": "freeware",
6 | "description": "Mail PassView is a small password-recovery tool that reveals the passwords and other account details for the following email clients: Outlook Express Microsoft Outlook 2000 (POP3 and SMTP Accounts only) Microsoft Outlook 2002/2003 (POP3, IMAP, HTTP and SMTP Accounts) IncrediMail Eudora Netscape 6.x/7.x Mozilla Thunderbird Group Mail Free Yahoo! Mail - If the password is saved in Yahoo! Messenger application. Hotmail/MSN mail - If the password is saved in MSN Messenger application. Gmail - If the password is saved by Gmail Notifier application. For each email account, the following fields are displayed: Account Name, Application, Email, Server, Server Type (POP3/IMAP/SMTP), User Name, and the Password.",
7 | "url": "https://www.nirsoft.net/toolsdownload/mailpv.zip",
8 | "hash": "b95fce07879c83cdbc8e1e4bb5d6bc4f5a552049db28d15a1427a16e4296200f",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/mailpv.zip"
11 | },
12 | "bin": "mailpv.exe",
13 | "shortcuts": [
14 | [
15 | "mailpv.exe",
16 | "NirSoft\\Mail PassView - Recovers email passwords"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/tcpconnectproblemview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/tcp_connect_problem_view.html",
3 | "checkver": "TCPConnectProblemView v(\\d+\\.\\d\\d)",
4 | "version": "1.07",
5 | "license": "freeware",
6 | "description": "The TCPConnectProblemView tool monitors the TCP connections on your system and displays an alert when a software tries to initiate a TCP connection and there is no response from the server. When a problem with a TCP connection is detected , TCPConnectProblemView adds a new entry with the following information: Process Name, Process ID, Detected On (date/time), Local Port, Local IP, Remote Port, Remote IP, Remote Host. TCPConnectProblemView also allows you to automatically close any TCP socket with no response from the server, in order to decrease the time you wait for any software to display an error message (IPv4 only).",
7 | "url": "https://www.nirsoft.net/utils/tcpconnectproblemview.zip",
8 | "hash": "1a1567676efec408d1752c6ac780c7a620126a4c12d54a7f6ea7351c41201622",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/tcpconnectproblemview.zip"
11 | },
12 | "bin": "TCPConnectProblemView.exe",
13 | "shortcuts": [
14 | [
15 | "TCPConnectProblemView.exe",
16 | "NirSoft\\TCPConnectProblemView - Monitor TCP connection problems"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/sysexporter.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/sysexp.html",
3 | "checkver": "SysExporter v(\\d+\\.\\d\\d)",
4 | "version": "1.77",
5 | "license": "freeware",
6 | "description": "SysExporter utility allows you to grab the data stored in standard list-views, tree-views, list boxes, and combo boxes from almost any application running on your system, and export it to text, HTML or XML file.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/sysexp-x64.zip",
10 | "hash": "cd808bccb6388b38b9e5a7f1eec92ff8fe90cc23683d8fa98fe19e5132c62e54"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/sysexp.zip",
14 | "hash": "7b1e5e8a3a4432d82064fac051ed2415d2a6f243a778142afb89f90bc408f77b"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/sysexp-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/sysexp.zip"
24 | }
25 | }
26 | },
27 | "bin": "sysexp.exe",
28 | "shortcuts": [
29 | [
30 | "sysexp.exe",
31 | "NirSoft\\SysExporter - Grab data stored in list-views_ list boxes"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/currprocess.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/cprocess.html",
3 | "checkver": "CurrProcess v(\\d+\\.\\d\\d)",
4 | "version": "1.13",
5 | "license": "freeware",
6 | "description": "CurrProcess utility displays the list of all processes currently running on your system. For each process, you can view the list of all modules (DLL files) that the process loads into memory. for all processes and modules, additional useful information is also displayed: product name, version, company name, description of the file, the size of the file, and more. In addition, CurrProcess allows you to do the following actions: * Change the priority of a process. * Kill a process. * Dump memory of process into a text file. * Create HTML report containing information about a process with the list of all modules that it loads into memory. * Save the list of all running processes into text or HTML file. * Copy process or module information to the clipboard.",
7 | "url": "https://www.nirsoft.net/utils/cprocess.zip",
8 | "hash": "8bf074edcee01be5ff77253d25533a8961907e50cd6629351490814b6b82a870",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/cprocess.zip"
11 | },
12 | "bin": "CProcess.exe",
13 | "shortcuts": [
14 | [
15 | "CProcess.exe",
16 | "NirSoft\\CurrProcess - List all processes running on your system"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/wirelesskeydump.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/wireless_key_dump.html",
3 | "checkver": "WirelessKeyDump v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "WirelessKeyDump is a console application (Command Prompt) that dumps the list of all wireless keys stored by the wireless networks module of Windows operating system.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/wirelesskeydump-x64.zip",
10 | "hash": "886e8883927701dbd8b043092011608a0ec7f8e0055d1378ef1174548ef2050c"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/wirelesskeydump.zip",
14 | "hash": "eec872091355150ccefc778560a84c6a3f9320201997aa5ac769d4677a8e17c1"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/wirelesskeydump-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/wirelesskeydump.zip"
24 | }
25 | }
26 | },
27 | "bin": "WirelessKeyDump.exe",
28 | "shortcuts": [
29 | [
30 | "WirelessKeyDump.exe",
31 | "NirSoft\\WirelessKeyDump - dumps the list of all wireless keys"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/cleanafterme.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/clean_after_me.html",
3 | "checkver": "CleanAfterMe v(\\d+\\.\\d\\d)",
4 | "version": "1.37",
5 | "license": "freeware",
6 | "description": "CleanAfterMe allows you to easily clean files and Registry entries that are automatically created by the Windows operating system during your regular computer work. With CleanAfterMe, you can clean the cookies/history/cache/passwords of Internet Explorer, the 'Recent' folder, the Registry entries that record the last opened files, the temporary folder of Windows, the event logs, the Recycle Bin, and more. CleanAfterMe is a portable application. This means that you can run it without any installation and without leaving any trace in the Registry. You can also run this program from a USB flash drive: In order to do that, simply copy the executable file of CleanAfterMe (CleanAfterMe.exe) into the USB flash drive, and run it from there.",
7 | "url": "https://www.nirsoft.net/utils/cleanafterme.zip",
8 | "hash": "9d2c0580075ff8777e043260af63c8e082cbfc1fd5ac4a002c0a8ecd87cfc132",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/cleanafterme.zip"
11 | },
12 | "bin": "CleanAfterMe.exe",
13 | "shortcuts": [
14 | [
15 | "CleanAfterMe.exe",
16 | "NirSoft\\CleanAfterMe - Clean files and Registry in your system"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/shellmenuview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/shell_menu_view.html",
3 | "checkver": "ShellMenuView v(\\d+\\.\\d\\d)",
4 | "version": "1.41",
5 | "license": "freeware",
6 | "description": "ShellMenuView is a small utility that display the list of static menu items that appeared in the context menu when you right-click a file/folder on Windows Explorer, and allows you to easily disable unwanted menu items.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/shmnview-x64.zip",
10 | "hash": "e5a5b7c4a6ce2772782243027c73974d9699f2ba1d3eab1f53bcff4096635b83"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/shmnview.zip",
14 | "hash": "bd8d233e44155100677f855b61b867b596d2006bd65b4553da6ca5e38f70d483"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/shmnview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/shmnview.zip"
24 | }
25 | }
26 | },
27 | "bin": "shmnview.exe",
28 | "shortcuts": [
29 | [
30 | "shmnview.exe",
31 | "NirSoft\\ShellMenuView - Disable_enable Explorer menu items"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/heapmemview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/heap_memory_view.html",
3 | "checkver": "HeapMemView v(\\d+\\.\\d\\d)",
4 | "version": "1.05",
5 | "license": "freeware",
6 | "description": "HeapMemView is a small utility that allows you to view the content of all memory blocks allocated in the heap of the process the you select. This tool can be useful for developers that need to trace memory leaks in their software.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/heapmemview-x64.zip",
10 | "hash": "0c6e818a2291efaa168fae84956e4d1d25c37fd48d1aedf74eb85c66e36e5010"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/heapmemview.zip",
14 | "hash": "10c70d8e33f1e9cbb842e8920171ec5472db53e652e21a640f5ad9d14964d233"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/heapmemview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/heapmemview.zip"
24 | }
25 | }
26 | },
27 | "bin": "HeapMemView.exe",
28 | "shortcuts": [
29 | [
30 | "HeapMemView.exe",
31 | "NirSoft\\HeapMemView - View the heap memory content"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/offlineregistryview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/offline_registry_view.html",
3 | "checkver": "OfflineRegistryView v(\\d+\\.\\d\\d)",
4 | "version": "1.03",
5 | "license": "freeware",
6 | "description": "OfflineRegistryView is a simple tool for Windows that allows you to read offline Registry files from external drive and view the desired Registry key in .reg file format.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/offlineregistryview-x64.zip",
10 | "hash": "71697a8121ab8fbd44ca1a1bd2864e4a24b79f4a7bb1a47075ea7c3a1581063f"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/offlineregistryview.zip",
14 | "hash": "9d7debcd3b8f1c2fe22e7c12fee6646855b44d07abb7b018b87f6c00ac615aec"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/offlineregistryview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/offlineregistryview.zip"
24 | }
25 | }
26 | },
27 | "bin": "OfflineRegistryView.exe",
28 | "shortcuts": [
29 | [
30 | "OfflineRegistryView.exe",
31 | "NirSoft\\OfflineRegistryView - View offline Registry files"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/regdllview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/registered_dll_view.html",
3 | "checkver": "RegDllView v(\\d+\\.\\d\\d)",
4 | "version": "1.60",
5 | "license": "freeware",
6 | "description": "RegDllView is a small utility that displays the list of all registered dll/ocx/exe files (COM registration). For each registered file, you can view the last date/time that it was registered, and the list of all registration entries (CLSID/ProgID).",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/regdllview-x64.zip",
10 | "hash": "1fbc281eb30a7af5886adfd480d96bcd0a46489709f60d0092bd26d7908b5cea"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/regdllview.zip",
14 | "hash": "06941f3ef54fc7aee2216a590f4a3c5d3868ea2b42a78fc7790182548399419f"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/regdllview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/regdllview.zip"
24 | }
25 | }
26 | },
27 | "bin": "RegDllView.exe",
28 | "shortcuts": [
29 | [
30 | "RegDllView.exe",
31 | "NirSoft\\RegDllView - Displays the list of all registered files"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/driverview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/driverview.html",
3 | "checkver": "DriverView v(\\d+\\.\\d\\d)",
4 | "version": "1.50",
5 | "license": "freeware",
6 | "description": "DriverView utility displays the list of all device drivers currently loaded on your system. For each driver in the list, additional useful information is displayed: load address of the driver, description, version, product name, company that created the driver, and more.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/driverview-x64.zip",
10 | "hash": "717a6dbb32dbab1fa3dc576e4213c97a8e5e973497e01b1976afaf00cc403f98"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/driverview.zip",
14 | "hash": "0a38cb5b73d08321de1da21fc5b79c999e97bcbbf412d4e7d967bfb071a50d3e"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/driverview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/driverview.zip"
24 | }
25 | }
26 | },
27 | "bin": "DriverView.exe",
28 | "shortcuts": [
29 | [
30 | "DriverView.exe",
31 | "NirSoft\\DriverView - Lists all loaded device drivers"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/firmwaretablesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/firmware_tables_view.html",
3 | "checkver": "FirmwareTablesView v(\\d+\\.\\d\\d)",
4 | "version": "1.02",
5 | "license": "freeware",
6 | "description": "FirmwareTablesView is a simple tool that displays a list of firmware tables (ACPI, SMBIOS) stored on your system. You can view the content of these tables in Hex-dump format and export them to a binary file.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/firmwaretablesview-x64.zip",
10 | "hash": "dc5db8daf90d6b678566557dccaa3e0c7b863f659cb65ab84f78560ea148f47f"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/firmwaretablesview.zip",
14 | "hash": "8e97e6854fa997f08e10607a066aa36278e539969c5d44eb5f44144af23df790"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/firmwaretablesview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/firmwaretablesview.zip"
24 | }
25 | }
26 | },
27 | "bin": "FirmwareTablesView.exe",
28 | "shortcuts": [
29 | [
30 | "FirmwareTablesView.exe",
31 | "NirSoft\\FirmwareTablesView - Displays a list of firmware tables"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/dialupass.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/dialupass.html",
3 | "checkver": "Dialupass v(\\d+\\.\\d\\d)",
4 | "version": "3.61",
5 | "license": "freeware",
6 | "description": "When you use the \"Dial-Up Networking\" module for connecting to the internet or to other networks, the operating system give you the option to store the password and use it when it needed. Although the password is constantly stored in your computer, the operating system doesn't allow you to watch it. if you forget your password and you want to extract it from your computer, you can use the Dialupass utility for viewing the password. This utility enumerates all Dial-Up entries on your computer and reveals their logon details: User Name, Password and Domain. it works perfectly in the following operating systems: Windows 95, Windows 98, Windows ME, Windows NT, Windows 2000, and Windows XP. In Windows 2000 and Windows XP, the Dialupass utility can reveal the Dial-Up passwords only if you are logged on with administrator privileges.",
7 | "url": "https://www.nirsoft.net/toolsdownload/dialupass.zip",
8 | "hash": "a79c79fa0ef5d6e95424ecc92af8c6c2719f4a8275fe7825dffb071bec2b1305",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/toolsdownload/dialupass.zip"
11 | },
12 | "bin": "Dialupass.exe",
13 | "shortcuts": [
14 | [
15 | "Dialupass.exe",
16 | "NirSoft\\Dialupass - Recovers Dial-Up passwords"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/tabletextcompare.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/csv_file_comparison.html",
3 | "checkver": "TableTextCompare v(\\d+\\.\\d\\d)",
4 | "version": "1.20",
5 | "license": "freeware",
6 | "description": "TableTextCompare is a small utility that allows you to easily compare 2 tab-delimited or comma-delimited (csv) files, and find out the difference between the 2 files. You can use this tool for comparing 2 different snapshots of data, created by other NirSoft utilities, like DriverView, ServiWin, USBDeview, CurrPorts, WirelessNetView, ShellExView, and many others... For example, You can use DriverView utility to save 2 snapshots of loaded drivers list into a tab-delimited file, and then use TableTextCompare to easily find out which device drivers were added, removed, or changed since the time that the first snapshot was taken. TableTextCompare can make the comparison even if the records of the 2 files are not sorted in the same order, or if the fields are not positioned in the same order.",
7 | "url": "https://www.nirsoft.net/utils/tabletextcompare.zip",
8 | "hash": "9450b1ebea00d1ec6e868e740e8c35fc7a8aff0cdd0ee05da7066e95f2ace88e",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/tabletextcompare.zip"
11 | },
12 | "bin": "TableTextCompare.exe",
13 | "shortcuts": [
14 | [
15 | "TableTextCompare.exe",
16 | "NirSoft\\TableTextCompare - Compare tab-delimited_csv files"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/gdiview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/gdi_handles.html",
3 | "checkver": "GDIView v(\\d+\\.\\d\\d)",
4 | "version": "1.26",
5 | "license": "freeware",
6 | "description": "GDIView is a unique tool that displays the list of GDI handles (brushes, pens, fonts, bitmaps, and others) opened by every process. It displays the total count for each type of GDI handle, as well as detailed information about each handle. This tool can be useful for developers that need to trace GDI resources leak in their software.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/gdiview-x64.zip",
10 | "hash": "45aeca625ed56662df1d52cca0f1b6e4ecd373b58ce8dcf07106f07f8dbc63e4"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/gdiview.zip",
14 | "hash": "30dc7eda83eee7826e677c5f27a89d8389fb632476d4e413e332ae73769c32f6"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/gdiview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/gdiview.zip"
24 | }
25 | }
26 | },
27 | "bin": "GDIView.exe",
28 | "shortcuts": [
29 | [
30 | "GDIView.exe",
31 | "NirSoft\\GDIView - Displays the list of GDI handles"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/regfromapp.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/reg_file_from_application.html",
3 | "checkver": "RegFromApp v(\\d+\\.\\d\\d)",
4 | "version": "1.33",
5 | "license": "freeware",
6 | "description": "RegFromApp monitors the Registry changes made by the application that you selected, and creates a standard RegEdit registration file (.reg) that contains all the Registry changes made by the application. You can use the generated .reg file to import these changes with RegEdit when it's needed.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/regfromapp-x64.zip",
10 | "hash": "558ea21f9f63ef12d712228856cafd22f7b83640912cce4701406073ab53c7de"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/regfromapp.zip",
14 | "hash": "54977dc7f645e8b2ede1c40521cd04e3521c454800310cc8589020cec133a18d"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/regfromapp-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/regfromapp.zip"
24 | }
25 | }
26 | },
27 | "bin": "RegFromApp.exe",
28 | "shortcuts": [
29 | [
30 | "RegFromApp.exe",
31 | "NirSoft\\RegFromApp - Creates .reg file from application"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/shortcutsman.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/shman.html",
3 | "checkver": "ShortcutsMan v(\\d+\\.\\d\\d)",
4 | "version": "1.10",
5 | "license": "freeware",
6 | "description": "ShortcutsMan displays the details about all shortcuts that you have on your desktop and under your start menu. Broken shortcuts (shortcuts that point to file that doesn't exist) are automatically painted with pink color. You select one or more shortcuts, and then delete them, resolve them or save the shortcut's details to HTML/Text/XML file.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/shman-x64.zip",
10 | "hash": "66708b64b360b9bb8e14ce0088c4203436988286ab7f16de3046efd7883e967d"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/shman.zip",
14 | "hash": "b998c8dbaf29a07ba69c88793bea71f267ca145c9017b95b75e48c42332a87eb"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/shman-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/shman.zip"
24 | }
25 | }
26 | },
27 | "bin": "shman.exe",
28 | "shortcuts": [
29 | [
30 | "shman.exe",
31 | "NirSoft\\ShortcutsMan - Lists shortcuts on your system"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/mzcookiesview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/mzcv.html",
3 | "checkver": "MZCookiesView v(\\d+\\.\\d\\d)",
4 | "version": "1.60",
5 | "license": "freeware",
6 | "description": "MozillaCookiesView is an alternative to the standard 'Cookie Manager' provided by Firefox and Mozilla browsers. It displays the details of all cookies stored inside the cookies file (cookies.sqlite or cookies.txt) in one table, and allows you to save the cookies list into text, HTML or XML file, delete unwanted cookies, and backup/restore the cookies file.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/mzcv-x64.zip",
10 | "hash": "cace36a7ea185c8a675356f6e3eeb5b1d466666f7853aa9813df486c5178cbdf"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/mzcv.zip",
14 | "hash": "e84d6cb63b8dcca75ad0492bd30741e7fd42e825b3e4c96eef163be7e210b3a9"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/mzcv-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/mzcv.zip"
24 | }
25 | }
26 | },
27 | "bin": "mzcv.exe",
28 | "shortcuts": [
29 | [
30 | "mzcv.exe",
31 | "NirSoft\\MZCookiesView - Cookies Manager for Mozilla and Firefox"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/mmcsnapinsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/mmc_snapins_view.html",
3 | "checkver": "MMCSnapInsView v(\\d+\\.\\d\\d)",
4 | "version": "1.00",
5 | "license": "freeware",
6 | "description": "MMCSnapInsView is a simple tool for Windows that displays the details of all MMC snap-ins installed on your system, including name, description, CLSID, dll file, product name, company name, file version, and more... You can also select multiple MMC snap-ins and then open them in MMC application.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/mmcsnapinsview-x64.zip",
10 | "hash": "2e90f5d55b8bbd92248b75b2fcefc78405347ba6978dac80a337cec487fcf1c4"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/mmcsnapinsview.zip",
14 | "hash": "408599575a191f7e3d999a2e2eda58d16490e4871fe390b8af676907fc45c28b"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/mmcsnapinsview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/mmcsnapinsview.zip"
24 | }
25 | }
26 | },
27 | "bin": "MMCSnapInsView.exe",
28 | "shortcuts": [
29 | [
30 | "MMCSnapInsView.exe",
31 | "NirSoft\\MMCSnapInsView - Displays MMC snapins installed on your system"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/handlecountersview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/handle_counters_view.html",
3 | "checkver": "HandleCountersView v(\\d+\\.\\d\\d)",
4 | "version": "1.18",
5 | "license": "freeware",
6 | "description": "HandleCountersView is a simple tool for Windows that shows the current number of handles (File, Directory, Token, Job, Thread, and so on...) opened by every process running on your system and the change in number of handles since the last time that you reset the counters.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/handlecountersview-x64.zip",
10 | "hash": "b01f6282433915746a86e8be62bab1a6582feb9a12619dd0ca340158ede93734"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/handlecountersview.zip",
14 | "hash": "639191017a02cf01f4260581b1570d77f294577bea7938e8abca1edfb972943c"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/handlecountersview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/handlecountersview.zip"
24 | }
25 | }
26 | },
27 | "bin": "HandleCountersView.exe",
28 | "shortcuts": [
29 | [
30 | "HandleCountersView.exe",
31 | "NirSoft\\HandleCountersView - Shows handle counter for every process"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/nirext.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/nirext.html",
3 | "checkver": "NirExt v(\\d+\\.\\d\\d)",
4 | "version": "1.01",
5 | "license": "freeware",
6 | "description": "NirExt utility adds 3 useful context menu extensions to your Windows Explorer environment: * Folder Properties: This option is available in the context menu when you right-click on a folder in your file system. It allows you change the icon of any folder you want, and change the text that appears when the mouse cursor moves over the folder. * Advanced Run: This option is available in the context menu when you right-click on an executable file (*.EXE). It allows you to instantly run an application with command-line and some other options. * Create Shortcut+: This option is available in the context menu when you right-click on any file in your system. It allows you to instantly create a shortcut and drop it into one of the following folders: Desktop, Start Menu, Programs folder under Start Menu, Common Desktop (for all users), Common Start Menu (for all users), and Common Programs folder (for all users) under Start Menu.",
7 | "url": "https://www.nirsoft.net/utils/nirext.zip",
8 | "hash": "e9b0af090788a9c69cdb17ab2ca909c33a2001f6a80abaddb4cb21e875f986d4",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/nirext.zip"
11 | },
12 | "bin": "nirext.exe",
13 | "shortcuts": [
14 | [
15 | "nirext.exe",
16 | "NirSoft\\NirExt - Adds 3 useful context menu extensions"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/webbrowserbookmarksview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/web_browser_bookmarks_view.html",
3 | "checkver": "WebBrowserBookmarksView v(\\d+\\.\\d\\d)",
4 | "version": "1.13",
5 | "license": "freeware",
6 | "description": "WebBrowserBookmarksView is a simple tool for Windows that displays the details of all bookmarks stored in Chrome and Firefox Web browsers. For every bookmark, the following information is displayed: Title, URL, Folder Name, Folder Path, Position, Created Time, Modified Time (Only Firefox), ID, Guid, Web Browser, and Bookmarks File. WebBrowserBookmarksView allows you to load the bookmarks list from your current running system (current logged in user or all user profiles), from remote computer on your network , and from external hard drive. You can also export the bookmarks list to csv/tab-delimited/html/xml file, copy the bookmarks to the clipboard and then paste them to Excel or other spreadsheet application, and open a Web site from your bookmark in your Smartphone by using QR Code.",
7 | "url": "https://www.nirsoft.net/utils/webbrowserbookmarksview.zip",
8 | "hash": "51bd399158538dd118a9498d9e79a1844d5ddccea538fc1077e4dc1a3fb8e0e3",
9 | "autoupdate": {
10 | "url": "https://www.nirsoft.net/utils/webbrowserbookmarksview.zip"
11 | },
12 | "bin": "WebBrowserBookmarksView.exe",
13 | "shortcuts": [
14 | [
15 | "WebBrowserBookmarksView.exe",
16 | "NirSoft\\WebBrowserBookmarksView - View all bookmarks of Chrome and Firefox"
17 | ]
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/bucket/winlister.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/winlister.html",
3 | "checkver": "WinLister v(\\d+\\.\\d\\d)",
4 | "version": "1.22",
5 | "license": "freeware",
6 | "description": "This utility displays the list of opened windows on your system. For each window, some useful information is displayed: the title, the handle of window, location, size, class name, process number, the name of the program that created the window, and more... In addition, you can easily hide, show or close the selected windows, or save the windows list to text or HTML file.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/winlister-x64.zip",
10 | "hash": "2a07bb34147dea6ca6fbf2be6004ece72cc9ce308f29f86fa2e2d5842b7e997c"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/winlister.zip",
14 | "hash": "1285a20c47498f864bc33a7ab3cfd3c97168cbbbe9e14b1474b0bb5f02cd24a2"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/winlister-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/winlister.zip"
24 | }
25 | }
26 | },
27 | "bin": "winlister.exe",
28 | "shortcuts": [
29 | [
30 | "winlister.exe",
31 | "NirSoft\\WinLister - Displays the list of opened windows"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/deviceioview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/device_io_view.html",
3 | "checkver": "DeviceIOView v(\\d+\\.\\d\\d)",
4 | "version": "1.06",
5 | "license": "freeware",
6 | "description": "DeviceIOView allows you to watch the data transfer between a software or service and a device driver (DeviceIoControl calls). For each call to a device driver, the following information is displayed: Handle, Control Code, number of input bytes, number of output bytes, the name of the device handle, and all the input/output bytes, displayed as Hex dump.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/deviceioview-x64.zip",
10 | "hash": "810308a117d949f923e77a80206489208bf3b5e381f1406934ee5ce9d9537e33"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/deviceioview.zip",
14 | "hash": "6e838ff2bd864e4f004f8051f36a6d275dbb847c624fa9b7328d7f3e5b6e6848"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/deviceioview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/deviceioview.zip"
24 | }
25 | }
26 | },
27 | "bin": "DeviceIOView.exe",
28 | "shortcuts": [
29 | [
30 | "DeviceIOView.exe",
31 | "NirSoft\\DeviceIOView - Watch DeviceIoControl calls"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/bulletspassview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/bullets_password_view.html",
3 | "checkver": "BulletsPassView v(\\d+\\.\\d\\d)",
4 | "version": "1.32",
5 | "license": "freeware",
6 | "description": "BulletsPassView is a password recovery tool that reveals the passwords stored behind the bullets in the standard password text-box of Windows operating system and Internet Explorer Web browser. After revealing the passwords, you can easily copy them to the clipboard or save them into text/html/csv/xml file.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/bulletspassview-x64.zip",
10 | "hash": "7a811e7e8124ead14240c03e76d824adfadef7eead5b1d207e79ac7f14b59e09"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/bulletspassview.zip",
14 | "hash": "d5c801da275540c1713102518e67ed94a1afecbae2418d5b9f94148e338f61e5"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/bulletspassview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/bulletspassview.zip"
24 | }
25 | }
26 | },
27 | "bin": "BulletsPassView.exe",
28 | "shortcuts": [
29 | [
30 | "BulletsPassView.exe",
31 | "NirSoft\\BulletsPassView - Reveals the passwords stored behind the bulle"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/bulkfilechanger.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/bulk_file_changer.html",
3 | "checkver": "BulkFileChanger v(\\d+\\.\\d\\d)",
4 | "version": "1.73",
5 | "license": "freeware",
6 | "description": "BulkFileChanger is a small utility that allows you to create files list from multiple folders, and then make some action on them - Modify their created/modified/accessed time, change their file attribute (Read Only, Hidden, System), run an executable with these files as parameter, and copy/cut paste into Explorer.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/bulkfilechanger-x64.zip",
10 | "hash": "8c329b4162046fad2622516230cb8fe52c5d66a6655fa48a849476fb71de5a6d"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/bulkfilechanger.zip",
14 | "hash": "e718873d7bfa7f2d658c209756e64d002c2714d17dd55c71977eede5975a1e2d"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/bulkfilechanger-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/bulkfilechanger.zip"
24 | }
25 | }
26 | },
27 | "bin": "BulkFileChanger.exe",
28 | "shortcuts": [
29 | [
30 | "BulkFileChanger.exe",
31 | "NirSoft\\BulkFileChanger - Change date_time_attributes of multiple files"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/lsasecretsview.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/lsa_secrets_view.html",
3 | "checkver": "LSASecretsView v(\\d+\\.\\d\\d)",
4 | "version": "1.26",
5 | "license": "freeware",
6 | "description": "LSASecretsView is a small utility that displays the list of all LSA secrets stored in the Registry on your computer. The LSA secrets key is located under HKEY_LOCAL_MACHINE\\Security\\Policy\\Secrets and may contain your RAS/VPN passwords, Autologon password, and other system passwords/keys.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/toolsdownload/lsasecretsview-x64.zip",
10 | "hash": "0cb712678ec4f4f3d96fa1f9ec005d1e8633061408c2f922e15c026670702a63"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/toolsdownload/lsasecretsview.zip",
14 | "hash": "a657dc525edd15474f6e0449a52a418fc525ca2c2237be71ef5f032a5c6ffdb9"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/toolsdownload/lsasecretsview-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/toolsdownload/lsasecretsview.zip"
24 | }
25 | }
26 | },
27 | "bin": "LSASecretsView.exe",
28 | "shortcuts": [
29 | [
30 | "LSASecretsView.exe",
31 | "NirSoft\\LSASecretsView - Displays LSA secrets stored in your computer"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/hashmyfiles.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/hash_my_files.html",
3 | "checkver": "HashMyFiles v(\\d+\\.\\d\\d)",
4 | "version": "2.44",
5 | "license": "freeware",
6 | "description": "HashMyFiles is small utility that allows you to calculate the MD5 and SHA1 hashes of one or more files in your system. You can easily copy the MD5/SHA1 hashes list into the clipboard, or save them into text/html/xml file. HashMyFiles can also be launched from the context menu of Windows Explorer, and display the MD5/SHA1 hashes of the selected file or folder.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/hashmyfiles-x64.zip",
10 | "hash": "ddac50a45e3769b9e4ac4a2f39f0e4f85f690e3f0cb00b8cca91683465e37681"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/hashmyfiles.zip",
14 | "hash": "2eba1e13a92322e9142be6c725bb2536025e534d9b24d1bc650085955b26cad0"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/hashmyfiles-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/hashmyfiles.zip"
24 | }
25 | }
26 | },
27 | "bin": "HashMyFiles.exe",
28 | "shortcuts": [
29 | [
30 | "HashMyFiles.exe",
31 | "NirSoft\\HashMyFiles - Calculate the MD5_SHA1 hashes of your files"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/sniffpass.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/password_sniffer.html",
3 | "checkver": "SniffPass v(\\d+\\.\\d\\d)",
4 | "version": "1.13",
5 | "license": "freeware",
6 | "description": "SniffPass is small utility that listens to your network, capture the passwords that pass through your network adapter, and display them on the screen instantly. SniffPass can capture the passwords of the following Protocols: POP3, IMAP4, SMTP, FTP, and HTTP (basic authentication passwords). You can use this utility to recover lost Web/FTP/Email passwords.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/toolsdownload/sniffpass-x64.zip",
10 | "hash": "4a9e41fe097d31dd6f65490c2c09d2a0ea5d700e1acb33d39a1b31cb75611cac"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/toolsdownload/sniffpass.zip",
14 | "hash": "cb17f0dfa27a94dc8c4f055a6b271ac8e003ac2f7d0f96eba2fb8d03dc585cfb"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/toolsdownload/sniffpass-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/toolsdownload/sniffpass.zip"
24 | }
25 | }
26 | },
27 | "bin": "SniffPass.exe",
28 | "shortcuts": [
29 | [
30 | "SniffPass.exe",
31 | "NirSoft\\SniffPass - Capture passwords on your network"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/lsasecretsdump.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/lsa_secrets_dump.html",
3 | "checkver": "LSASecretsDump v(\\d+\\.\\d\\d)",
4 | "version": "1.21",
5 | "license": "freeware",
6 | "description": "LSASecretsDump is a small console application that extract the LSA secrets from the Registry, decrypt them, and dump them into the console window. The LSA secrets key is located under HKEY_LOCAL_MACHINE\\Security\\Policy\\Secrets and may contain your RAS/VPN passwords, Autologon password, and other system passwords/keys.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/toolsdownload/lsasecretsdump-x64.zip",
10 | "hash": "8d097c09a665fc846cc9389830994a94eaf73ec85c4b8500cfba59113cb20f24"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/toolsdownload/lsasecretsdump.zip",
14 | "hash": "870cbd9d890484147fcf3b0cc93eeef2d80002761fc59341cca526b90ed68529"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/toolsdownload/lsasecretsdump-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/toolsdownload/lsasecretsdump.zip"
24 | }
25 | }
26 | },
27 | "bin": "LSASecretsDump.exe",
28 | "shortcuts": [
29 | [
30 | "LSASecretsDump.exe",
31 | "NirSoft\\LSASecretsDump - Dump the LSA secrets from the Registry"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/bucket/rtmpdumphelper.json:
--------------------------------------------------------------------------------
1 | {
2 | "homepage": "https://www.nirsoft.net/utils/rtmp_dump_helper.html",
3 | "checkver": "RTMPDumpHelper v(\\d+\\.\\d\\d)",
4 | "version": "1.22",
5 | "license": "freeware",
6 | "description": "RTMPDumpHelper is a small utility that can help you to easily download RTMP video/audio streams. By combining this utility and the proxy server of RTMPDump toolkit, you can simply open a Web page containing RTMP video stream in your favorite Web browser, and while watching the video, it'll be saved to your disk automatically as .flv or .mp4 file.",
7 | "architecture": {
8 | "64bit": {
9 | "url": "https://www.nirsoft.net/utils/rtmpdumphelper-x64.zip",
10 | "hash": "205fd770852aee82f2db75e982f2ec3491c2f53f0c9f0285b478e92718da5a61"
11 | },
12 | "32bit": {
13 | "url": "https://www.nirsoft.net/utils/rtmpdumphelper.zip",
14 | "hash": "78a76c871e8bbbaa84f7afc754c29f0fe30fff2271ce198be1ac92ec4c996c43"
15 | }
16 | },
17 | "autoupdate": {
18 | "architecture": {
19 | "64bit": {
20 | "url": "https://www.nirsoft.net/utils/rtmpdumphelper-x64.zip"
21 | },
22 | "32bit": {
23 | "url": "https://www.nirsoft.net/utils/rtmpdumphelper.zip"
24 | }
25 | }
26 | },
27 | "bin": "RTMPDumpHelper.exe",
28 | "shortcuts": [
29 | [
30 | "RTMPDumpHelper.exe",
31 | "NirSoft\\RTMPDumpHelper - Download RTMP streams with RTMPDump toolkit"
32 | ]
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------