I hope that you can help me as I am trying to work out the best way to ID and then install the SoftPak across my domain
as I have multi different hardware types, and I am looking for the best solution to do this.
So the path I am think is to use a IF Statement solution, which will ID the make and model of the hardware and then determine if it needs updating with the Intel Softpak,
but I am not able to workout out how to find the Intel SA 00075 MEVersion or the ME VersionBuild.
so far I have worked out the following ideal to collect the Make and Model of the workstation
for /F "tokens=*" %%a in ('wmic csproduct get name') do set model=%%a
but I am having issues with finding out how to find the INTEL ME side
INTEL_SA_00075_ME.InformationMEVersion
INTEL_SA_00075_ME.Information.MEVersionBuild
as I would like to use the command in something like this
if /I "%model%" == "Latituded E6410" and "%MEVersion%" =="8.1.000"
( REM Then install latest SoftPak )
any ideals on how to find the Intel information.
I am also open to other ideals if you think doing it via a Bat file is not a good ideal.