Skip to content

Instantly share code, notes, and snippets.

@Minionguyjpro
Created February 17, 2023 17:07
Show Gist options
  • Save Minionguyjpro/ae4b3aa2c0099284fc48c8bfa13eae62 to your computer and use it in GitHub Desktop.
Save Minionguyjpro/ae4b3aa2c0099284fc48c8bfa13eae62 to your computer and use it in GitHub Desktop.
Check Windows PC Architecture Easily

Check Windows PC Architecture Easily

If you need to check your Windows PC Architecture, it can be done easily with this script:

@ECHO OFF
title Windows PC Architecture Checker by Minionguyjpro
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" echo Your PC architecture is 64-bit (AMD64)!
if "%PROCESSOR_ARCHITECTURE%"=="IA64" echo Your PC architecture is 64-bit (IA64)!
if "%PROCESSOR_ARCHITECTURE%"=="ARM64" echo Your PC architecture is 64-bit (ARM64)!
if "%PROCESSOR_ARCHITECTURE%"=="x86" echo Your PC prchitecture is 32-bit (x86)!
pause > nul
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment