Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Javascript (http://www.velocityreviews.com/forums/f68-javascript.html)
-   -   Detecting MS Outlook 2002/2003 (http://www.velocityreviews.com/forums/t879782-detecting-ms-outlook-2002-2003-a.html)

Emil Frank 09-27-2004 10:49 PM

Detecting MS Outlook 2002/2003
 
Hi all,

Via client side JavaScript I need to detect whether Outlook 2002 or
2003 is installed on a client machine. How can I do that using
JavaScript?

Thanks,

Emil

Philip Ronan 09-27-2004 11:49 PM

Re: Detecting MS Outlook 2002/2003
 
On 27/9/04 11:49 pm, Emil Frank wrote:

> Hi all,
>
> Via client side JavaScript I need to detect whether Outlook 2002 or
> 2003 is installed on a client machine. How can I do that using
> JavaScript?
>
> Thanks,
>
> Emil


You can't. Client-side Javascript is built with security features to stop
people snooping around on their visitors' systems.

However there is an HTML solution. Something like this should do the trick:

===
<FORM action="...">
<P>Do you have Outlook 2002/2003 installed?</P>
<P><LABEL><INPUT type="radio" name="have_oe" value="no" checked>
No</LABEL><BR>
<LABEL><INPUT type="radio" name="have_oe" value="yes"> Yes</LABEL></P>
<P><INPUT type="submit" value="Submit"></P>
</FORM>
===

--
Philip Ronan
phil.ronanzzz@virgin.net
(Please remove the "z"s if replying by email)



Mark Preston 09-28-2004 01:28 PM

Re: Detecting MS Outlook 2002/2003
 
Emil Frank wrote:
>
> Via client side JavaScript I need to detect whether Outlook 2002 or
> 2003 is installed on a client machine. How can I do that using
> JavaScript?
>

You don't. You can't - security measures stop you snooping on a client
system at all.

Emil Frank 09-28-2004 05:00 PM

Re: Detecting MS Outlook 2002/2003
 
emilgfrank@yahoo.com (Emil Frank) wrote in message news:<6d819429.0409271449.7d741725@posting.google. com>...
> Hi all,
>
> Via client side JavaScript I need to detect whether Outlook 2002 or
> 2003 is installed on a client machine. How can I do that using
> JavaScript?
>
> Thanks,
>
> Emil


Hi,

Hmm...on the other side there are Java Script utilities available that
allow to detect whether Office or MS Messenger is installed on the
client side.

See:

http://silkworth.net/browser_os/plugs.html

So I was wondering whether the same could be done for Outlook?

Thanks,

Emil

Philip Ronan 09-28-2004 08:53 PM

Re: Detecting MS Outlook 2002/2003
 
On 28/9/04 6:00 pm, Emil Frank wrote:

> Hi,
>
> Hmm...on the other side there are Java Script utilities available that
> allow to detect whether Office or MS Messenger is installed on the
> client side.
>
> See:
>
> http://silkworth.net/browser_os/plugs.html
>
> So I was wondering whether the same could be done for Outlook?


The page you mentioned just checks for browser plug-ins. But even that can't
be done reliably. In fact all I get from this page is a string of Javascript
errors, which is kind of funny in a way because I'm actually using Internet
Explorer.

--
Philip Ronan
phil.ronanzzz@virgin.net
(Please remove the "z"s if replying by email)



kaeli 09-29-2004 02:56 PM

Re: Detecting MS Outlook 2002/2003
 
In article <6d819429.0409271449.7d741725@posting.google.com >,
emilgfrank@yahoo.com enlightened us with...
> Hi all,
>
> Via client side JavaScript I need to detect whether Outlook 2002 or
> 2003 is installed on a client machine. How can I do that using
> JavaScript?
>


Use an HTA (jscript). You have a lot more options there.

This cannot be done without supressing normal javascript security, which an
HTA is not subject to. I assume this is for an intranet app. Any other use,
you really can't.


--
--
~kaeli~
Join the Army, meet interesting people, kill them.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace


Emil Frank 10-13-2004 10:08 PM

Re: Detecting MS Outlook 2002/2003
 
Hi,

Thanks for your help!

Can you please point me to a few JScript samples that illustrate how
this could be done!

Thanks in advance,

Emil


kaeli <tiny_one@NOSPAM.comcast.net> wrote in message news:<MPG.1bc4892eb3b4df4c98a183@nntp.lucent.com>. ..
> In article <6d819429.0409271449.7d741725@posting.google.com >,
> emilgfrank@yahoo.com enlightened us with...
> > Hi all,
> >
> > Via client side JavaScript I need to detect whether Outlook 2002 or
> > 2003 is installed on a client machine. How can I do that using
> > JavaScript?
> >

>
> Use an HTA (jscript). You have a lot more options there.
>
> This cannot be done without supressing normal javascript security, which an
> HTA is not subject to. I assume this is for an intranet app. Any other use,
> you really can't.
>
>
> --



All times are GMT. The time now is 04:20 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


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