Skip to content
View SysAdminDoc's full-sized avatar
  • 127.0.0.1
  • 22:53 (UTC -04:00)

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.

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

Header

Typing SVG

Profile Views Followers Stars

  • Systems Administrator by day, tool builder by night
  • Everything I ship is zero-config — download it, launch it, done
  • 165+ open source projects across PowerShell, Python, JavaScript, Kotlin, C#, and C++
  • Currently building AI-powered desktop tools, browser enhancements, and Android apps
  • Work domain: medical imaging, PACS, and chiropractic IT infrastructure

View my full portfolio →

Currently Building

MyPortfolio Unified Windows catalog for every app I ship (C#/.NET 9)
NovaCut Professional Android video editor (Kotlin)
Astra-Deck Premium YouTube enhancement extension (JavaScript)
DICOM-PACS-Migrator Bulk DICOM C-STORE migration workbench (Python)

Tech Stack


GitHub Stats Top Languages

GitHub Streak

Activity Graph


Featured Projects

Project Stars Description
win11-nvme-driver-patcher ⭐35 GUI to enable Windows Server 2025 NVMe driver on Win11
OpenCut ⭐10 AI-powered video editing automation for Premiere Pro
project-nomad-desktop ⭐10 Offline survival command center — maps, AI chat, situation room, NukeMap
VideoSubtitleRemover ⭐9 AI-powered subtitle and watermark removal — STTN, LAMA, ProPainter
LibreSpot ⭐9 Spotify customization — automates Spicetify, themes, extensions
Astra-Deck ⭐8 Premium YouTube enhancement extension for Chrome & Firefox
Network_Security_Auditor ⭐6 67 automated checks across 8 security domains, MITRE ATT&CK mapping
ZeusWatch ⭐6 Premium dark Android weather app — no API keys required
NovaCut ⭐6 Professional video editor for Android
HostShield ⭐4 AMOLED-dark hosts-based ad blocker for Android

💾 First-time setupNew to this? Install Python 3 + Git in one paste.

The PowerShell and Python sections below clone repos with Git, and the Python section runs scripts with Python 3. If you don't already have them, open PowerShell and paste:

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

What it does — uses Windows' built-in winget package manager to install Python 3.12 and Git for Windows, then refreshes your PATH so the install one-liners below work right away. Source: setup.ps1.

Already have them? Skip this and jump to the categories below.

⚡ PowerShell System Utilities — 28 repos — Requires Git (see First-time setup above).

win11-nvme-driver-patcher ⭐35 — 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"

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

$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"

LibreSpot ⭐9 — 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"

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"

Debloat-Win11 — Enterprise Windows 11 debloating with AppX removal, Office cleanup, telemetry blocking

$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"

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"

DefenderControl ⭐4 — WPF GUI to fully disable or re-enable Microsoft Defender

$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 ⭐2 — Defender disabler/remover with CLI + premium WPF GUI; firewall preserved

$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"

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"

TelemetrySlayer — WPF GUI to disable Windows telemetry, data collection, and compatibility bloat

$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"

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"

NetForge — WPF network adapter manager — static/DHCP, DNS presets, profile management

$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"

SystemUpdatePro — Enterprise Windows update automation — OEM drivers, Windows Update, winget

$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 ⭐2 — Comprehensive Windows Update component repair — DLL re-registration, DISM, SFC, network reset

$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"

SoftwareScannerGUI — WPF audit tool for installed software — AppX, Win32, services, tasks, startup entries

$d="$env:TEMP\SoftwareScannerGUI"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/SoftwareScannerGUI $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; & "$d\SoftwareScannerGUI.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"

Disable-AdobeTelemetry — Comprehensive Adobe telemetry and GrowthSDK suppression for Windows

$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"

Wingetter ⭐2 — 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"

Start-Menu-Organizer — Clean junk, detect broken shortcuts, reorganize Start Menu

$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"

PathForge — Filesystem repair, stubborn file deletion, path management

$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"

MonitorControl — Control monitor settings via DDC/CI

$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"

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"

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"

PfblockerngManager — GUI for managing pfBlockerNG on pfSense firewalls

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

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"

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"

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"

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"
🐍 Python Desktop Applications — 42 repos — Requires Python 3.8+ and Git (see First-time setup above). Each one-liner shallow-clones the repo to $env:TEMP, installs requirements.txt if present, then runs the entry script.

project-nomad-desktop ⭐10 — 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"

Tunerize ⭐1 — Re-render any audio as chiptune (built-in NES synth) or through any SoundFont — Audio→MIDI→SF2/chiptune→WAV, locally

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

Vertigo ⭐1 — 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"

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"

SunoJump — 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"

PyWall — Real-time Windows Firewall manager and network monitor

$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"

HostsGuard — Real-time network privacy manager — DNS monitoring, hosts file management, firewall rules

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

PyShop — Open source Photoshop alternative

$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"

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"

Flux — Privacy-focused BitTorrent client — PyQt6 + libtorrent

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

GitForge — Full GitHub repo manager — clone, sync, diff, manage

$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"

UniFile — 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"

QuickFind ⭐1 — 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"

FileOrganizer — AI-powered desktop tool for classifying and organizing design asset folders

$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"

HEICShift — High-performance HEIC/HEIF batch converter with PyQt6 GUI, parallel conversion, metadata preservation  ⬇ Download

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

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"

ExplorerTweaks — GUI for toggling 50+ Windows File Explorer registry settings with live preview

$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"

FaceSlim ⭐2 — AI face slimming, reshaping, and beautification with real-time preview and GPU acceleration

$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"

LipSight — AI-powered lip reading tool — transcribes speech from silent video

$d="$env:TEMP\LipSight"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/LipSight $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\LipSight.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"

SlunderStudio ⭐1 — Offline AI music generation suite — song creation, lyrics, MIDI, vocals, stem separation, mastering

$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"

GmailDownloader — Full Gmail mailbox downloader, AI-powered organizer & analytics suite

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

UniversalCompiler — All-in-one script-to-EXE compiler

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

OpenCut ⭐10 — 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"

bypassnroGen — Generate Windows 11 OOBE bypass files

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

MSStoreHelper — Install Microsoft Store apps without the Store

$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"

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"

AppList — Scan, catalog, and export all installed applications

$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"

PillSleepTracker — Floating widget for medication tracking + sleep analytics

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

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"

HostsFileGet — 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"

Bookmark-Organizer-Pro — 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"

QR-Code-Generator-Pro — QR generator with 98 visual style presets

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

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"

KeepSyncNotes — Google Keep importer and note tracker

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

PDFedit — Simple PDF editor

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

CSV_Power_Tool — Bulk CSV processing and consolidation

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

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

$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"

DICOM-PACS-Migrator — Bulk DICOM C-STORE migration with network auto-discovery and crash-safe resume  ⬇ Download

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

Stock-Video-Collector — Stock video collector

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

StreamKeep — 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"

GifText — Animated GIF text editor for meme creation

$d="$env:TEMP\GifText"; if(Test-Path $d){git -C $d pull -q}else{git clone -q --depth 1 -b main https://github.com/SysAdminDoc/GifText $d}; if(Test-Path "$d\requirements.txt"){pip install -q -r "$d\requirements.txt"}; python "$d\GifText.py"
🌐 Web Applications — 26 repos — Click to open in browser, no install needed.
Project Description Live
Openshop Free browser-based image editor — layers, AI tools, PSD import Launch
StormviewRadar Open source weather radar viewer Launch
SkyTrack ⭐1 Real-time aircraft tracker — commercial, military, helicopters Launch
VIPTrack Military and VIP aircraft tracker Launch
NukeMap Nuclear weapon effects simulator — blast waves, WW3 simulation, 418 targets Launch
SPECTRE Intelligence aggregator platform Launch
CoolSites Curated directory of 470+ free tools and open source projects Launch
Multistreamer Multi-video streaming viewer with chat Launch
GifStudio Browser-based GIF creation and editing studio — 100% client-side Launch
ImageForge Open source image converter Launch
ClipForge Browser-based video editor powered by FFmpeg.wasm Launch
ConvertFlow Browser-based media converter — audio, video, image — no uploads Launch
IconForge Browser-based image resizer and converter Launch
Base64Converter Base64 encoding/decoding with file, text, QR code, and image support Launch
ImageXpert Multi-engine reverse image search — Google Lens, Yandex, Bing, TinEye Launch
BookmarkVault Bookmark management web app Launch
Text-Filter-Editor Text filtering and processing tool Launch
kindred Compatibility-first dating and social platform Launch
DeGoogler Turnkey migration toolkit for leaving Google services Launch
SearchHub Search 538 engines across 29 categories Launch
UserScriptHunt Unified search engine for userscripts Launch
MHTMLens MHTML file viewer and inspector Launch
LogLens Log file viewer and analyzer Launch
CronScope Cron expression builder and visualizer Launch
NATO_PHONETIC_TRAINING NATO phonetic alphabet training app Launch
RadAtlas Interactive X-ray technique chart for medical imaging professionals Launch
🧩 Browser Extensions & Userscripts — 21 repos — Requires Tampermonkey or Violentmonkey.
Project Description Install
Astra-Deck ⭐8 Premium YouTube enhancement extension — 150+ features for Chrome & Firefox ⬇ CRX/XPI
ScriptVault ⭐3 Open-source Chrome MV3 userscript manager — Monaco editor, 35+ GM APIs ⬇ CRX
AmazonEnhanced Chrome MV3 Amazon UX cleanup — dark theme, sponsored-result removal, review-quality scoring, 20 locales ⬇ CRX
StyleKit CSS customization extension — visual editor for any website ⬇ CRX
YoutubeAdblock Undetectable YouTube ad blocker with proxy engine Install
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
Chapterizer Auto-generate YouTube chapters, detect filler words, skip pauses Install
MediaDL Media downloader userscript Install
uBlockVanced uBlock Origin fork with Catppuccin Mocha and Element Forge panel ⬇ CRX
BackgroundSearch Chrome extension — force background tabs + context menu search Repo
StyleCraft ⭐1 Full-featured CSS style editor and manager — Chrome extension ⬇ ZIP
UserScript-Finder Discover userscripts for any website Install
EspressoMonkey Modern userscript manager — Manifest V3 ⬇ CRX
NDNS NextDNS control panel userscript Repo
Reddit-Enhancement-Continued Enhancement suite for old.reddit.com Install
Doordash-Enhanced DoorDash dark mode and feature enhancements Install
DarkModer Dark Reader as a userscript Install
GeminiBuddy ⭐1 Productivity features for Gemini Install
RumbleX Comprehensive Rumble.com enhancement ⬇ CRX
Discrub Discord message editor, deleter, and exporter ⬇ CRX
📱 Android Applications — 12 repos — Kotlin / Material You
Project Description Download
ZeusWatch ⭐6 Premium dark weather app — no API keys required ⬇ APK
NovaCut ⭐6 Professional video editor — 40+ effects, 37 transitions, 29 engines ⬇ APK
HostShield ⭐4 AMOLED-dark hosts-based ad blocker — inspired by AdAway ⬇ APK
Aura ⭐3 Open-source Zedge alternative — wallpapers, video wallpapers, ringtones, YouTube integration ⬇ APK
iOSIconPack ⭐2 iOS-style icon pack for Android — 6 iOS eras ⬇ APK
Lawnchair-Lite ⭐2 Lightweight launcher with 5 built-in dark themes ⬇ APK
AlarmClockXtreme ⭐1 Feature-rich alarm clock with dismiss challenges ⬇ APK
FileExplorer ⭐1 Full-featured file manager with root access, archive support, cloud storage Repo
LocalAndroidStore ⭐1 Personal Android-app catalog sourced from GitHub Releases — Android sibling of LocalChromeStore ⬇ APK
one-ui-home-clone ⭐1 Samsung One UI 7 parity launcher — Compose, clone not a port ⬇ APK
SnapCrop Screenshot editor — ML Kit autocrop, 14 draw tools, collage, device mockup ⬇ APK
BillMinder Bill tracker with alarm-style reminders ⬇ APK
🔒 Security & Networking — 4 repos
Project Description Download
pfSenseSuite ⭐1 pfSense scripts and customizations toolkit Repo
WolfPack Custom LibreWolf portable distribution ⬇ EXE
BetterNext Enhanced NextDNS Control Panel Repo
ESET Complete ESET port and address reference lists Repo
🎬 Media & Conversion Tools — 6 repos

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"

AlphaCut — Video background removal and compositing

$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"

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"

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"

VideoSubtitleRemover ⭐9 — Remove hardcoded subtitles from video

$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 — 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"
🖥️ Native Desktop Applications — 10 repos
Project Description Language Download
MyPortfolio ⭐1 One Windows desktop catalog for every app I ship — binaries, extensions, APKs from GitHub releases C# ⬇ ZIP
LocalChromeStore ⭐1 Personal Chromium extension store sourced from GitHub releases — one-click install/uninstall C# ⬇ ZIP
LocalDesktopStore ⭐1 Private catalog for Windows desktop apps — MSI/Inno/NSIS/ZIP from GitHub releases C# ⬇ ZIP
TeamStation ⭐1 Open-source connection manager for TeamViewer — encrypted credentials, nested folder tree C# ⬇ EXE
Images ⭐2 Dark-mode Windows 7 Classic Photo Viewer with live inline rename-while-viewing C# ⬇ EXE
DeepPurge ⭐2 Thorough Windows uninstaller — removes programs completely, hunts down every leftover C# ⬇ EXE
Scour High-performance disk cleanup — 12 scanner types, NTFS MFT reading C# Repo
UniversalConverterX Native Windows file converter with context menu integration — 1000+ formats C# Repo
VaultBox ⭐1 Offline Bitwarden password manager — zero server contact, local vault C++ ⬇ EXE
qBittorrent-Vanced Customized BitTorrent client with dark theme C++ ⬇ EXE
📚 Guides & Resources — 3 repos
Project Description
AI_Realism Field guide for ultra-realistic AI video generation
facebook-exit-guide Guide for leaving Facebook
sysadmindoc.github.io Personal portfolio and project showcase
🔀 Misc & Forks — 6 repos
Project Description
octopus-factory ⭐1 Recipe-driven autonomous coding pipeline for Claude Code — multi-agent build/audit/release
LTSC-MicrosoftStore Add Windows Store to Win11 24H2 LTSC (fork)
RcloneBrowser Cross-platform GUI for rclone (fork)
TabExplorer Tabbed file manager for Windows (fork)
Vigil Windows packaging for ungoogled-chromium (fork)
TagStudio User-focused photo & file management system (fork)

Footer

Pinned Loading

  1. 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# 35 2

  2. LibreSpot LibreSpot Public

    LibreSpot - A streamlined Spotify customization tool that automates installation and configuration of SpotX, Spicetify, Marketplace, and the Comfy theme.

    PowerShell 9

  3. project-nomad-desktop project-nomad-desktop Public

    Cross-platform desktop edition fork of Project N.O.M.A.D with more features and modern layout.

    Python 10 1

  4. OpenCut OpenCut Public

    A free, open-source Premiere Pro extension that brings AI-powered video editing automation, caption generation, audio processing, and visual effects, all running locally on your machine. This proje…

    Python 10 3

  5. Astra-Deck Astra-Deck Public

    Astra Deck — Premium YouTube enhancement extension for Chrome & Firefox. 150+ features: theater split, DeArrow, downloads, transcript viewer, video/channel hiding, and deep playback controls.

    JavaScript 8

  6. VideoSubtitleRemover VideoSubtitleRemover Public

    AI-powered Python GUI for removing hard-coded subtitles and text watermarks from videos using STTN, LAMA, and ProPainter inpainting with GPU acceleration.

    Python 9 2