| Project | Category | Stars | Description | Action |
|---|---|---|---|---|
| win11-nvme-driver-patcher | PowerShell | β43 | GUI to enable Windows Server 2025 NVMe driver on Win11 | β¬ Download |
| OpenCut | Python | β20 | AI-powered video editing automation for Premiere Pro β caption generation, audio processing, VFX | β¬ Download |
| project-nomad-desktop | Python | β11 | Offline survival command center β maps, AI chat, situation room, NukeMap, supply tracking | β¬ Download |
| LibreSpot | PowerShell | β11 | Spotify customization β automates Spicetify, themes, extensions | β¬ Download |
| VideoSubtitleRemover | Media | β18 | Remove hardcoded subtitles from video | β¬ Download |
| Astra-Deck | Extensions | β10 | Premium YouTube enhancement extension β 150+ features for Chrome & Firefox | β¬ CRX/XPI |
| Network_Security_Auditor | PowerShell | β6 | 67 automated checks across 8 security domains, MITRE ATT&CK mapping | β¬ Download |
| ZeusWatch | Android | β7 | Premium dark weather app β no API keys required | β¬ APK |
| NovaCut | Android | β12 | Professional video editor β 40+ effects, 37 transitions, 29 engines | β¬ APK |
| HostShield | Android | β12 | AMOLED-dark hosts-based ad blocker β inspired by AdAway | β¬ APK |
πΎ First-time setup -- New to this? Install Python 3 + Git in one paste.
The PowerShell and Python sections clone repos with Git and run scripts with Python 3 when needed. On a fresh Windows machine, open PowerShell and paste:
irm https://raw.githubusercontent.com/SysAdminDoc/SysAdminDoc/main/setup.ps1 | iexInspect 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 | Skips Python or Git when already installed. |
| Inspect before installing | Save the script, review it, then run -CheckOnly to report Python, Git, pip, and winget state without installing. |
| Installs with Windows tooling | Uses winget for Python 3.12 and Git for Windows. |
| Refreshes the shell | Updates the current PATH so the commands below 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 Python and Git? Skip this and open the category you need.
β‘ PowerShell System Utilities -- 30 repos -- Requires Git (see First-time setup above).
Start with: win11-nvme-driver-patcher, LibreSpot, Network_Security_Auditor.
win11-nvme-driver-patcher β43 -- 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 Β β¬ 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"LibreSpot β11 -- 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 β1 -- 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 Β β¬ 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 β7 -- 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"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 β2 -- 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 β1 -- 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 β1 -- 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 β1 -- 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 Β β¬ 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"MonitorControl β1 -- 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"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 β1 -- 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"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"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"π Python Desktop Applications -- 30 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.
Start with: OpenCut, project-nomad-desktop, Vertigo.
project-nomad-desktop β11 -- 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"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 β1 -- 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 β3 -- 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 Β β¬ 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"HostsGuard -- Real-time network privacy manager β DNS monitoring, hosts file management, firewall rules Β β¬ Download
$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 β3 -- 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"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"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"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 β2 -- 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"HEICShift β1 -- 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 β1 -- 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"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 β3 -- 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"OpenCut β20 -- 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"MSStoreHelper β3 -- 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"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 β1 -- 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"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 β3 -- 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"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 β1 -- 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"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"GifText β1 -- 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"FoxPort -- Migrate passwords, bookmarks, and extensions from Chromium browsers to Firefox Β β¬ ZIP
π Web Applications -- 27 repos -- Click to open in browser, no install needed.
Start with: Openshop, StormviewRadar, SkyTrack.
| Project | Description | Live |
|---|---|---|
| Openshop β1 | Free browser-based image editor - layers, smart effects, 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 β1 | 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 | Repo |
| DeGoogler | Turnkey migration toolkit for leaving Google services | Launch |
| SearchHub | Search 538 engines across 29 categories | Launch |
| UserScriptHunt β3 | 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 |
| HurricaneMap | Interactive map of every U.S. hurricane landfall (1851βpresent) β NOAA HURDAT2 | Launch |
| ApocalypseWatch | Realtime business-jet tracker dashboard vs. 24h baseline | Launch |
π§© Browser Extensions & Userscripts -- 23 repos -- Requires Tampermonkey or Violentmonkey.
Start with: Astra-Deck, ScriptVault, AmazonEnhanced.
| Project | Description | Install |
|---|---|---|
| Astra-Deck β10 | Premium YouTube enhancement extension β 150+ features for Chrome & Firefox | β¬ CRX/XPI |
| ScriptVault β3 | Open-source Chrome MV3 userscript manager β Monaco editor, 35+ GM APIs | β¬ ZIP |
| 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 β1 | New tab dashboard for Chromium β customizable search, RSS, news, weather, quick links | Repo |
| YoutubeAdblock β3 | Undetectable YouTube ad blocker with proxy engine | Install |
| Claude-Ultimate-Enhancer β1 | 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 β1 | uBlock Origin with Catppuccin Mocha and Element Forge panel Upstream: gorhill/uBlock; License: GPL-3.0 |
β¬ 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 β3 | Discover userscripts for any website | Install |
| NDNS β2 | 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 | β¬ ZIP |
| Discrub β1 | Discord message editor, deleter, and exporter | β¬ CRX |
| AI-Usage_Tracker | Usage-limit countdowns and notifications for AI chat tools -- Chrome, Firefox, and userscript builds | β¬ ZIP/XPI |
| IMDb_Enhanced | IMDb enhancement userscript | Install |
π± Android Applications -- 19 repos -- Kotlin / Material You
Start with: ZeusWatch, NovaCut, HostShield.
| Project | Description | Download |
|---|---|---|
| ZeusWatch β7 | Premium dark weather app β no API keys required | β¬ APK |
| NovaCut β12 | Professional video editor β 40+ effects, 37 transitions, 29 engines | β¬ APK |
| HostShield β12 | AMOLED-dark hosts-based ad blocker β inspired by AdAway | β¬ APK |
| Aura β8 | 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 β3 | Lightweight launcher with 5 built-in dark themes | β¬ APK |
| AlarmClockXtreme β5 | Feature-rich alarm clock with dismiss challenges | β¬ APK |
| AppManagerNG β22 | Power-user package manager β continuation of MuntashirAkon/AppManager Upstream: MuntashirAkon/AppManager; License: GPL-3.0-or-later |
Repo |
| CallShield β3 | Spam call and text blocker β GitHub-hosted spam database, no API keys, no subscriptions | β¬ APK |
| FileExplorer β2 | 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 β2 | Samsung One UI 7 parity launcher β Compose, clone not a port | β¬ APK |
| SnapCrop β1 | Screenshot editor β ML Kit autocrop, 14 draw tools, collage, device mockup | β¬ APK |
| BillMinder | Bill tracker with alarm-style reminders | β¬ APK |
| OpenSwift β2 | SwiftKey-inspired Android keyboard β glide typing, prediction, themes, clipboard | Repo |
| SwiftFloris β4 | SwiftKey-inspired keyboard built on FlorisBoard's foundation | Repo |
| OpenTasker β8 | FOSS Tasker alternative for Android | Repo |
| OpenLumen β3 | Open-source CF.Lumen successor -- root-grade display color filter for Android with rootless fallback | β¬ APK |
| Droidsmith β1 | Cross-platform ADB GUI for managing Android devices over USB/WiFi (Rust) | β¬ EXE |
π Security & Networking -- 3 repos
Start with: pfSenseSuite, BetterNext, ESET.
| Project | Description | Download |
|---|---|---|
| pfSenseSuite β2 | pfSense scripts and customizations toolkit | Repo |
| BetterNext | Enhanced NextDNS Control Panel | Repo |
| ESET β1 | Complete ESET port and address reference lists | Repo |
π¬ Media & Conversion Tools -- 6 repos
Start with: VideoSubtitleRemover, VideoCrush, AlphaCut.
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 β1 -- 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 β18 -- 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 β2 -- 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 -- 21 repos
Start with: MyPortfolio, LocalChromeStore, LocalDesktopStore.
| Project | Description | Language | Download |
|---|---|---|---|
| MyPortfolio β1 | One Windows desktop catalog for every app I ship β binaries, extensions, APKs from GitHub releases | C# | β¬ ZIP |
| LocalChromeStore β2 | 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 |
| Images β2 | Dark-mode Windows 7 Classic Photo Viewer with live inline rename-while-viewing | C# | β¬ EXE |
| DeepPurge β4 | 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 β3 | Native Windows file converter with context menu integration β 1000+ formats | C# | Repo |
| Devicer | Unified Windows toolkit for rooted Android β identify, ROM search, partition backup, boot.img patch, flashing | C# | Repo |
| Snapture | All-in-one screenshot utility β region/window/fullscreen, pinned overlays, no telemetry | C# | Repo |
| OrganizeContacts | Local-first contact organizer and deduper β native Windows, no cloud upload | C# | Repo |
| 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 |
| qBittorrent-Vanced | Customized BitTorrent client with dark theme | C++ | β¬ EXE |
| PhoneFork | Dual-Samsung Android migration tool for Windows -- apps, media, settings, Wi-Fi, roles, and debloat profiles | C# | Repo |
| QuotaGlass | Always-visible AI usage quota widget for Windows | C# | β¬ EXE |
| TaskCopy | Single-click clipboard snippet menu -- tray icon, global hotkey, search | C# | β¬ ZIP |
| AndroidEmulatorPlus β1 | Install Android SDK, manage AVDs, root with Magisk, migrate apps | C# | Repo |
| Keepr β1 | Pixel-close offline-first Google Keep clone -- Tauri 2 + React + Rust + SQLite | TypeScript | β¬ EXE |
| TsunamiSimulator β1 | 3D-globe tsunami simulator -- asteroid impacts, nuclear bursts, earthquakes, landslides | Rust | β¬ EXE |
| REDplusplus | RED++ -- Remove Empty Directories. Find, display, and delete empty directories recursively with custom filter rules. | C# | Repo |
| RcloneBrowserNG | Modern rclone GUI -- file browser, transfer manager, mount handler. Qt/C++ cross-platform desktop app. Community continuation of RcloneBrowser. | C++ | Repo |
π Guides & Resources -- 4 repos
Start with: AI_Realism, facebook-exit-guide, android-debloat-list.
| Project | Description |
|---|---|
| AI_Realism | Field guide for ultra-realistic AI video generation |
| facebook-exit-guide | Guide for leaving Facebook |
| android-debloat-list | Curated Android debloat list with vulnerability notes β companion to AppManagerNG |
| sysadmindoc.github.io | Personal portfolio and project showcase site hosted on GitHub Pages |
π Misc & Forks -- 5 repos
Start with: octopus-factory, LTSC-MicrosoftStore, RcloneBrowser.
| Project | Description |
|---|---|
| octopus-factory β1 | Recipe-driven autonomous coding pipeline - multi-agent build/audit/release |
| LTSC-MicrosoftStore | Add Windows Store to Win11 24H2 LTSC Upstream: minihub/LTSC-Add-MicrosoftStore; License: Other |
| 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 |