|
Currently Building
|
| Project | Stars | Description |
|---|---|---|
| win11-nvme-driver-patcher | β36 | GUI to enable Windows Server 2025 NVMe driver on Win11 |
| OpenCut | β11 | AI-powered video editing automation for Premiere Pro |
| project-nomad-desktop | β10 | Offline survival command center β maps, AI chat, situation room, NukeMap |
| VideoSubtitleRemover | β10 | 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 setup β New 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 | iexWhat 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 β 25 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 |
π§© Browser Extensions & Userscripts β 22 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 |
| Vantage | New tab dashboard for Chromium β customizable search, RSS, news, weather, quick links | β¬ CRX/XPI |
| 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 β 14 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 |
| AppManagerNG β1 | Power-user package manager β continuation of MuntashirAkon/AppManager (GPL-3.0-or-later) | Repo |
| CallShield β1 | Spam call and text blocker β GitHub-hosted spam database, no API keys, no subscriptions | β¬ 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) |



