View Javadoc
1   /*
2    * Copyright 2025 The OSHI Project Contributors
3    * SPDX-License-Identifier: MIT
4    */
5   package oshi.software.os.windows;
6   
7   import oshi.driver.windows.registry.InstalledAppsData;
8   import oshi.software.os.ApplicationInfo;
9   
10  import java.util.List;
11  
12  public final class WindowsInstalledApps {
13  
14      private WindowsInstalledApps() {
15      }
16  
17      public static List<ApplicationInfo> queryInstalledApps() {
18          return InstalledAppsData.queryInstalledApps();
19      }
20  }