If you need to check your Windows PC Architecture, it can be done easily with this script:
Created
February 17, 2023 17:07
-
-
Save Minionguyjpro/ae4b3aa2c0099284fc48c8bfa13eae62 to your computer and use it in GitHub Desktop.
Check Windows PC Architecture Easily
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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