Installed Programs and their identifying number

Want to know the list of installed programs in the endpoints along with their GUID’s ??

This script does this for you. Please refer the below script.

This lists the identifying number (GUID ) and the name of the installed programs.



import os 
id_no = os.popen("wmic product get name,identifyingNumber").read()
print id_no


Output 01:

Output 02:

20170516-Get_Installed_Product_and_its_guid.json (344 Bytes)