Questions tagged [installed-applications]

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

102 questions
0
votes
0 answers

What is the iOS API to see when the running app was installed from the App Store?

I want to know when to warn and cripple after the free trial period. Thanks.
vonlost
  • 875
  • 1
  • 7
  • 11
0
votes
1 answer

com.apple.mobile.installation.plist for iPhone 4

// Declaration BOOL APCheckIfAppInstalled(NSString *bundleIdentifier); // Bundle identifier (eg. com.apple.mobilesafari) used to track apps // Implementation BOOL APCheckIfAppInstalled(NSString *bundleIdentifier) { static NSString *const…
Steve Ham
  • 3,067
  • 1
  • 29
  • 36
0
votes
2 answers

Powershell, Installed Software List from Registry Export Csv

been trying to get this to output to a csv. Works fine in of itself, but can't figure out how to do it. I guess because I'm using write-host it never actually goes in the pipeline which gives me a null pipeline input error. I've tried playing aroung…
0
votes
2 answers

Is there any method for getting details of all installed apps in a Windows device using shell commands

I need to get all installed applications and its details in a Windows device using shell commands. I tried using Get-appxpackage Get-WmiObject wmic Apps that were installed manually seems to be missing in the list. Please help by providing a…
0
votes
1 answer

Is SQL Server is installed on local machine

Possible Duplicate: How to detect SQL Server Express in WiX installer I am planning to install SQL Server in silent mode via installer of my application. What is the best way to detect that SQL Server Express 2008 is installed on machine? Some…
Nerielle
  • 984
  • 1
  • 11
  • 29
0
votes
1 answer

How to give repository access to installed GitHub app

I am using google cloud build for CI/CD purpose, in which I need to give access for specific repositories (can't use All repositories option). Is there any way to provide access by repository wise through python code. If not possible through python…
0
votes
0 answers

ModuleNotFoundError: No module named 'app_name'

I created a new app using python manage.py startapp associations I added it to installed apps but when I try to call the models inside management commands -fill_brands_table, I'm getting these error: from associations.models import Brand…
j.her
  • 187
  • 1
  • 2
  • 11
0
votes
0 answers

How to find all installed apps including those which was installed using .sh

I am looking for a way to identify on how to get a list all installed application including those applications on Linux which is not installed by any RPM package or YUM package. I have installed Oracle Database using .sh and [My company application…
0
votes
1 answer

C# check for installed version of .NET Framework and MS Visual C++ Redist

How can I check if .NET 4.5+ and MS Visual C++ Redist 2013/2015/2017 are installed on the machine that is running my application?
G.I Joe
  • 11
  • 2
0
votes
0 answers

Puppet and version of a package to install

Tell me how to specify the correct version for the package to be installed. Updating Virtualbox. Updated normally. But, does it every time. Although, the latest version is already installed. My manifest file: class virtualbox { package {…
Hanharr
  • 11
  • 2
0
votes
0 answers

Get all the applications for a selected permisson

Is there a way to get list of all applications that use certain permission group? For example, if I have some permissions like Location, Camera or Contacts, I want to show the list of applications that use selected permission. Here is the example…
alezniki
  • 185
  • 1
  • 14
0
votes
0 answers

Crash while trying to get a list of installed applications: PackageManager$NameNotFoundException

I have a crash at several users (running android 7.0/7.1) which I can't reproduce. The crash happens in a module in which I try to get the list of installed app. I tested the app on real hw and all sorts of emulators without issues. I show below a…
narb
  • 958
  • 1
  • 13
  • 39
0
votes
1 answer

Powershell remote installed softwares using workflow paralell

I am trying to convert my inventory script to be able to get a csv list of installed softwares on remote servers using workflows but I am not able to get it. $tod = Get-Date; $local = $PSScriptRoot +"\_Output\"+…
OwenS
  • 233
  • 2
  • 6
  • 20
0
votes
0 answers

Filter Installed Applications from Registry to only show list from Programs and Features

I am easily able to pull a list of applications on a system from the registry location of HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall but the list of applications I get back is much larger than the list shown in the Programs…
JoshF
  • 159
  • 4
  • 15
0
votes
1 answer

How to copy selected applications one grid view to another gridview

could you please guide me, I am going correct way or not?? 1.Getting installed applications in 1 st grid view.(Done) 2.select favorite apps from gridview 1 st grid view. (Here im getting array list[whats up,faceboot])(DONE) 3.May I know ,How to bind…
user2910387