![]() |
check any software installed on client computer
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 ? |
AW: check any software installed on client computer
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. |
AW: check any software installed on client computer
Zitat:
Zitat:
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. |
AW: check any software installed on client computer
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" |
AW: check any software installed on client computer
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; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 20:35 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz