Use this tag for questions related to Installed Applications, in an iPhone for example.
Questions tagged [installed-applications]
102 questions
0
votes
2 answers
Listing all programs installed on Mac using Java
How can I list all the installed programs on Mac OS, date of installation and version using Java?
For example, on Windows I use wmic get product name, version, InstallDate.

Phrxn
- 69
- 7
0
votes
0 answers
Getting an access token for an installed application
I'm following the "Using OAuth 2.0 for Installed Applications" instructions, and have managed to get as far as obtaining the authorization code. However I'm having trouble working out the next step of getting the actual access token.
One of the…

Mark Pilant
- 1
- 2
0
votes
1 answer
Finding all the installed Apps on Android including Google Mobile Service Apps
This question has been asked before:
How to get list of ALL apps (including System Apps)?
However, when I called getPackageManager().getInstalledPackages(0), it did not return all the apps. For example, the following apps were not found by this…

JustWonder
- 2,373
- 3
- 25
- 36
0
votes
1 answer
how to access google datastore from an installed application on PC written in Python?
I have some entities added on datastore - made a little web app (in Python) to read and write from the datastore through endpoints. I am able to use the webapp through endpoints from javascript.
I want to access the web app from an installed…

Sungineer
- 23
- 5
0
votes
1 answer
(Android)Shared Preference: How can i filter the list with the result obtained from shared preference
This is what i have obtained from Shared preference, ApplicationInfo{1622e954 com.example.user.example},ApplicationInfo{1aed20fd com.example.browhistlog}
Any idea what is the hexadecimal referring to? Is it possible to filter the list into the 2…

Dave
- 117
- 11
0
votes
1 answer
Checking for specific software with C#
I am creating a basic piece of software that I want to check the local machine for specific pieces of software and then check a box to indicate that the software is on the machine. I went through multiple thread and found a nice bit of code that was…

Joe Pearson
- 105
- 10
0
votes
0 answers
how to get .apk file byte array from its packagename in AS3/AIR?
I want to know if it's possible to access a .apk file from an installed application on a device (android), via its package Name in as3/air?
Right now I have an ANE file which helps me to get packageName (ex: com.somesite.someApp or air.myApp), I…

SAS
- 1
- 2
0
votes
2 answers
Check If a program is installed on multiple computers using Powershell
I'm having issue with a script I've written and would love some help.
Please note I'm very new to powershell.
I've written a script that uses a txt file that contains remote computers on a domain, I appears to be working to some degree but in the…

Leon Sterling
- 3
- 1
- 1
- 2
0
votes
2 answers
Check computers for installed program in powershell
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…

Aaron
- 3,135
- 20
- 51
- 78
0
votes
1 answer
Android click on Button to display all installed app on screen
In my app i want like this :
User click on Button -> display all installed app with their icon (as we get in mobile screen in same index) on screen.
when click on installed app icon open specific click application.
any one giving me any idea or demo…

Nirav Mehta
- 1,715
- 4
- 23
- 42
0
votes
1 answer
Which user has installed an Android App?
When an user installs an Android App from Google Play, he/she has to login with a Google Account: does exists an Android API for getting which Google Account has been used for the App installation?
I would like to sell my App from Google Play, but I…

Dario Scoppelletti
- 479
- 3
- 16
0
votes
4 answers
Looking for a script/tool to dump a list of installed features and programs on Windows Server 2008 R2
The same compiled .Net / C++ / Com program does different things on two seemingly same computers. Both have DOZENS of things installed on them. I would like to figure out what the difference between the two is by looking at an ASCII diff. Before…

Hamish Grubijan
- 10,562
- 23
- 99
- 147
0
votes
1 answer
Can I get installed applications of phone from user's Windows Live ID in Windows Phone
I am developing Windows Phone application in that I want installed applications of phones but I searched a lot on this issue , there is no solution available. So I m trying to get Windows Live ID of windows phone so my question is that from Windows…

user3146084
- 83
- 1
- 6
0
votes
0 answers
Starting an installed app from my app
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
//String s1 = ?
Intent i = new Intent();
PackageManager manager = getPackageManager();
i = manager.getLaunchIntentForPackage(packageName);
…

vishalmullur
- 1,094
- 4
- 14
- 32
0
votes
1 answer
launch Android application's actions within another application
And I wonder if is possible to open an specific action I mean for example open a new mail in the gmail application, or new message on whatsapp stuff like that.
I'm trying to lunch application's specific actions within my application, so it…

cesaregb
- 765
- 1
- 11
- 27