KACE SMA - Windows 7 Extended Security Updates (ESU) MAK Deployment
Hi All,
We are tasked with deploying over 1,000 Win 7 ESU MAK Licenses within our organization. So far the deployment has been smooth but we are finding the occasional client PC that does not have the new MAK Lic installed.
At this point, we are looking for a way to determine exactly how many Win Devices have the new MAK applied. Does anyone know how to search or report using the KACE SMA against the MAK Lic File that the Windows command slmgr /dlv provides? THE Windows Script Host provides Information such as Name: Windows(R) 7, Client-ESU-Year1 add-on-for, Description, Activation ID, Extended PID, partial product Key, etc.
Thank you!
Answers (1)
Top Answer
use a Custom Inventory Rule (or many in that case) which runs slmgr and greps the output for the nessesary info.
As an example I check if the system is licensed or not.
ShellCommandTextReturn(cmd /c c:\windows\system32\cscript.exe c:\windows\system32\slmgr.vbs -dlv|findstr status)You can modify it for the output you want and then you can report against your CIRs
1. Go to Inventory | Software |New
2. Fill out all fields.
3. Under Custom Inventory Rule enter the following:
shellcommandtextreturn(c:\windows\system32\cscript c:\windows\System32\slmgr.vbs /dli)
I now have this applied to 635 of my Win 7 machines! Although I didn't expect this to run on all devices since I did not Assign a Label and there is no field to add specific devices. I would be curious to see what your experience was in regards to deployment. I was hoping to only deploy this to a specific group of devices but maybe that's not an option with the Custom Inventory Rule? - Dleo_61 4 years ago
They use a standard functionality for inventory.
By default during inventory all software is checked and counted:
Since you built a CIR for a "FAKE" Software it is handling it as it were a real software and runs it on all "supported" OS. Sometimes it makes sense to limit the software item to OS but usually it is not nessesary) - Nico_K 4 years ago