Unknown “Program” in Startup Programs – Windows 10

Which start up program is this? Did I install it???

Unknown Startup Program

Enabling the Command line view will show us the location of the executable. Right click on the Top Row and Check “Command line”

Enable Command line

From the Command line column we see that the program is Tomboy

Command line shows us the location of the executable

How to View Installed Programs in linux

Debian Based Distros

The below command should work for Debain, Ubuntu, and the Raspberry Pi Raspbian.

dpkg --get-selections

 

RPM Based Distros

The following works on Fedora, CentOS, ReHat.

rpm -qa

 

The above commands return all of the packages installed on a system.  If you want to look for a specific program or package you can use grep to filter the results.

rpm -qa | grep program

or

dpkg --get-selections | grep program