📦 Discord Forum Backup

SYSTEM CHECKER WORKING ON ALL VERSION OF WINDOWS

📦 arquivado 💬 2 mensagens
📋 Como funciona o download:
  1. Username 2025-12-05 03:58:36 editado
    i made this becuase the system checker they offer might not work if u are running on the newest version of windows 25_h2 that specif version the wmic commands since wmic is deprecated in newer Windows versions. it can achieve similar functionality using PowerShell commands in your batch file but here you go it checkes evreything a lot more than theres dose rn ``` @echo off cls color 3 title COMPLETE SYSTEM INFORMATION echo ============================== echo COMPLETE SYSTEM INFORMATION echo ============================== powershell -NoProfile -ExecutionPolicy Bypass -Command "Write-Host '--- BIOS ---'; Get-CimInstance Win32_BIOS | Format-List *; Write-Host '--- Motherboard / Baseboard ---'; Get-CimInstance Win32_BaseBoard | Format-List *; Write-Host '--- CPU ---'; Get-CimInstance Win32_Processor | Format-List *; Write-Host '--- GPU ---'; Get-CimInstance Win32_VideoController | Format-List *; Write-Host '--- RAM / Memory ---'; Get-CimInstance Win32_PhysicalMemory | Format-List *; Write-Host '--- Disk Drives ---'; Get-CimInstance Win32_DiskDrive | Format-List *; Write-Host '--- Network Adapters / Wi-Fi ---'; Get-NetAdapter | Format-List *; Write-Host '--- IP Configuration ---'; Get-NetIPAddress | Format-Table InterfaceAlias,IPAddress,AddressFamily,PrefixLength,Type; Write-Host '--- Operating System ---'; Get-CimInstance Win32_OperatingSystem | Format-List *; Write-Host '--- Computer System ---'; Get-CimInstance Win32_ComputerSystem | Format-List *; Write-Host '--- UUID ---'; Get-CimInstance Win32_ComputerSystemProduct | Select-Object -ExpandProperty UUID; Write-Host '--- HWID (Machine GUID) ---'; Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Cryptography' | Select-Object -ExpandProperty MachineGuid; Write-Host '=============================='; Write-Host 'END OF REPORT'" pause ```
  2. Username 2025-12-05 06:00:22
    or just download it here
    • 📄
      echo.bat
      application/x-msdos-program; charset=utf-8 — 1.4 KB
      ⬇️ Download