AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Programmieren allgemein check any software installed on client computer
Thema durchsuchen
Ansicht
Themen-Optionen

check any software installed on client computer

Ein Thema von question · begonnen am 11. Sep 2013 · letzter Beitrag vom 12. Sep 2013
Antwort Antwort
question

Registriert seit: 17. Apr 2013
97 Beiträge
 
#1

check any software installed on client computer

  Alt 11. Sep 2013, 21:45
is it possible to check whether a software(skype) is installed on the client machine or not? for example, i can check it in my computer under regedit the installation path (C:\Program Files\Skype...)
and i can check it with FileExists, but i dont know whether the client installed it on C or D or any other drive,then how can i check it ?
  Mit Zitat antworten Zitat
Benutzerbild von Luckie
Luckie

Registriert seit: 29. Mai 2002
37.621 Beiträge
 
Delphi 2006 Professional
 
#2

AW: check any software installed on client computer

  Alt 12. Sep 2013, 06:49
I don't really get what your problem or your intention is.

If the software is install via an installer there should be an installer entry in the registry. (Use Google to find the appropriate registry key.) But this only works for software with an uninstallers.
Michael
Ein Teil meines Codes würde euch verunsichern.
  Mit Zitat antworten Zitat
Furtbichler
(Gast)

n/a Beiträge
 
#3

AW: check any software installed on client computer

  Alt 12. Sep 2013, 07:03
is it possible to check whether a software(skype) is installed on the client machine
I don't really get what your problem or your intention is.
To be honest, it is very clear in my eyes.
However, besides Luckie's answer (which would cover most apps) you would have to search individually for each software. Most of the application will use the registry somehow so you could check for a specific entry. But you'd have to know which one to look for.
  Mit Zitat antworten Zitat
question

Registriert seit: 17. Apr 2013
97 Beiträge
 
#4

AW: check any software installed on client computer

  Alt 12. Sep 2013, 15:26
Thank you for your information, actually i my question was, if i click the button then it will it show me the result
"skype has already installed on this machine" // if skype is installed
otherwise
it will show me the message
"skype is not installed yet"
  Mit Zitat antworten Zitat
Benutzerbild von DeddyH
DeddyH

Registriert seit: 17. Sep 2006
Ort: Barchfeld
27.540 Beiträge
 
Delphi 11 Alexandria
 
#5

AW: check any software installed on client computer

  Alt 12. Sep 2013, 15:48
Something like this
Delphi-Quellcode:
function SkypeInstalled: Boolean;
begin
  (* Code *)
end;

procedure TSomeForm.SomeButtonClick(Sender: TObject);
begin
  if SkypeInstalled then
    ShowMessage('Skype is already installed')
  else
    ShowMessage('Skype has not been installed yet');
end;
Detlef
"Ich habe Angst vor dem Tag, an dem die Technologie unsere menschlichen Interaktionen übertrumpft. Die Welt wird eine Generation von Idioten bekommen." (Albert Einstein)
Dieser Tag ist längst gekommen
  Mit Zitat antworten Zitat
Antwort Antwort


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 15:11 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz