How to Check If My Processor is x86 (32-bit) or x64 (64-bit) in Windows?

There are many ways of checking if your processor is 64 bit or 32 bit on windows platform. 


I will be discussing the simplest and easy method which is full proof.  


Just open Command prompt and type 
                             SYSTEMINFO
 ( command is not case sensitive),  within a minute command prompt will be full with of information. you just have to search for "System Type :" This row will tell you your processor type as shown in below image. 


  

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...