Skip to content
View SysAdminDoc's full-sized avatar

Highlights

  • Pro

Block or report SysAdminDoc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
SysAdminDoc/README.md

Sysadmin by day, tool-builder by habit. Everything here is something I actually use.
PowerShell · Python · C# · Kotlin · JavaScript · Rust · C++

Hey, I'm Matt

I do technical support for a medical imaging company during the day, and I build things at night. Some of these are tools I wrote to fix problems at work. Others are side projects, personal apps, or just things I wanted to exist. All of it is stuff I actually use or actively maintain.

More about what I do →

PowerShell · Python · Web Apps · Extensions · Android · Security · Desktop · Media · Guides · Forks

Buy me a coffee on Ko-fi

What's here

This is the index of the 191 free, open-source tools and apps I've published, sorted by where they run, for anyone who wants something that works on the setup they already have.

Pick a category to jump in. Each one has a few suggestions to start with.

PowerShell Python Web Apps Extensions Android
PowerShell
Scripts and tools for Windows.
win11-nvme-driver-patcher
LibreSpot
Network_Security_Auditor

Browse →
🐍 Python
Desktop apps, utilities, and creative tools.
OpenCut
project-nomad-desktop
Vertigo

Browse →
🌐 Web Apps
Browser-based tools and dashboards.
Openshop
StormviewRadar
SkyTrack

Open →
🧩 Extensions
Chrome/Firefox add-ons and userscripts.
Astra-Deck
ScriptVault
AmazonEnhanced

Install →
📱 Android
Apps for your phone.
ZeusWatch
ClearCut
HostShield

Download →
Security Desktop Media Guides Misc
🔒 Security
Network auditing and hardening.
BetterNext
ESET

Browse →
🖥️ Desktop
Windows and cross-platform apps.
MyPortfolio
LocalChromeStore
LocalDesktopStore

Download →
🎬 Media
Video, audio, and stream tools.
VideoSubtitleRemover
VideoCrush
AlphaCut

Download →
📚 Guides
How-to guides and reference docs.
AI_Realism
facebook-exit-guide
android-debloat-list

Read →
🔀 Misc
Forks and side projects.
octopus-factory
LTSC-MicrosoftStore
RcloneBrowser

Explore →

⚡ PowerShell System Utilities -- 30 repos -- Paste-and-run scripts for Windows admin work.

Suggested starting points: win11-nvme-driver-patcher, LibreSpot, Network_Security_Auditor.

win11-nvme-driver-patcher ⭐69 -- GUI to enable Windows Server 2025 NVMe driver on Win11  ⬇ Download

$d="$env:TEMP\win11-nvme-driver-patcher"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/win11-nvme-driver-patcher $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NVMe_Driver_Patcher.ps1"

LibreSpot ⭐14 -- Spotify customization. Automates Spicetify, themes, extensions  ⬇ Download

$d="$env:TEMP\LibreSpot"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/LibreSpot $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\LibreSpot.ps1"

DefenderControl ⭐13 -- WPF GUI to fully disable or re-enable Microsoft Defender  ⬇ Download

$d="$env:TEMP\DefenderControl"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/DefenderControl $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\DefenderControl.ps1"

DisableDefender ⭐12 -- Defender disabler/remover with CLI + premium WPF GUI; firewall preserved  ⬇ Download

$d="$env:TEMP\DisableDefender"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/DisableDefender $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\DisableDefender.ps1"

Network_Security_Auditor ⭐6 -- 67 automated checks across 8 security domains, MITRE ATT&CK mapping  ⬇ Download

$d="$env:TEMP\Network_Security_Auditor"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Network_Security_Auditor $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NetworkSecurityAudit.ps1"

Debloat-Win11 ⭐5 -- Enterprise Windows 11 debloating with AppX removal, Office cleanup, telemetry blocking  ⬇ Download

$d="$env:TEMP\Debloat-Win11"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Debloat-Win11 $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Debloat-Win11.ps1"

SystemUpdatePro ⭐5 -- Enterprise Windows update automation. OEM drivers, Windows Update, winget  ⬇ Download

$d="$env:TEMP\SystemUpdatePro"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SystemUpdatePro $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\SystemUpdatePro.ps1"

WURepair ⭐5 -- Comprehensive Windows Update component repair. DLL re-registration, DISM, SFC, network reset  ⬇ Download

$d="$env:TEMP\WURepair"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/WURepair $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\WURepair.ps1"

MonitorControl ⭐4 -- Control monitor settings via DDC/CI  ⬇ Download

$d="$env:TEMP\MonitorControl"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/MonitorControl $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\MonitorControlPro.ps1"

Start-Menu-Organizer ⭐4 -- Clean junk, detect broken shortcuts, reorganize Start Menu  ⬇ Download

$d="$env:TEMP\Start-Menu-Organizer"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Start-Menu-Organizer $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\StartMenuOrganizerPro.ps1"

NetForge ⭐3 -- WPF network adapter manager. Static/DHCP, DNS presets, profile management  ⬇ Download

$d="$env:TEMP\NetForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/NetForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NetForge.ps1"

Wingetter ⭐3 -- Discover, select, and bulk install software via Winget  ⬇ Download

$d="$env:TEMP\Wingetter"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Wingetter $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Wingetter.ps1"

Disable-AdobeTelemetry ⭐2 -- Comprehensive Adobe telemetry and GrowthSDK suppression for Windows  ⬇ Download

$d="$env:TEMP\Disable-AdobeTelemetry"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Disable-AdobeTelemetry $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Disable-AdobeTelemetry.ps1"

Brave-Portable-Updater -- Update Brave inside a Portapps portable install without touching system install

$d="$env:TEMP\Brave-Portable-Updater"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Brave-Portable-Updater $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Update-BravePortable.ps1"

DefenderShield -- Repair and restore Windows Defender and Firewall after debloaters

$d="$env:TEMP\DefenderShield"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/DefenderShield $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\DefenderShield.ps1"

EXTRACTORX -- Open-source bulk archive extraction tool for Windows  ⬇ Download

$d="$env:TEMP\EXTRACTORX"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/EXTRACTORX $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\ExtractorX.ps1"

FirewallForge -- WPF Windows Firewall manager with live rule editing and offline backup editor

$d="$env:TEMP\FirewallForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/FirewallForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\FirewallManager.ps1"

TelemetrySlayer -- WPF GUI to disable Windows telemetry, data collection, and compatibility bloat  ⬇ Download

$d="$env:TEMP\TelemetrySlayer"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/TelemetrySlayer $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\TelemetrySlayer.ps1"

VoidTools-Everything-Settings-Manager -- GUI for managing VoidTools Everything settings, INI editing, CSV filter/bookmark management

$d="$env:TEMP\VoidTools-Everything-Settings-Manager"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/VoidTools-Everything-Settings-Manager $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\EverythingSettingsManager.ps1"

WinForge -- All-in-one Windows provisioning suite. App installer, tweaks, features, updates

$d="$env:TEMP\WinForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/WinForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\WinForge.ps1"

AdapterLock -- Per-adapter IP lockdown for Windows. WPF GUI, CLI mode, policy export, and event-log auditing

$d="$env:TEMP\AdapterLock"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/AdapterLock $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\AdapterLock.ps1"

HostnameForensics -- Traces how, when, and by whom a Windows hostname changed, with zipped raw evidence

$d="$env:TEMP\HostnameForensics"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/HostnameForensics $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Invoke-HostnameForensics.ps1"

JDownloader-2-Ultimate-Manager -- Comprehensive automation for JDownloader 2  ⬇ Download

$d="$env:TEMP\JDownloader-2-Ultimate-Manager"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/JDownloader-2-Ultimate-Manager $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\JDownloader 2 Ultimate Manager.ps1"

LogVerdict -- Scans Windows logs, deduplicates them into signatures, and rules on each one in plain English  ⬇ EXE

npp-sc-scanner -- Detect and remediate Notepad++ supply chain attack IOCs

$d="$env:TEMP\npp-sc-scanner"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/npp-sc-scanner $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NppScanner-GUI.ps1"

NuclearDellRemover -- Scorched-earth Dell bloatware removal. 8-phase complete cleanup  ⬇ Download

$d="$env:TEMP\NuclearDellRemover"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/NuclearDellRemover $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\NuclearDellRemover.ps1"

PathForge -- Filesystem repair, stubborn file deletion, path management  ⬇ Download

$d="$env:TEMP\PathForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PathForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\PathForge.ps1"

Restore-WindowsDefaults -- Reverse debloat changes and restore Windows to factory defaults

$d="$env:TEMP\Restore-WindowsDefaults"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Restore-WindowsDefaults $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Restore-WindowsDefaults.ps1"

ThankYouJeffrey -- A tribute to the creator of PowerShell, Jeffrey Snover

$d="$env:TEMP\ThankYouJeffrey"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/ThankYouJeffrey $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\ThankYouJeffrey.ps1"

WallBrand -- Wallpaper branding tool with GUI and CLI modes

$d="$env:TEMP\WallBrand"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/WallBrand $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\WallBrandPro.ps1"

🐍 Python Desktop Applications -- 30 repos -- Desktop apps, creative tools, and automation scripts.

Suggested starting points: OpenCut, project-nomad-desktop, Vertigo.

OpenCut ⭐51 -- AI-powered video editing automation for Premiere Pro. Caption generation, audio processing, VFX  ⬇ Download

$d="$env:TEMP\OpenCut"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/OpenCut $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\Install.ps1"

project-nomad-desktop ⭐13 -- Offline survival command center. Maps, AI chat, situation room, NukeMap, supply tracking  ⬇ Download

$d="$env:TEMP\project-nomad-desktop"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/project-nomad-desktop $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\nomad.py"

SunoJump ⭐13 -- Audio fingerprint masking for Suno AI. 10-pass pipeline, PyQt6 GUI, batch processing  ⬇ Download

$d="$env:TEMP\SunoJump"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SunoJump $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\sunojump.py"

SlunderStudio ⭐12 -- Offline AI music generation suite. Song creation, lyrics, MIDI, vocals, stem separation, mastering  ⬇ Download

$d="$env:TEMP\SlunderStudio"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SlunderStudio $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\main.py"

Bookmark-Organizer-Pro ⭐7 -- AI-powered bookmark manager and categorizer  ⬇ Download

$d="$env:TEMP\Bookmark-Organizer-Pro"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Bookmark-Organizer-Pro $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\main.py"

MSStoreHelper ⭐7 -- Install Microsoft Store apps without the Store  ⬇ Download

$d="$env:TEMP\MSStoreHelper"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/MSStoreHelper $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\MSStoreHelper.py"

FaceSlim ⭐5 -- AI face slimming, reshaping, and beautification with real-time preview and GPU acceleration  ⬇ Download

$d="$env:TEMP\FaceSlim"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/FaceSlim $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\FaceSlim.py"

FileOrganizer ⭐3 -- AI-powered desktop tool for classifying and organizing design asset folders  ⬇ Download

$d="$env:TEMP\FileOrganizer"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/FileOrganizer $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\run.py"

ImgConverter ⭐3 -- Universal image batch converter (PyQt6 GUI + CLI) with metadata, ICC, and HDR fidelity  ⬇ Download

$d="$env:TEMP\ImgConverter"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/ImgConverter $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\imgconverter.py"

PyShop ⭐3 -- Open source Photoshop alternative  ⬇ Download

$d="$env:TEMP\PyShop"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PyShop $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\pyshop_image_editor.py"

AppList ⭐2 -- Scan, catalog, and export all installed applications  ⬇ Download

$d="$env:TEMP\AppList"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/AppList $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\AppList.py"

ExplorerTweaks ⭐2 -- GUI for toggling 50+ Windows File Explorer registry settings with live preview  ⬇ Download

$d="$env:TEMP\ExplorerTweaks"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/ExplorerTweaks $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\explorer_tweaks.py"

HostsFileGet ⭐2 -- GUI for managing the Windows hosts file  ⬇ Download

$d="$env:TEMP\HostsFileGet"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/HostsFileGet $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\PythonLauncher.ps1"

QuickFind ⭐2 -- Lightning-fast file search for Windows. Reads NTFS MFT directly  ⬇ Download

$d="$env:TEMP\QuickFind"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/QuickFind $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\quickfind.py"

UniFile ⭐2 -- AI-powered unified file organization. 5 engines, tag-based library, LLM integration  ⬇ Download

$d="$env:TEMP\UniFile"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/UniFile $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\run.py"

AI-Model-Compass -- Discover, download, and run local AI models tailored to your hardware  ⬇ Download

$d="$env:TEMP\AI-Model-Compass"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/AI-Model-Compass $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\ai_model_compass.py"

FoxPort -- Migrate passwords, bookmarks, and extensions from Chromium browsers to Firefox  ⬇ ZIP

GitForge -- Full GitHub repo manager. Clone, sync, diff, manage  ⬇ Download

$d="$env:TEMP\GitForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/GitForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\gitforge.py"

LlamaLink -- Sleek GUI frontend for llama.cpp. Search, download, and chat with local LLMs  ⬇ Download

$d="$env:TEMP\LlamaLink"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b master https://github.com/SysAdminDoc/LlamaLink $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\llamalink.py"

PromptCompanion -- A curated, searchable, offline library of the best AI prompts  ⬇ Download

$d="$env:TEMP\PromptCompanion"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PromptCompanion $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\promptcompanion.py"

PyWall -- Real-time Windows Firewall manager and network monitor  ⬇ Download

$d="$env:TEMP\PyWall"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/PyWall $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\PyWall.py"

Qwen3-TTS-Studio -- AI voice generator powered by Qwen3-TTS  ⬇ Download

$d="$env:TEMP\Qwen3-TTS-Studio"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Qwen3-TTS-Studio $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\qwen3_tts_studio.py"

Vertigo -- Vertical video studio for short-form creators. Turns raw footage into polished 9:16 for Shorts/TikTok/Reels  ⬇ Download

$d="$env:TEMP\Vertigo"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Vertigo $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\vertigo.py"

AIUsageTracker -- Windows dashboard that tracks AI assistant usage windows and alarms when they reset  ⬇ EXE

AstraDownloader -- Desktop video downloader for Windows that also serves the Astra Deck extension locally  ⬇ EXE

FantasyLeagueFootball -- Draft-day board for half-PPR fantasy football, one offline HTML second screen plus a CLI  ⬇ Download

FrameSnap -- Browse MP4 videos, mark frames visually, and export precise screenshots  ⬇ Download

$d="$env:TEMP\FrameSnap"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/FrameSnap $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\framesnap.py"

Mattpad -- Minimal notepad built for personal workflow  ⬇ Download

$d="$env:TEMP\Mattpad"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/Mattpad $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\mattpad.py"

SwiftShot -- Debloated, Greenshot-inspired screenshot tool  ⬇ Download

$d="$env:TEMP\SwiftShot"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SwiftShot $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\App\Install-SwiftShot.ps1"

uBlock-Stylus-Converter -- Convert uBlock cosmetic filters to Stylus CSS  ⬇ Download

$d="$env:TEMP\uBlock-Stylus-Converter"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/uBlock-Stylus-Converter $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\ublocktoCSS.py"

🌐 Web Applications -- 28 repos -- Live web apps and dashboards you can open right now.

Suggested starting points: Openshop, StormviewRadar, SkyTrack.

Project Description Live
Openshop ⭐16 Free browser-based image editor. Layers, smart effects, PSD import Launch
CoolSites ⭐13 Curated directory of 470+ free tools and open source projects Launch
UserScriptHunt ⭐6 Unified search engine for userscripts Launch
BetterTTS ⭐3 Client-side text-to-speech studio running entirely in the browser, with WAV and MP3 export Launch
ClipForge ⭐3 Browser-based video editor powered by FFmpeg.wasm Launch
Base64Converter ⭐2 Base64 encoding/decoding with file, text, QR code, and image support Launch
ImageXpert ⭐2 Multi-engine reverse image search. Google Lens, Yandex, Bing, TinEye Launch
Multistreamer ⭐2 Multi-video streaming viewer with chat Launch
SearchHub ⭐2 Search 538 engines across 29 categories Launch
StormviewRadar ⭐2 Open source weather radar viewer Launch
ConvertFlow Browser-based media converter. Audio, video, image. No uploads Launch
GifStudio Browser-based GIF creation and editing studio. 100% client-side Launch
IconForge Browser-based image resizer and converter Launch
kindred Compatibility-first dating and social platform Repo
LogLens Log file viewer and analyzer Launch
MHTMLens MHTML file viewer and inspector Launch
SkyTrack Real-time aircraft tracker. Commercial, military, helicopters Launch
SPECTRE Intelligence aggregator platform Launch
StormScope Live US weather radar with webcam overlays. NEXRAD radar plus 7,000+ traffic cameras Repo
ApocalypseWatch Realtime business-jet tracker dashboard vs. 24h baseline Launch
BookmarkVault Bookmark management web app Launch
CronScope Cron expression builder and visualizer Launch
DeGoogler Turnkey migration toolkit for leaving Google services Launch
HurricaneMap Interactive map of every U.S. hurricane landfall from 1851 to today, built on NOAA HURDAT2 Launch
NATO_PHONETIC_TRAINING NATO phonetic alphabet training app Launch
Segue Migrates Spotify playlists and liked songs to YouTube Music with a match-review step Launch
Text-Filter-Editor Text filtering and processing tool Launch
VIPTrack Military and VIP aircraft tracker Launch

🧩 Browser Extensions & Userscripts -- 30 repos -- One-click installs for Chrome and Firefox. Userscripts need Tampermonkey or similar.

Suggested starting points: Astra-Deck, ScriptVault, AmazonEnhanced.

Project Description Install
Astra-Deck ⭐14 Premium YouTube enhancement extension. 150+ features for Chrome & Firefox ⬇ ZIP/XPI
YoutubeAdblock ⭐14 Undetectable YouTube ad blocker with proxy engine Install
ScriptVault ⭐7 Open-source Chrome MV3 userscript manager. Monaco editor, 35+ GM APIs ⬇ ZIP
UserScript-Finder ⭐6 Discover userscripts for any website Install
uBlockVanced ⭐4 uBlock Origin with Catppuccin Mocha and Element Forge panel
Upstream: gorhill/uBlock; License: GPL-3.0
⬇ CRX
MediaDL ⭐3 Media downloader userscript Install
StyleKit ⭐3 CSS customization extension. Visual editor for any website ⬇ CRX
GeminiBuddy ⭐2 Productivity features for Gemini Install
NDNS ⭐2 NextDNS control panel userscript Repo
RumbleX ⭐2 Comprehensive Rumble.com enhancement ⬇ ZIP
StyleCraft ⭐2 Full-featured CSS style editor and manager. Chrome extension ⬇ ZIP
Vantage ⭐2 New tab dashboard for Chromium. Customizable search, RSS, news, weather, quick links Repo
AI-Usage_Tracker Usage-limit countdowns and notifications for AI chat tools. Chrome and userscript builds ⬇ ZIP
Claude-Ultimate-Enhancer All-in-one Claude.ai enhancement suite. Themes, usage monitor, prompt library Install
ClearGem Removes visible watermarks from Google Gemini AI-generated images Install
IMDb_Enhanced IMDb enhancement userscript Install
AmazonEnhanced Chrome MV3 Amazon UX cleanup. Dark theme, sponsored-result removal, review-quality scoring, 20 locales ⬇ CRX
Aviary Download media from X and keep a searchable local post library. ⬇ ZIP
Chapterizer Auto-generate YouTube chapters, detect filler words, skip pauses Install
DarkModer Dark Reader as a userscript Install
Doordash-Enhanced DoorDash dark mode and feature enhancements Install
ForceBGTab Forces link-opened tabs into the background so they never steal focus ⬇ ZIP
Glossa On-device web page translator. Bergamot in WebAssembly, no cloud and no telemetry. ⬇ ZIP
GLP-Ultra Dark themes, thread cleanup, filtering, and exports for Godlike Productions ⬇ ZIP
HubSpot-Ticket-Refined Compact userscript theme for HubSpot ticket lists and records Install
Kick Focus Desktop-first layout, accessibility, content filters, and ad defense for Kick.com Install
Onward Auto-pager that appends the next page of paginated sites as you scroll, with no rule database Install
Reddit-Enhancement-Continued Enhancement suite for old.reddit.com Install
RES-Slim Stripped-down Reddit Enhancement Suite fork for old.reddit.com comment tweaks and media expandos
Upstream: honestbleeps/Reddit-Enhancement-Suite; License: GPL-3.0
Repo
StarBoard Ranks your GitHub repos by stars and shows star and fork gains since your last check ⬇ ZIP

📱 Android Applications -- 25 repos -- APKs you can sideload and Android source projects.

Suggested starting points: ZeusWatch, ClearCut, HostShield.

Project Description Download
AppManagerNG ⭐92 Power-user package manager. Continuation of MuntashirAkon/AppManager
Upstream: MuntashirAkon/AppManager; License: GPL-3.0-or-later
Repo
OpenTasker ⭐90 FOSS Tasker alternative for Android Repo
hushfeed ⭐64 Morphe patch bundle for TikTok. Fewer accidental taps, less noise, more control over the feed and downloads. ⬇ Download
ClearCut ⭐47 Full-featured Android video editor. Kotlin, Jetpack Compose, and Media3 ⬇ APK
Aura ⭐35 Open-source Zedge alternative. Wallpapers, video wallpapers, ringtones, YouTube integration ⬇ APK
FileExplorer ⭐28 Full-featured file manager with root access, archive support, cloud storage Repo
CallShield ⭐27 Spam call and text blocker. GitHub-hosted spam database, no API keys, no subscriptions ⬇ APK
AlarmClockXtreme ⭐26 Feature-rich alarm clock with dismiss challenges ⬇ APK
SwiftFloris ⭐25 SwiftKey-inspired keyboard built on FlorisBoard's foundation Repo
HostShield ⭐17 AMOLED-dark hosts-based ad blocker. Inspired by AdAway ⬇ APK
LocalAndroidStore ⭐14 Personal Android-app catalog sourced from GitHub Releases. Android sibling of LocalChromeStore ⬇ APK
OpenLumen ⭐14 Open-source CF.Lumen successor. Root-grade display color filter for Android with rootless fallback ⬇ APK
Droidsmith ⭐12 Cross-platform ADB GUI for managing Android devices over USB/WiFi (Rust) ⬇ EXE
Lawnchair-Lite ⭐12 Lightweight launcher with 5 built-in dark themes ⬇ APK
ZeusWatch ⭐12 Premium dark weather app. No API keys required ⬇ APK
iOSIconPack ⭐7 iOS-style icon pack for Android. 6 iOS eras ⬇ APK
OpenSwift ⭐7 SwiftKey-inspired Android keyboard. Glide typing, prediction, themes, clipboard Repo
SnapCrop ⭐6 Screenshot editor. ML Kit autocrop, 14 draw tools, collage, device mockup ⬇ APK
one-ui-home-clone ⭐3 Samsung One UI 7 parity launcher. Compose, clone not a port ⬇ APK
GuitarTuner Offline Android acoustic guitar tuner with automatic string detection and local-only microphone processing Repo
BillMinder Bill tracker with alarm-style reminders ⬇ APK
IRL Streamer Android live-streaming console with camera, mic, and RTMP/RTMPS broadcast ⬇ APK
NoNo Local-first Android notification rule manager with redacted metadata ⬇ APK
PatchDock Android patch manager Repo
WeightTrack Free Android weight tracker. No subscription, no account, no ads ⬇ APK

🔒 Security & Networking -- 2 repos -- Network audits, DNS control, and hardening scripts.

Suggested starting points: BetterNext, ESET.

Project Description Download
BetterNext ⭐2 Enhanced NextDNS Control Panel Repo
ESET Complete ESET port and address reference lists Repo

🎬 Media & Conversion Tools -- 7 repos -- Video, audio, and stream tools.

Suggested starting points: VideoSubtitleRemover, VideoCrush, AlphaCut.

VideoSubtitleRemover ⭐83 -- Remove hardcoded subtitles from video  ⬇ Download

$d="$env:TEMP\VideoSubtitleRemover"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/VideoSubtitleRemover $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\VideoSubtitleRemover.py"

StreamKeep ⭐11 -- Multi-platform stream/VOD downloader with built-in media converter  ⬇ Download

$d="$env:TEMP\StreamKeep"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/StreamKeep $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\StreamKeep.py"

AlphaCut -- Video background removal and compositing  ⬇ Download

$d="$env:TEMP\AlphaCut"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/AlphaCut $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\AlphaCut.py"

MediaForge -- Multi-format media converter

$d="$env:TEMP\MediaForge"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/MediaForge $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\MediaForge.py"

GIFM -- Local GIF maker and compressor with Discord-ready target fitting  ⬇ ZIP

VideoCrush -- Video compression and processing

$d="$env:TEMP\VideoCrush"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/VideoCrush $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\video_compressor.py"

yt_livestream_downloader -- Download livestreams while they're still live

$d="$env:TEMP\yt_livestream_downloader"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/yt_livestream_downloader $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\yt_livestream_downloader.py"

🖥️ Native Desktop Applications -- 28 repos -- Windows and cross-platform desktop apps.

Suggested starting points: MyPortfolio, LocalChromeStore, LocalDesktopStore.

Project Description Language Download
DeepPurge ⭐18 Thorough Windows uninstaller. Removes programs completely, hunts down every leftover C# ⬇ EXE
RcloneBrowserNG ⭐10 Modern rclone GUI. File browser, transfer manager, mount handler. Qt/C++ cross-platform desktop app. Community continuation of RcloneBrowser C++ Repo
UniversalConverterX ⭐7 Native Windows file converter with context menu integration. 1000+ formats C# Repo
OpenNetLimit ⭐6 Per-application bandwidth limiter and network monitor for Windows C# Repo
PartitionPilot ⭐4 Windows disk partition manager. WPF disk map, SMART health, maintenance, and image workflows C# Repo
LocalChromeStore ⭐3 Personal Chromium extension store sourced from GitHub releases. One-click install/uninstall C# ⬇ ZIP
AndroidEmulatorPlus ⭐2 Install Android SDK, manage AVDs, root with Magisk, migrate apps C# Repo
Devicer ⭐2 Unified Windows toolkit for rooted Android. Identify, ROM search, partition backup, boot.img patch, flashing C# Repo
HostsGuard ⭐2 Real-time network privacy manager. DNS monitoring, hosts file management, firewall rules C# ⬇ EXE
Images ⭐2 Dark-mode Windows 7 Classic Photo Viewer with live inline rename-while-viewing C# ⬇ ZIP
LocalDesktopStore ⭐2 Private catalog for Windows desktop apps. MSI/Inno/NSIS/ZIP from GitHub releases C# ⬇ ZIP
OpenRadar ⭐2 Desktop weather radar for Windows. Decodes NEXRAD Level II, MRMS, GOES and GFS locally in Rust TypeScript ⬇ EXE
qBittorrent-Vanced ⭐2 Customized BitTorrent client with dark theme
Upstream: c0re100/qBittorrent-Enhanced-Edition; License: GPL-2.0-or-later / GPL-3.0-or-later assets
C++ ⬇ EXE
Cataclysm 3D-globe desktop simulator for tsunamis from asteroid impacts, nuclear bursts, earthquakes, and landslides TypeScript ⬇ EXE
Keepr Pixel-close offline-first Google Keep clone. Tauri 2 + React + Rust + SQLite TypeScript ⬇ EXE
PhoneFork Dual-Samsung Android migration tool for Windows. Apps, media, settings, Wi-Fi, roles, and debloat profiles C# Repo
REDplusplus RED++. Remove Empty Directories. Find, display, and delete empty directories recursively with custom filter rules C# Repo
TaskCopy Single-click clipboard snippet menu. Tray icon, global hotkey, search C# ⬇ ZIP
TerminalAI Control surface for running many AI coding sessions at once, with native ConPTY terminals Rust ⬇ EXE
Vigil Windows packaging for ungoogled-chromium
Upstream: ungoogled-software/ungoogled-chromium-windows; License: BSD-3-Clause
HTML Repo
WolfPack Custom LibreWolf portable distribution Fluent ⬇ EXE
BillMinder for PC Tray-resident Windows bill tracker. Offline, no account, Compose Multiplatform Kotlin ⬇ EXE
MyPortfolio One Windows desktop catalog for every app I ship. Binaries, extensions, APKs from GitHub releases C# ⬇ ZIP
OrganizeContacts Local-first contact organizer and deduper. Native Windows, no cloud upload C# Repo
QuotaGlass Always-visible AI usage quota widget for Windows C# ⬇ EXE
Scour High-performance disk cleanup. 12 scanner types, NTFS MFT reading C# Repo
Snapture All-in-one screenshot utility. Region/window/fullscreen, pinned overlays, no telemetry C# Repo
SurfaceMedic Tune-up and thermal toolkit for heavily used Surface devices, with a dark WPF interface C# ⬇ EXE

📚 Guides & Resources -- 4 repos -- How-to guides, checklists, and references.

Suggested starting points: AI_Realism, facebook-exit-guide, android-debloat-list.

Project Description
AI_Realism Field guide for ultra-realistic AI video generation
android-debloat-list Curated Android debloat list with vulnerability notes. Companion to AppManagerNG
Upstream: MuntashirAkon/android-debloat-list; License: AGPL-3.0
facebook-exit-guide Guide for leaving Facebook
sysadmindoc.github.io Personal portfolio and project showcase site hosted on GitHub Pages

🔀 Misc & Forks -- 7 repos -- Forks, side projects, and things that didn't fit elsewhere.

Suggested starting points: octopus-factory, LTSC-MicrosoftStore, RcloneBrowser.

Project Description
LTSC-MicrosoftStore Add Windows Store to Win11 24H2 LTSC
Upstream: minihub/LTSC-Add-MicrosoftStore; License: Other
octopus-factory Recipe-driven autonomous coding pipeline. Multi-agent build/audit/release
codex-terminal Opens an AI CLI in a real PowerShell tab from VS Code, with a native terminal profile
ColumnKit VS Code status bar buttons that snap editor columns to even widths
RcloneBrowser Cross-platform GUI for rclone
Upstream: kapitainsky/RcloneBrowser; License: MIT
TabExplorer Tabbed file manager for Windows
Upstream: derceg/explorerplusplus; License: GPL-3.0
TagStudio User-focused photo & file management system
Upstream: TagStudioDev/TagStudio; License: GPL-3.0

💾 First-time setup -- Inspect first, then install only the tooling your machine is missing.

The setup path checks for PowerShell 7, Python, pip, and Git before changing anything, then refreshes the current shell so the project snippets and validation tools work immediately. On a fresh Windows machine, open PowerShell and paste:

irm https://raw.githubusercontent.com/SysAdminDoc/SysAdminDoc/main/setup.ps1 | iex

Inspect before installing:

$u='https://raw.githubusercontent.com/SysAdminDoc/SysAdminDoc/main/setup.ps1'; $p="$env:TEMP\SysAdminDoc-setup.ps1"; irm $u -OutFile $p; notepad $p; powershell -NoProfile -ExecutionPolicy Bypass -File $p -CheckOnly
Step Behavior
Checks first Reports PowerShell 7, Python, pip, and Git state before installing missing tools.
Inspect before installing Save the script, review it, then run -CheckOnly to report PowerShell 7, Python, Git, pip, and winget state without installing.
Installs with Windows tooling Uses winget for PowerShell 7, Python 3.13, and Git for Windows.
Refreshes the shell Updates the current PATH so install snippets and validation commands work without reopening PowerShell.
Records diagnostics Writes a best-effort transcript to %TEMP%\SysAdminDoc-setup-*.log.
Shows its source setup.ps1 is the exact script being run.

Already have PowerShell 7, Python, pip, and Git? Skip this section and open the category you need.

✅ Local validation -- For contributors: check the profile before you push.

Changing the catalog or the generator? Run this from the repo root first:

pwsh -NoProfile -File .\scripts\validate-local.ps1

It lints, analyzes, tests and re-checks the generated profile. Every lane, switch and troubleshooting option is in CONTRIBUTING.md.


See everything · All repos · Get in touch

Pinned Loading

  1. AppManagerNG AppManagerNG Public

    Inspect, debloat, back up, freeze, and control Android apps from one open-source package manager. Works without root, with Shizuku, ADB, or root when needed.

    Java 92 5

  2. OpenTasker OpenTasker Public

    Local-first, open-source Android automation with readable rules, honest permission gates, and no account or cloud runtime.

    Kotlin 90 5

  3. VideoSubtitleRemover VideoSubtitleRemover Public

    Remove hard-coded subtitles and visible text from video, locally. Windows app with OCR, frame-aware inpainting, mask review, and CPU/NVIDIA builds.

    Python 83 12

  4. win11-nvme-driver-patcher win11-nvme-driver-patcher Public

    GUI tool to enable the experimental Windows Server 2025 NVMe storage driver on Windows 11.

    C# 69 2

  5. hushfeed hushfeed Public

    Hushfeed v0.58.0: 91 patches for TikTok 47.0.3. Less clutter, better controls.

    Java 64 2

  6. OpenCut OpenCut Public

    OpenCut for Premiere Pro. Local AI video editing automation for Adobe Premiere Pro: silence and filler cuts, captions, audio repair, and social export. Runs on your own machine, no subscription and…

    Python 51 9