installed-applications

Adobe AIR - listing installed applications

橙三吉。 提交于 2020-01-21 05:39:06
问题 Is it possible to get list of installed AIR applications, optionally only by one vendor? Or, is it possible to check, whether is one application (checked by name/some id/vendor) installed (this method would be preferred) Thank you. 回答1: You can do this: private function loadAIR():void { var loader:Loader = new Loader(); var loaderContext:LoaderContext = new LoaderContext(); loaderContext.applicationDomain = ApplicationDomain.currentDomain; loader.contentLoaderInfo.addEventListener(Event.INIT,

OAuth 2 Installed application client secret considerations(google api)

陌路散爱 提交于 2020-01-14 08:19:28
问题 I'm developing an installed application that accesses the google-api via OAuth2. There some security problems I currently know no real solution for. Doesn't matter how hard I obfuscate my client-secret a determined person can retrieve and use it. Two problems arise from this: somebody uses my client secret to modify user data: so far it seems that an installed application needs to be authorized again when no refresh token is used. However I'm not sure if this is part of the client api I use

Detect if HP Fortify is installed on remote computers

谁说胖子不能爱 提交于 2020-01-05 21:10:12
问题 Does anyone have a script to scan a network for a list of hosts to determine if HP Fortify software is installed and provide the version? I tried using a PowerShell script that scans the add/remove section of the registry but Fortify does not appear there. Any assistance would be most appreciated! 回答1: You have at least 3 ways of accomplishing this. Using the registry keys HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall and HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node

getPackageManager ().getInstalledPackages (PackageManager.GET_ACTIVITIES) returns null

五迷三道 提交于 2019-12-31 17:07:23
问题 If I call PackageManager pm = getPackageManager () ; List<PackageInfo> pis = pm.getInstalledPackages (PackageManager.GET_PROVIDERS) ; I get a list of installed packages, including any provivders they declare (i.e, with pis[i].providers possibly being non-null). However, if I include PackageManager.GET_ACITIVITIES among the flags, as in PackageManager pm = getPackageManager () ; List<PackageInfo> pis = pm.getInstalledPackages (PackageManager.GET_ACTIVITIES | PackageManager.GET_PROVIDERS) ; I

Android get list of non Play Store apps

左心房为你撑大大i 提交于 2019-12-24 00:47:11
问题 As a safety measure I would like to get the list of apps that aren't installed from the Play Store. Is there a way to do this? The packageManager contains a method getInstalledApplications but I don't know which flags to add to get the list. Any help would be appreciated. Edit: Here is an code example of v4_adi's answer. public static List<String> getAppsFromUnknownSources(Context context) { List<String> apps = new ArrayList<>(); PackageManager packageManager = context.getPackageManager();

Scan installed software on Windows

怎甘沉沦 提交于 2019-12-22 11:27:11
问题 Is there any way of scanning and querying installed software on Windows faster than using WMI? 回答1: If you have enough permissions, you may scan the local registry. Pertinent entries should be: HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall An example follows: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows

Get Application developer name [closed]

时光总嘲笑我的痴心妄想 提交于 2019-12-21 06:08:19
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I want to get the application developer name. Somebody please show me how I can get this. i tried but only get with installed applications and their icon . i want to display developer name 回答1: to get a list of the installed applications installed do the following : final Intent

Get Application developer name [closed]

余生颓废 提交于 2019-12-21 06:08:18
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I want to get the application developer name. Somebody please show me how I can get this. i tried but only get with installed applications and their icon . i want to display developer name 回答1: to get a list of the installed applications installed do the following : final Intent

Is Kiln for your server being retired? [closed]

萝らか妹 提交于 2019-12-20 11:55:13
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I was looking into the Kiln Harmony feature and saw that FogCreek only advertises it in On Demand. In the "How do you get it" section they don't even mention that it is not available for the On Premise version. So I went looking for details of the "Kiln on your Server" pricing to see what was included. I can't

Check computers for installed program in powershell

ぃ、小莉子 提交于 2019-12-13 05:43:10
问题 I want to be able to look for an installed program in powershell and output to a file the results. So far, I have something that will list the install programs, and select the string that has the name of the program, but I am not sure how to specify a text file for it to use for the list of systems, and a way to make it output cleanly. Get-WmiObject -Class Win32_Product -cn $computernamehere | Select-Object -Property Name | Sort-Object Name | Select-String Vmware | Out-File C:\Users