🆕 Free Tool Release — Navatek Solutions

Genesis v2.1 — Free Windows Diagnostic & Optimization Tool

📅 April 6, 2026 🕐 8 min read 💻 Windows 7 – 11 🎉 No install · No cost · No data collected

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.

Completely free — personal and commercial use Genesis is a give-back from Navatek Solutions to the IT community. Use it on client machines, run it in your MSP workflow, or hand it to home users. No restrictions.
⬇ Single .HTA file ⏳ Scans in under 2 min 🔒 Zero network connections 📄 Exportable HTML/PDF report
7 dashboard tabs covering every layer of Windows health from hardware to event logs
11 temp file paths cleaned in a single optimization run with before-and-after byte counts
$0 cost — free forever for personal and commercial use with no account or license required
1 file to download and run — works offline, on air-gapped machines, and via USB drive

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.

📌
No install. No dependencies. No account. Genesis is a single .HTA file. Copy it to a USB drive and run it on any Windows machine from Windows 7 through Windows 11. That is the entire deployment story.

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 Data
📄

System 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 Audit

Optimize

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 Tasks
🔒

Security

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 Audit
🌐

Network

Active adapters with IP, MAC, and gateway. Firewall profile compliance check. DNS server configuration. Four-card summary with overall network health status.

Network View
⚠️

Events

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 Log
📊

Report

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.

Exportable

Who 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.

1
Temp File Cleanup
11 paths cleaned with before-and-after byte counts for each
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
2
Disk Optimization (SSD-Aware)
Detects drive type and runs the correct operation automatically
Safe

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.

# Detect SSD vs HDD, run appropriate operation
if (SSD detected) Optimize-Volume -DriveLetter C -ReTrim
else Optimize-Volume -DriveLetter C -Defrag
3
Memory Flush & DNS Cache Clear
Releases fragmented memory and flushes stale DNS entries
Safe

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.

ipconfig /flushdns
Clear-DnsClientCache
[System.GC]::Collect()
4
Services Tune — 11 Non-Essential Services to Manual
Reduces background CPU load without disabling anything permanently
Safe

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.

📌
Manual, not Disabled Setting to Manual means the OS can still start these services when an application requests them. It does not break functionality — it just stops them from consuming resources at startup when nothing is actively using them.
5
Registry Cleanup — Current User MRU Only
Clears run history, typed paths, and recent documents from the current user profile
Safe

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.

6
Old Prefetch Files — 30+ Day Cleanup
Removes stale prefetch while leaving recent entries intact
Safe

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.

7
WinSxS / DISM Component Cleanup
Reclaims space from superseded Windows component packages
Takes Time

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.

# Runs silently in background — may take several minutes
dism.exe /Online /Cleanup-Image /StartComponentCleanup
8
High Performance Power Plan
Sets the active power plan to maximum performance
Context Matters

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.

⚠️
Laptop users: review before optimizing High Performance disables CPU and GPU throttling, which increases power draw. On AC power this is ideal. On battery this will reduce runtime. Revert using powercfg /setactive BALANCED if needed after the optimization run.

How to Use Genesis in Six Steps

1
Download Genesis v2.1
Single .HTA file — no zip, no installer, no extras
Start Here

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.

2
Run as Administrator
Required for service tuning, DISM, and firewall inspection
Required

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.

3
Click Full System Scan
Runs all data collection in sequence — watch the log panel for live progress
Step 1

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.

4
Review Your Results Across All Seven Tabs
Dashboard gives the headline — Security and Events show what needs attention
Step 2

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.

5
Optimize and Clean (Optional)
Confirmation dialog shows exactly what will be cleaned before anything runs
Optional

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.

6
Generate and Export the Report
HTML or PDF — self-contained, opens in any browser
Step 3

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.

🔒
Privacy by design — zero network requests Genesis makes no outbound connections of any kind. No telemetry, no analytics, no license check. Everything it reads stays on the machine it runs on. You can verify this by opening the .HTA file in any text editor and reading the full source code before running it.

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

No. Genesis is a single .HTA file. Double-click it on any Windows machine and it opens immediately. No setup wizard, no runtime download, no registry entry. To remove it entirely, delete the file.
Genesis runs on Windows 7, 8, 8.1, 10, and 11. HTA technology has been built into Windows since Windows 98 and remains available in all current versions. The tool detects your OS version during the scan and adjusts queries accordingly.
No. Genesis makes zero outbound network connections. Every query runs locally through WMI and PowerShell on your machine. Nothing is transmitted, collected, or stored by Navatek Solutions when you use this tool. You can verify this by opening the .HTA file in Notepad and reading the source code before running it.
Yes, it is safe for typical business and personal workstations. Every cleanup path targets temporary files, junk caches, and already-uploaded error reports. Locked in-use files are silently skipped. Services are set to Manual start rather than Disabled, so Windows can still launch them if needed. Genesis shows a confirmation dialog listing exactly what will be cleaned before anything runs. The one situation to note: the High Performance power plan is not ideal for laptops on battery power.
SmartScreen warns on any .HTA file that does not carry a code-signing certificate because HTA is an executable format that can access local system resources. This warning is expected and is not a sign of anything malicious. Genesis is fully open source — right-click the file and open it in Notepad to verify every line of code before you run it.
Yes. Genesis is free for both personal and commercial use. Navatek Solutions built it as a give-back to the IT community. Use it on client machines, include it in your MSP onboarding workflow, run it as part of a managed service routine — no restrictions apply.
The Full System Scan is read-only. It collects data and populates all seven dashboard tabs without making any changes to your system. The Optimize and Clean step is where files are deleted, services are adjusted, and the power plan is changed. You can run the scan and generate a report without ever running the optimizer.
That is exactly what Navatek Solutions does. Genesis is the first look. If you need ongoing management, break-fix support, or proactive monitoring for your business, reach out through our scheduling link above. We serve small businesses nationwide with fully remote managed IT services and respond to emergency requests in under 15 minutes.
NS
Navatek Solutions
Jerry Kien Jr.
Genesis v2.1 came out of the same toolset our engineers use on client machines every day. Every time we sat down at a new machine, we ran the same manual sequence of WMI queries, Event Viewer digs, and temp file cleanups. Genesis standardizes that entire process into one file so any IT pro — or any home user — gets the same consistent first look we do. No install. No cloud. No cost.
Free Download — No Account Required

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.

✓ Free Forever  ·  ✓ No Install  ·  ✓ No Data Collected  ·  ✓ Personal & Commercial Use