Creating Automation Bot to mine Help Url and Support Number for installed application

Hi,

In following steps we will learn how we can create an automation bot to mine Help Url and Support Number for installed application from application metadata of any installed application

Steps:

  1. Using a power shell activity or configuring WIndows application for command console run following command:
    wmic product get name,HelpLink,HelpTelephone /format:csv > <>\AppDetails.csv
  2. This will generate a csv file which contains the list of all applications running in your system along with Vendor HelpLink and Support Number in below format

  1. Now using Advance Loop activity iterate over all rows of csv and compare application name. If the application name matches with the application help link you are seeking for then you can get the corresponding help link and support number either as a console output ( WriteLine), Pop Up (Message Box activity ) or write in log file ( Custom Log)

Regards,
Amit