// JWJ03.14.24 This will check all applications installed to see if there is an update //run in xplore ClearUserLog(); var apps = new sn_appclient.AppsDataAPI() .appsData .getAllAppsWithVersions(false, true, false, false)['data'] apps.forEach(function(app) { var hasUpdate = app.version && app.active && app.latest_version != app.version && app.can_install_or_upgrade && app.isInstalledAndUpdateAvailable; if (hasUpdate) { gs.info(app); //UserLog(app); } });