is there any way to list all the installed application (including MS office applications) in windows OS using python…?
I expect the output as list of applications:
Telegram
Brave
Whatsapp
MS word
& all the applications installed...
is there any way to list all the installed application (including MS office applications) in windows OS using python…?
I expect the output as list of applications:
Telegram
Brave
Whatsapp
MS word
& all the applications installed...
2
Answers
There’s a python package specifically for that task: https://pypi.org/project/windows-tools.installed-software/
You can install the package by executing
pip install windows_tools.installed_software
in your terminal and then you just have to import theget_installed_software
function and call it accordingly, like so:As @ekhumoro commented, you can get it from the windows registry. Using python you can try something like this: