Questions tagged [installed-applications]

Use this tag for questions related to Installed Applications, in an iPhone for example.

102 questions
4
votes
1 answer

MDM API Integration in iPhone

I am trying to do an enterprise application which need to list all the installed apps in iPhone and also should allow the user to delete some apps from current application.I know this is not possible using any direct API's.But I found that using MDM…
MobX
  • 2,640
  • 7
  • 33
  • 54
4
votes
2 answers

How to get list of ALL apps (including System Apps)?

I am doing the following to get the list of apps and I am only getting apps that were installed but not ALL apps, including system apps. I have tried the following: packageList1 =…
user1406716
  • 9,565
  • 22
  • 96
  • 151
4
votes
2 answers

How to share a link to facebook without facebook app installed?

I had shared link to facebook using share dialog successfully. https://developers.facebook.com/docs/android/share-dialog/ But it requires facebook app installed. So, How can i share to facebook which out facebook application install? Thanks
hoangmeo325
  • 450
  • 2
  • 10
  • 18
4
votes
1 answer

List all installed programs on windows using c++

I'm in trouble with this problem. I must list all installed programs on Windows OS (both x86 and x64), including Internet Explorer and other Windows components. I tried some solutions: Using WMI with query "SELECT * FROM Win32_Product", but the…
William Truong
  • 237
  • 3
  • 12
3
votes
4 answers

Check if program with specific version is installed

I'm trying to create a very simple script which would check if the a specific program is installed and if so return the version number for that program. I've been able to get to the point where I'm running the script and able to return a binary…
ayounis90
  • 323
  • 1
  • 6
  • 13
3
votes
2 answers

Android get list of non Play Store apps

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…
3
votes
1 answer

How to check if a home screen short-cut exists or not?

Is there a way to determine whether a particular home screen shortcut exists? Or is there a way to stop the Toast messages that appear when a home screen shortcut is installed and uninstalled? My application installs a shortcut on the home…
Aashish
  • 91
  • 1
  • 5
3
votes
1 answer

Get Application developer name

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
Namrata
  • 1,683
  • 1
  • 17
  • 28
3
votes
1 answer

How to launch system apps programmatically or how to filter out launchable system apps?

I want to make a list of installed and system applications. system applications means the pre-installed applications (applications which are installed at the time of manufacture). For this i categorized all the apps using (ApplicationInfo.flags &…
Devu Soman
  • 2,246
  • 13
  • 36
  • 57
2
votes
1 answer

Android App Installing "Application Not Installed"

I am trying to install and app. I developed it and signed it and exported it and when I go install on phone it comes up with "Application not installed". No the application has not been installed before and I need to remove it. No debug mode is not…
plantie105
  • 21
  • 1
2
votes
1 answer

How to detect through C# code whether Crystal Reports Basic is installed or not

My C# .NET application uses Crystal Report which relies on the presence of Crystal Reports Basics for Visual Studio 2008. How can I programmatically determine, if it's installed or not. My target is to show the User a Message to Install Crystal…
Shamim Hafiz - MSFT
  • 21,454
  • 43
  • 116
  • 176
2
votes
1 answer

MsiEnumProductsEx Not Working

I have the following application, to check installed programs in a system: #include #include #include using namespace std; void main() { UINT ret; DWORD dwIndex = 0; DWORD dwContext =…
mike
  • 1,319
  • 2
  • 11
  • 15
2
votes
3 answers

Get list of installed software of remote computer

Is it possible to get a list of installed software of a remote computer ? I know to do this for a local computer with use of Powershell. Is it possible with Powershell to get installed software of a remote computer and save this list on the remote…
Joep
  • 39
  • 1
  • 2
  • 10
2
votes
2 answers

PackageManager.getInstalledPackages() returns empty list

I am running into a very strange situation when using the PackageManager.getInstalledPackages() method. The first time I launch my activity I get a valid list of all the installed packages. But the second time I launch my activity I get an empty…
Justin
  • 6,564
  • 6
  • 37
  • 34
2
votes
0 answers

Android: How to create a filtering function with Checkbox

I am trying to create a filtering function with checkbox for my application. I have populated a list of installed application and i want to filter out only a few it. My idea is to get those checkbox that are checked and store it into an array. After…
Dave
  • 117
  • 11