Tuesday, June 23, 2026

Remote Tech Support On-The-Go: Your Hermes-Powered USB Troubleshooting Kit

 

Remote Tech Support On-The-Go: Your Hermes-Powered USB Troubleshooting Kit

Hey Bumbling Electrons!

Ever wished you could magically reach into a friend's struggling computer, fix their woes, and walk away without leaving a trace of installed software? Forget clunky remote desktop setups that require firewall acrobatics or trusting unknown executables. Today, we're diving into a project that lets you do just that: a portable, Hermes-powered USB troubleshooting kit that gives you secure, "no-install" SSH access to a friend's Windows PC.

This is about pure, unadulterated remote PC diagnostics, leveraging the power of a tiny USB drive and Cloudflare's robust tunnel technology.

The Problem: Remote Help is Hard

Helping friends with computer issues is often a pain. You need to:

  • Talk them through installing software.
  • Deal with their antivirus flagging your tools.
  • Navigate their confusing network setup.
  • Worry about leaving software behind on their machine.

Our solution sidesteps all these headaches with a simple, secure, and easily removable kit.

The Concept: Hermes on a Stick, with a Secure Tunnel

Our idea revolves around a standard USB drive containing a few essential tools. When plugged into a friend's Windows computer, it enables a secure SSH connection back to you, the operator (or directly to your Hermes Agent!). The magic comes from Cloudflare Tunnel, which creates an outbound-only connection from their PC, bypassing firewalls and NAT, and routing SSH traffic to a persistent hostname.

Here's how it works:

  1. The USB drive contains the necessary scripts and configuration templates, and the setup process will download the latest cloudflared client.
  2. A one-time setup enables OpenSSH Server on their Windows machine and installs your public SSH key for passwordless access.
  3. When they need help, they simply double-click a batch file on the USB.
  4. A secure tunnel pops up to a specific hostname (e.g., YOUR_CHOSEN_HOSTNAME.YOUR_CHOSEN_DOMAIN).
  5. You, the operator (or Hermes), SSH into that hostname and get a PowerShell prompt on their machine.

Simple, secure, and no lingering software after they remove the USB.

Getting the Kit Files (and Installing Your Hermes Helper Skill!)

This is where the magic of Hermes truly shines! Instead of manually downloading, configuring, and assembling the kit, you can leverage your own Hermes Agent to automate most of the heavy lifting.

We'll provide a GitHub repository containing the core scripts and templates. Your task is simply to clone it and then install a special helper skill from within the repo. This skill will then walk you through generating the necessary Cloudflare Tunnel components and customizing the kit for your specific setup.

Repository Structure (Example)

Let's assume the repository is located at https://github.com/mainmeister/hermes-friend-diag-kit.git. It would contain:

  • remote-diag-kit.md: This is the Hermes skill definition itself. It contains the logic for the automated setup.
  • templates/config.yml.template: A template for the cloudflared configuration.
  • templates/setup-openssh.ps1.template: A template for the PowerShell setup script.
  • templates/connect.bat.template: A template for the batch script that starts the tunnel. The executable connect.bat is generated by the skill.
  • stop.bat: The batch script for stopping the tunnel.
  • README.md: General overview of the kit.

Your Hermes, The Orchestrator

Here's how your Hermes Agent will help you set up the kit:

  1. Clone the Repository: First, you (or your Hermes, with a terminal command) will clone the repository to your local machine. bash git clone https://github.com/mainmeister/hermes-friend-diag-kit.git ~/hermes-friend-diag-kit
  2. Install the Hermes Skill: Now, install the helper skill from the cloned repository. This makes the skill available to your Hermes Agent. bash hermes skill install ~/hermes-friend-diag-kit/remote-diag-kit.md Note: The remote-diag-kit skill itself handles its dependencies: cloudflared CLI will be installed if not present, and it leverages git (for cloning) and the Python requests library (for downloading cloudflared.exe).
  3. Run the Skill for Setup: You'll then instruct your Hermes Agent to run the setup-kit action of the newly installed skill to create the USB kit. bash hermes skill run remote-diag-kit setup-kit This command will kick off the automated setup process. Your Hermes Agent, guided by the remote-diag-kit skill, will then:
    • Cloudflare Login & Tunnel Creation: Guide you through the cloudflared tunnel login process (which typically involves opening a browser window for authentication to your Cloudflare account). Once authenticated, it will:
      • Prompt you for a desired tunnel name (e.g., friend-diag).
    • Hermes will guide you through the cloudflared tunnel login process (which typically involves opening a browser window for authentication to your Cloudflare account). Once authenticated, you will be prompted for a desired tunnel name (e.g., friend-diag). Hermes will then execute cloudflared tunnel create <TUNNEL_NAME> and confirm the creation, generating the unique friend-diag-credentials.json file in your ~/.cloudflared/ directory (which the skill will then copy to the kit).
    • Domain & DNS Configuration: Ask for your chosen domain (e.g., yourdomain.com) and the desired hostname (e.g., helpdesk). It will then use cloudflared tunnel route dns <TUNNEL_NAME> <HOSTNAME>.<YOUR_DOMAIN> to create the necessary CNAME record in your Cloudflare DNS, linking your chosen hostname to your tunnel.
    • config.yml Customization: Take the templates/config.yml.template from the repo, insert your newly generated Tunnel ID, and configure it to route SSH traffic from your chosen hostname (e.g., YOUR_CHOSEN_HOSTNAME.YOUR_CHOSEN_DOMAIN) to localhost:22 on the friend's machine.
    • Download cloudflared.exe: Download the latest cloudflared.exe for Windows directly from Cloudflare's GitHub releases into your kit directory.
    • SSH Key Injection: Read your ~/.ssh/id_rsa.pub (your public SSH key) and embed it directly into the templates/setup-openssh.ps1.template to create the final setup-openssh.ps1 script for your friend. This ensures passwordless, key-based authentication.
    • Assemble the Kit: Finally, Hermes will assemble all these generated, downloaded, and customized files into the final kit directory structure (e.g., ~/my-usb-kit/friend-diag/), ready for you to copy to a physical USB drive.

This automated process ensures that anyone with Hermes Agent can quickly and correctly set up their own personalized remote troubleshooting kit, with minimal manual intervention!

What's on Our USB Drive? (The Assembled Kit Files)

Once your Hermes Agent has finished its work, the ~/my_friend_usb/usb-kit/friend-diag/ directory will contain these crucial pieces:

  • cloudflared.exe: The Cloudflare tunnel client (portable Windows executable), downloaded by Hermes.
  • config.yml: The configuration file for cloudflared, customized by Hermes with your Tunnel ID and hostname.
  • friend-diag-credentials.json: CRITICAL SECRET! This file, generated by Hermes, contains the credentials for your Cloudflare Tunnel. Anyone with this file can run the tunnel, so keep it safe and don't share the USB indiscriminately.
  • setup-openssh.ps1: The PowerShell script, customized by Hermes with your public SSH key, designed to run once as Administrator.
  • connect.bat: A simple batch script for starting the tunnel.
  • stop.bat: A batch script for stopping the tunnel.
  • README.txt: (Our comprehensive guide!) Provides all the instructions and troubleshooting. This file is generated by the skill for the end-user from the README.md in the repository.

One-Time Setup on Your Friend's PC (The "Install Nothing" Part!)

This step only needs to be done once per friend's computer. It enables the built-in Windows OpenSSH Server and configures it for your access.

  1. Plug in the USB drive.
  2. Right-click setup-openssh.ps1 on the USB drive.
  3. Choose "Run with PowerShell as Administrator."
  4. Click "Yes" on the User Account Control (UAC) prompt.
  5. Wait for "Done!" to appear (usually about 30 seconds).
  6. Note the Windows username printed at the end (or type whoami in PowerShell anytime). You'll need this username to SSH in.
  7. Send that username to yourself (the operator). No password is needed; the kit uses key-based authentication.

Every Time You Want Help

Once the one-time setup is done, getting help is quick and painless:

  1. Friend double-clicks connect.bat on the USB drive.
  2. A black command window opens. They wait until they see a line that says "Registered tunnel connection" (usually 5-15 seconds). This means the tunnel is active.
  3. Friend tells you: "Tunnel is up, you can SSH in now."
  4. You (or Hermes) SSH in using their Windows username and the configured hostname: ssh <windows-username>@YOUR_CHOSEN_HOSTNAME.YOUR_CHOSEN_DOMAIN.
  5. Important: The friend leaves the black window open while you're working.
  6. When done, they simply close the window (or run stop.bat).

Unlike older versions of this kit, the hostname YOUR_CHOSEN_HOSTNAME.YOUR_CHOSEN_DOMAIN stays the same and doesn't expire, making it reliable.

Hermes in Action: Remote Diagnosis

With an SSH connection established, your Hermes Agent can now fully utilize its terminal and file tools to diagnose problems:

  • Read system information: Check logs, running processes, network configuration.
  • Run diagnostic commands: Execute PowerShell commands, check disk space, inspect services.
  • View/modify files: Examine configuration files, temporary directories (with appropriate caution and permission).
  • Install/remove software: Only with explicit verbal permission from your friend.

Hermes provides a powerful, text-based interface to their computer, allowing for precise and efficient troubleshooting.

Troubleshooting & Pitfalls (Where the Electrons Really Bumble!)

Here are the common bumps we hit during setup and operation, and how to smooth them out:

  • "sshd service not found" or "service did not start":
    • Workaround: This usually means the OpenSSH Server wasn't enabled or started correctly. Simply re-run setup-openssh.ps1 as Administrator.
  • Friend says "connection refused" or "no route to host":
    • Workaround: The tunnel isn't active or properly registered. Ensure connect.bat is still running on their PC and displaying "Registered tunnel connection" lines.
  • Friend says "permission denied (publickey)":
    • Workaround: Your public SSH key isn't correctly installed or recognized. Re-run setup-openssh.ps1 as Administrator. This script installs your public key into both the user's personal authorized_keys file and the system-wide one (C:\ProgramData\ssh\administrators_authorized_keys) that Windows OpenSSH Server checks for admin accounts. If this step failed, the key won't be there. Also, double-check that you're using the correct Windows username (the one printed at the end of setup-openssh.ps1).
  • "Windows Defender SmartScreen prevented an unrecognized app":
    • Workaround: cloudflared.exe is signed by Cloudflare, but SmartScreen might still warn on first run. Instruct your friend to click "More info" then "Run anyway."
  • "Execution of scripts is disabled on this system" (for setup-openssh.ps1):
    • Workaround: Windows' PowerShell execution policy often blocks .ps1 scripts by default, even for administrators. That's why the repository now includes an install.bat wrapper. Instead of fighting with execution policies or making your friend type arcane commands, just tell them to right-click install.bat and select "Run as Administrator". The batch script handles the policy bypass automatically.
  • "failed to fetch configuration" or "tunnel not found":
    • Workaround: This points to issues with the friend-diag-credentials.json file. Verify that it is present in the same folder as cloudflared.exe on the USB drive and hasn't been corrupted.
  • "Network is unreachable" when you try to SSH in:
    • Workaround: If you created the Cloudflare Tunnel manually, ensure that your chosen hostname (e.g., helpdesk.yourdomain.com) isn't already set up as a standard A/CNAME record serving web traffic. It must be a tunnel route pointing to the tunnel's UUID. Check your Cloudflare dashboard, delete any conflicting DNS records for that hostname, and run cloudflared tunnel route dns <TUNNEL_NAME> <HOSTNAME>.
  • cloudflared tunnel login fails with a certificate conflict:
    • Workaround: If you already use cloudflared for something else on your machine, you might have an existing cert.pem. The login command will warn you before overwriting it. You can safely back it up or delete it to proceed with the new login.

What Your Friend Can See (and What They Can't)

Transparency is key when helping friends. Here's a quick overview of what access you (or Hermes) have:

They Can: * You'll have a PowerShell prompt as their Windows user. * Read system information, run diagnostic commands. * View files in their user profile. * Change settings, install/remove software (but only with their explicit permission).

They Cannot: * See their desktop or watch their screen (unless they manually send a screenshot). * Access other user accounts on their PC. * Reach their PC after they close connect.bat. * Reach this PC from anywhere other than through the specific tunnel hostname (YOUR_CHOSEN_HOSTNAME.YOUR_CHOSEN_DOMAIN).

Security Notes

  • The friend-diag-credentials.json file is a secret. Treat the USB stick as a sensitive tool. Don't share it, and don't leave it plugged in when not in use.
  • The tunnel only forwards port 22 (SSH). No other services on their PC are exposed to the internet.
  • Revocation: If you stop using the kit, you can delete the tunnel from your Cloudflare account to permanently revoke the credentials.

Future Enhancements: Hermes, The Ultimate Diagnostic Sidekick

The core kit provides robust access, but with Hermes at the helm, the possibilities for advanced diagnostics are vast. Here are some ideas for how your Hermes Agent could further supercharge this troubleshooting kit:

  • Automated Initial Health Check & Reporting: Instead of manually running commands, your Hermes could be instructed to perform a comprehensive initial scan. It would check disk space, memory, CPU, running processes, recent Windows Event Log errors (System, Application, Security), network connectivity, installed updates, and startup programs. Hermes would then synthesize this data into a concise, prioritized report for you.
  • Guided Troubleshooting Workflows: For common problems (e.g., "slow PC," "printer isn't working"), Hermes could guide you through a predefined troubleshooting sequence. It would execute commands, interpret results, and suggest next steps, effectively acting as an intelligent diagnostic expert.
  • Smart Log Analysis: Windows Event Logs can be overwhelming. Hermes could query, filter, and interpret these logs intelligently. Ask Hermes to "Summarize critical errors from the last 24 hours in the System log" or "Find all warnings related to network adapters," and it will provide actionable insights.
  • Secure File Transfer and Management: Leverage Hermes to securely transfer log files from the remote machine to your local system, or push small diagnostic scripts and fixes to the friend's PC using scp or sftp over the established SSH tunnel.
  • Contextual Command and Error Explanations: Encounter a cryptic error message or an unfamiliar PowerShell command? Ask Hermes for an immediate explanation, syntax, and examples. It can leverage its knowledge or perform quick web searches to provide instant context.
  • Automated System Restorations / Rollbacks (with consent): If a configuration change made during troubleshooting causes new issues, Hermes could assist in reverting. It could guide the operator through creating system restore points or reverting problematic Windows updates using PowerShell commands, always with explicit user consent.

To Uninstall Everything

If your friend no longer wants the setup on their PC:

  1. Go to Settings -> Apps -> Optional Features.
  2. Find "OpenSSH Server" and click "Uninstall."
  3. Simply delete the kit directory (or the entire USB kit folder) from the USB drive.

That's it! No lingering software. The tunnel credentials remain valid (and you can revoke them from Cloudflare), but nothing is left on their PC.

No comments:

Post a Comment