All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oshi.software.os.windows.WindowsInstalledApps Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2025 The OSHI Project Contributors
 * SPDX-License-Identifier: MIT
 */
package oshi.software.os.windows;

import oshi.driver.windows.registry.InstalledAppsData;
import oshi.software.os.ApplicationInfo;

import java.util.List;

public final class WindowsInstalledApps {

    private WindowsInstalledApps() {
    }

    public static List queryInstalledApps() {
        return InstalledAppsData.queryInstalledApps();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy