HARDWARE DIAGNOSTICS

Automated Warranty Routing.

Stop asking users to read tiny stickers over the phone. Query hardware CIM data to extract serial numbers and automatically route technicians to the correct vendor warranty portal in seconds.

SEE HOW IT WORKS
WMI / CIM Dispatcher ● CONNECTED

[UHDC] WARRANTY LOOKUP: LAPTOP-US-4829

[i] Querying Hardware Info...

> Make: Dell Inc.

> Serial: 8J92XQ3

[UHDC SUCCESS] Opening Warranty Page in your default browser...

> Routing to: https://www.dell.com/support/home/en-us/product-support/servicetag/8J92XQ3/overview

Accelerate Hardware Replacements

When a user reports physical hardware damage, verifying their active warranty or accidental damage protection plan is the critical first step. This tool eliminates typos and frustration by automating the entire lookup process.

Hardware Telemetry

Establishes a remote session over Port 5985 (HTTP) to query specific WMI classes: Win32_BIOS (to extract the Serial Number) and Win32_ComputerSystem (to extract the Manufacturer).

Dynamic Routing Logic

Evaluates the manufacturer string (e.g., matching "Hewlett-Packard" to HP) and concatenates the serial number into the specific REST API or search query URL format required by that vendor's website.

Local Shell Handoff

Executes a Start-Process command, which instructs the technician's local Windows OS to open the constructed link directly in their default web browser, bypassing manual copy-pasting.

INTERACTIVE TRAINING ENGINE
⭐ 100 XP

How Junior Techs Learn This Tool:

While the UHDC uses PowerShell to query WMI and dynamically build the vendor's URL, a junior technician should know how to quickly grab a remote computer's serial number manually. The training engine teaches them how to utilize Sysinternals PsExec to remotely execute the classic wmic command to instantly retrieve the BIOS serial number (Service Tag) without needing to physically flip the laptop over.

psexec \\$Target wmic bios get serialnumber

The In-Person Equivalent

Flipping the laptop over to read the tiny printed sticker on the bottom chassis, opening a web browser, navigating to the vendor's support page, and manually typing the alphanumeric serial number into the search box.

Technical Q&A

Q: Which hardware vendors are currently supported by the auto-routing logic?
The script currently supports automatic URL construction for Dell, Lenovo, HP, and Microsoft Surface devices. If a different manufacturer is detected (e.g., Panasonic or a custom-built PC), the script will still display the serial number in the console for manual lookup, but it will not attempt to open a web browser.
Q: Why does the script warn me about Microsoft Surface devices?
Unlike Dell or Lenovo, which allow public, unauthenticated queries against their warranty databases, Microsoft typically requires an administrator to log into the "Microsoft 365 admin center" or "Surface Support Portal" to view warranty entitlements. The script will route you to the correct login page, but it cannot bypass the authentication requirement.
Q: What happens if the WMI query fails?
If the target machine has a corrupted WMI repository or a strict firewall blocking Port 5985, the script will fail gracefully. It will output an error to the console suggesting "Possible cause: Firewall, RPC error, or Access Denied," allowing the technician to pivot to a different troubleshooting method.