To discover “Click Once” applications currently installed in a machine, below code helps to find out currently installed click once applications. The GetInstalledClickOnceApps() method read the installed click once applications from Registry;add it to the list and return the list. The LoadInstalledClickOnceApps() method binds installed application names and version to the list view. The Load() method is the root method. Code: public partial class Form1 : Form { public Form1() { InitializeComponent(); Load(); } /// /// Load /// ...