<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: John Stevens</title>
    <description>The latest articles on DEV Community by John Stevens (@john_stevens_713f67fb53ee).</description>
    <link>https://dev.to/john_stevens_713f67fb53ee</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3695066%2Fb05b5d8b-f0bd-47dc-bc8e-62401c87aead.jpg</url>
      <title>DEV Community: John Stevens</title>
      <link>https://dev.to/john_stevens_713f67fb53ee</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/john_stevens_713f67fb53ee"/>
    <language>en</language>
    <item>
      <title>I Built a Free System Diagnostic Tool for Gamers - Here's Why</title>
      <dc:creator>John Stevens</dc:creator>
      <pubDate>Mon, 05 Jan 2026 21:13:18 +0000</pubDate>
      <link>https://dev.to/john_stevens_713f67fb53ee/i-built-a-free-system-diagnostic-tool-for-gamers-heres-why-30pp</link>
      <guid>https://dev.to/john_stevens_713f67fb53ee/i-built-a-free-system-diagnostic-tool-for-gamers-heres-why-30pp</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;If you've ever done tech support for gamers, you know the pain:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"What GPU do you have?" &lt;em&gt;"Uhh... a good one?"&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;"What driver version?" &lt;em&gt;"How do I check that?"&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;"Do you have DirectX 12?" &lt;em&gt;"I think so?"&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Getting basic system info from users is like pulling teeth. And when you're troubleshooting crashes, you need to know about overlays, security settings, missing runtimes — stuff that's scattered across 10 different Windows menus.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution
&lt;/h2&gt;

&lt;p&gt;I built &lt;strong&gt;SecureCheats System Checker&lt;/strong&gt; — a free, portable tool that grabs everything in one click.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe4mqpjen71ilka688h69.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe4mqpjen71ilka688h69.JPG" alt=" " width="800" height="724"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;No install. Run as admin, hit scan, done. You get a clean report covering:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Hardware&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Motherboard, BIOS, CPU, GPU, RAM&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Drivers&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GPU driver version and install date&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Security&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Secure Boot, TPM, BitLocker, Virtualization, Firewall status&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Gaming Essentials&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;DirectX versions (9, 10, 11, 12)&lt;/li&gt;
&lt;li&gt;Visual C++ Redistributables (2005-2022)&lt;/li&gt;
&lt;li&gt;Overlay detection (Discord, Steam, NVIDIA, Xbox Game Bar, OBS, MSI Afterburner)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Antivirus&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Windows Defender status and third-party AV detection&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why These Specific Checks?
&lt;/h2&gt;

&lt;p&gt;Every check exists because of a real support issue:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;DirectX/C++ Runtimes&lt;/strong&gt; → Half of "game won't launch" issues&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GPU driver date&lt;/strong&gt; → Outdated drivers cause crashes and performance problems&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Overlays&lt;/strong&gt; → Discord and Game Bar overlays conflict with anti-cheat and cause FPS drops&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Secure Boot/TPM&lt;/strong&gt; → Required for Windows 11 and some games&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Virtualization&lt;/strong&gt; → Needed for emulators and dev tools, but can conflict with some anti-cheat&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;The tool uses Windows APIs and WMI queries to pull system data. Nothing fancy — just consolidated into one clean output.&lt;/p&gt;

&lt;p&gt;Users can copy the report to clipboard or export it. Makes sharing specs in Discord or support tickets dead simple.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;It's free and open source.&lt;/p&gt;

&lt;p&gt;🔗 &lt;strong&gt;Download:&lt;/strong&gt; &lt;a href="https://securecheats.com/system-checker/" rel="noopener noreferrer"&gt;securecheats.com/system-checker&lt;/a&gt;&lt;br&gt;
🔗 &lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/SecureCheats/system-checker" rel="noopener noreferrer"&gt;github.com/SecureCheats/system-checker&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Would love feedback from the dev community. What other checks would be useful? Drop a comment below.&lt;/p&gt;

</description>
      <category>windows</category>
      <category>gaming</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
