Uipath Activity to check installed softwares on a computer

Hi,
Is there any direct Uipath activity to find out the list of installed softwares on a computer.

There are ways:

  1. to dump it from command line to a notepad file. Using Windows Run command prompt.

  2. And accessing the Control Panel–> Installed Programs

Please let me know if there are any direct Uipath activity for the same…

1 Like

hmm
the method would work for sure
but i hope we dont have a specific activity for this buddy
Cheers @mailsmithash

Thanks then we have to follow one of the methods like looking into control panel or through command prompt dump.

Fantastic
Cheers @mailsmithash

Invoke Powershell command can be used manually to get the list of installed softwares on the computer…UiPath has ‘InvokePowerShell’ activity to run the same command, but its not succeeding…

Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize

If there are any inputs on this it would be helpful…

Able to use the 'InvokePower Shell" successfully for the command Get-Package (This pulls up all the softwares installed on a computer) of PowerShell.
Followed the below query inputs, the issue is solved now:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.