hi,
I am using macro scheduler 11. Windows 7 32-bit operating system. I wanted to fetch the information of installed programs in 'Control Panel' -> 'Programs and Features'. GetWindowText and GetWindowTextEx both is not returning the data. Can someone help me in extracting the data.
Thanks in advance.
uv.
Fetching contents of 'Programs and Features'
Moderators: JRL, Dorian (MJT support)
-
- Automation Wizard
- Posts: 1101
- Joined: Fri Jan 07, 2005 5:55 pm
- Location: Somewhere else on the planet
Another, and possibly better, solution would be to automate WMIC which can dump an installed program list to a text file:
You'll have to play with the options to get exactly what you want.
Code: Select all
Run Program>wmic /output:c:\yourfolder\proglist.txt product get name,version