Besides registry enumeration, what other method can list installed programs on a Windows system?
You can enumerate shortcut files using WMI's `Win32_ShortcutFile` class. For example, `wmic PATH Win32_ShortcutFile get name` retrieves all .lnk files. Since most installed programs create shortcuts, this can serve as an alternative or supplementary method to registry enumeration.
Win32_ShortcutFileshortcutswmicalternative method