Genesis v2.1 — Free Windows Diagnostic & Optimization Tool
Every technician has a first-look ritual when they sit down at a new machine. Genesis replaces that entire 30-minute manual process with a single double-click. Full system health dashboard. Temp file cleanup. Service tuning. Security audit. Exportable report. One .HTA file. No install required.
Forever Free
Run It
A Full Windows Health Check in One Double-Click
Every IT technician knows the first-look ritual. Open Task Manager. Check disk space. Peek at Device Manager. Scroll the event log and immediately regret it. Pull some WMI queries. Run a temp file cleanup if there is time. That process takes 20 to 45 minutes, varies by person, and misses things.
Genesis is what happens when you standardize that entire workflow into a single portable file. Built on Windows HTA technology — the same script engine native to Windows since Windows 98 — Genesis runs on any Windows machine without installation, without admin provisioning, and without calling home to any server. It reads your system directly through PowerShell and WMI, and surfaces everything in one clean tabbed dashboard.
Seven Tabs. Every Layer Covered.
Genesis is organized into seven purpose-built tabs. Each one surfaces data that would otherwise require separate tools, manual WMI queries, or digging through multiple Windows admin panels.
Dashboard
Live CPU, RAM, Disk, and GPU donuts with sparkline history. System Health score. Recoverable space estimate. Top processes by CPU. Last boot and Defender status at a glance.
Real-Time DataSystem Info
Full hardware inventory: BIOS version and date, CPU details, memory, all storage drives, GPU driver, critical device drivers with signature status, and installed software list.
Hardware AuditOptimize
Ten-step cleanup with real-time task progress. Before-and-after comparison table. Per-path cleanup detail showing exactly how many bytes were freed from each location.
10 TasksSecurity
Windows Defender status, Firewall profile states, UAC level, filtered Security event log showing Critical and Error entries only, and listening ports mapped to owning processes.
Security AuditNetwork
Active adapters with IP, MAC, and gateway. Firewall profile compliance check. DNS server configuration. Four-card summary with overall network health status.
Network ViewEvents
System and Application event logs scoped to the last seven days. Critical, Error, and Warning counts as big-number cards. No scrolling through noise in full Event Viewer.
7-Day LogReport
Generate a complete portable HTML document after any scan. Captures all findings, health scores, optimization results, and security status. Export as HTML or save as PDF.
ExportableWho Should Use Genesis
Genesis was built to serve a wide range of users. The interface is clean enough for a home user and comprehensive enough for a senior systems engineer.
| User Type | How They Use It | Key Benefit |
|---|---|---|
| IT Technicians / MSPs | First-look assessment on every new machine | Report to hand the client at session end |
| Small Business Owners | Self-service health check without IT knowledge | Report to share when asking for help |
| Gamers & Streamers | FPS drops, lag, and stuttering root cause search | Power plan + service tune in one click |
| Home Users | Periodic checkup on personal machines | Safe, offline, zero data collected |
| Field Technicians | USB-based portable diagnostic on-site | Works on air-gapped machines |
What the Optimizer Actually Runs — No Surprises
Most Windows cleanup tools are vague about what they touch. Genesis is not. Here is every action, in sequence, with exactly what it does and whether it is safe.
Genesis scans and clears eleven specific temp file locations. Locked in-use files are silently skipped. A per-path cleanup table shows exactly how many bytes were freed from every location.
- %TEMP% and %TMP% — user temp folder
- LocalAppData\Temp — app-specific temp files
- LocalAppData\Microsoft\Windows\INetCache — browser cache remnants
- LocalAppData\Microsoft\Windows\Explorer — thumbnail cache
- Windows\Temp — system temp folder
- Windows\Prefetch — prefetch cache (also handled separately in Step 6)
- SoftwareDistribution\Download — Windows Update cache
- LocalAppData\CrashDumps — app crash dump files
- ProgramData\Microsoft\Windows\WER\ReportQueue — already-uploaded error reports
- $Recycle.Bin — Recycle Bin contents across all drives
Genesis detects whether C: is a solid-state or spinning drive and runs the appropriate Windows Optimize-Volume command. SSDs receive TRIM. HDDs receive defragmentation. No guessing, no wrong operation applied to the wrong drive type.
if (SSD detected) Optimize-Volume -DriveLetter C -ReTrim
else Optimize-Volume -DriveLetter C -Defrag
Flushes the DNS resolver cache and triggers .NET garbage collection to release freed memory back to the OS. These are non-destructive operations that take effect immediately without a reboot.
Clear-DnsClientCache
[System.GC]::Collect()
Genesis sets 11 non-essential Microsoft services to Manual start rather than Automatic. None are disabled or deleted. Windows can still launch them if needed. Services targeted include DiagTrack, WSearch, RemoteRegistry, WMPNetworkSvc, Xbox services, RetailDemo, MapsBroker, and MessagingService.
Removes the Run MRU list, TypedPaths history, and RecentDocs entries from the current user's profile hive only. Genesis does not touch any system registry keys, application registry entries, or HKLM hives.
Removes .pf prefetch files older than 30 days. Recent prefetch files are left in place to preserve fast launch behavior for applications the user actively uses. This avoids the common mistake of clearing all prefetch, which slows initial app launches temporarily.
Runs DISM /Online /Cleanup-Image /StartComponentCleanup in a hidden background window. This reclaims space from old Windows component packages that have been superseded by updates. On older machines this step can take several minutes. Genesis warns you in the log panel and shows it is running throughout.
dism.exe /Online /Cleanup-Image /StartComponentCleanup
Activates the High Performance power plan using its native GUID. Ideal for desktop workstations and gaming machines. If you are running Genesis on a laptop where battery life matters, note that this step will affect battery duration until you revert to the Balanced plan.
How to Use Genesis in Six Steps
Click the download link at the bottom of this page. You receive one file: Genesis-v2_1.hta. No installer, no bundle, no email gate. Save it anywhere — your desktop, a USB drive, a shared network folder.
Right-click Genesis-v2_1.hta and select Run as Administrator. Some features — service tuning, DISM cleanup, and firewall state reads — need elevated privileges. The tool opens without admin rights but those sections will show limited data.
Hit the blue Full System Scan button at the bottom of the window. Genesis collects system identity, OS info, CPU and memory, storage drives, GPU, BIOS, drivers, software, temp file sizes, security status, network adapters, and event log data in sequence. Most machines finish in 60 to 120 seconds.
Browse the seven tabs. The Dashboard health score and recoverable space estimate tell you at a glance whether the machine needs work. System Info surfaces the full hardware inventory. Security flags Defender, Firewall, and UAC state. Events shows the last seven days without the noise of full Event Viewer.
Click Optimize & Clean. Genesis shows a plain-English confirmation dialog listing every path it will touch. Click Yes to proceed. The Optimize tab shows real-time progress on each of the ten tasks. Come back to the before-and-after table when it finishes.
Click Generate Report to compile all findings into one portable document. Export as HTML to email or share, or save as PDF for client records. The report captures machine identity, all hardware specs, health score, optimization results, security findings, and event log summary — everything you need to document a session.
How Genesis Works Under the Hood
Genesis is built on Windows HTA — HTML Application — technology. An HTA file runs in Internet Explorer's Trident rendering engine with local machine trust. That trust level is what allows it to execute PowerShell, call WMI, read the event log, inspect firewall state, and interact with system objects that a normal browser page cannot reach.
Every data collection task calls a psRun() wrapper function that creates a WScript.Shell object, executes a PowerShell command, reads the output through a temporary file, and returns the result as a string. All PowerShell calls are wrapped in try/catch blocks with guaranteed Write-Output fallbacks so a single failed query never crashes the interface or leaves the UI in a broken state.
The UI uses IE-compatible table-based layout — not CSS Grid or Flexbox — because Trident's CSS support stops well short of modern standards. Every visual element including the donut gauges, sparkline history bars, progress bars, and color-coded badges is hand-built without any external library dependencies. The tool works offline, on air-gapped machines, and on Windows versions that predate modern browser engines.
The color scheme uses a locked navy baseline with cyan, yellow, and green accents. Every hex value is hardcoded throughout the stylesheet — no CSS custom property fallbacks that Trident would silently ignore.
Genesis v2.1 — Common Questions
Download Genesis v2.1 and Run Your First Scan Today
One .HTA file. Works on Windows 7 through 11. No install. No internet required. No data collected. Full system health dashboard, temp cleanup, service tuning, security audit, and exportable report — free from Navatek Solutions.