How to get which SSE (SSE3/SSE4.1/SSE4.2) is supporting by my CPU on windows using a batch script.
on Ubuntu we can get it using below command and parse it for required string sse4_2
or sse4_1
.
RESP=$(head /proc/cpuinfo -n30)
How to get which SSE (SSE3/SSE4.1/SSE4.2) is supporting by my CPU on windows using a batch script. on Ubuntu we can get it using below command and parse it for required string
|
|||
|
I don't think even WMI exposes this particular bit of information, otherwise what you want could have probably been accomplished using PowerShell (which could have been invoked from a batch file). I guess using third-party programs written using C/Assembly etc. is the only possible solution. I recommend CHKCPU (CPU Identification Utility). Invoke it using
|
|||
|