Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > Detect windows client software installed on a client machine

Reply
Thread Tools

Detect windows client software installed on a client machine

 
 
Raj
Guest
Posts: n/a
 
      04-14-2004
Hi All,
Is it possible to detect if a client software is installed on a
machine using browser javascript.

we are building a web/windows software and when the user logs into
the web application, we want to detect if our software is installed on
the client machine and if so we want to provide more access, or else
we want to give the user a limited access to the web site

Thanks in Advance
Raj
 
Reply With Quote
 
 
 
 
Hywel
Guest
Posts: n/a
 
      04-14-2004
In article < >,
says...
> Hi All,
> Is it possible to detect if a client software is installed on a
> machine using browser javascript.
>
> we are building a web/windows software and when the user logs into
> the web application, we want to detect if our software is installed on
> the client machine and if so we want to provide more access, or else
> we want to give the user a limited access to the web site


var mySoftware = confirm("Is our software installed on your machine?");

--
Hywel I do not eat quiche
http://kibo.org.uk/
http://kibo.org.uk/mfaq.php
 
Reply With Quote
 
 
 
 
Reply Via Newsgroup
Guest
Posts: n/a
 
      04-15-2004
Raj wrote:

> Hi All,
> Is it possible to detect if a client software is installed on a
> machine using browser javascript.
>
> we are building a web/windows software and when the user logs into
> the web application, we want to detect if our software is installed on
> the client machine and if so we want to provide more access, or else
> we want to give the user a limited access to the web site
>
> Thanks in Advance
> Raj


Short answer is no... you could try cookies but there is no guarantee
that the user allows them or keeps them... If the user has your software
installed then *maybe* someone in some windoze newsgroup might be able
to tell you how to change the registery whereby mime-types or other such
info sent with browser headers *might* help tell you this info - However
javascript security prohibits any other method of you tinkering /
peeking under the hood of a windoze box... If you wanted to be evil, you
could try ActiveX but I deny them no matter who signs them...

randelld
 
Reply With Quote
 
Grant Wagner
Guest
Posts: n/a
 
      04-21-2004
Raj wrote:

> Hi All,
> Is it possible to detect if a client software is installed on a
> machine using browser javascript.
>
> we are building a web/windows software and when the user logs into
> the web application, we want to detect if our software is installed on
> the client machine and if so we want to provide more access, or else
> we want to give the user a limited access to the web site
>
> Thanks in Advance
> Raj


Have your software modify

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Internet
Settings\User Agent\Post Platform

and add a "String" value that uniquely identifies your application. It
will then be sent as part of the HTTP_USER_AGENT sent with each request
from IE (assuming the user is using IE and that they haven't tinkered with
values themselves). You only need give the "Name" of the key/value pair
the information you want to display, the "Data" portion is ignored.

--
| Grant Wagner <>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/...ce/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/a...ence_entry.asp

* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-deve...upgrade_2.html


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Detect if client has .NET framework installed fernandez.dan@gmail.com ASP .Net 3 12-21-2004 05:19 AM
Detect a software installed on the client machine Raj ASP .Net 1 02-17-2004 07:56 PM
Detect if Fonts are installed on web client ASP .Net 1 12-29-2003 03:08 PM
Detecting if Acrobat Reader is installed on Client machine Khodr ASP .Net 1 12-12-2003 03:44 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57