Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or Powershell

2017-09-06 Thread Kathy Wright
I am not sure why I am on the thread but does this have anything to do with B&P 
Company 

Sent from my iPhone

> On Sep 6, 2017, at 7:38 AM, Copus, Scott  wrote:
> 
> Hi Greg,
>  
> All good ideas.  Sometimes I like to go directly to the app’s own installed 
> registry key to determine installation status/version/etc.  You should be 
> able to use the appropriate commands in either batch (reg.exe) or PowerShell.
>  
> 32-bit: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mozilla\Mozilla 
> Firefox\(Default)
> 64-bit: HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\(Default)
>  
> PowerShell example:
>$FFversion32 = (Get-ItemProperty 
> 'HKLM:\SOFTWARE\Wow6432Node\Mozilla\Mozilla Firefox').'(Default)'
>$FFversion64 = (Get-ItemProperty 'HKLM:\SOFTWARE\Mozilla\Mozilla 
> Firefox').'(Default)'
>  
> --
> Scott Copus, Lab Systems Engineer
> Academic Technology | Western Kentucky University
> http://www.wku.edu/it/labs
>  
> From: Enterprise [mailto:enterprise-boun...@mozilla.org] On Behalf Of carré, 
> denis
> Sent: Wednesday, September 06, 2017 8:28 AM
> To: carré, denis ; 'Greg Haines' 
> ; enterprise@mozilla.org
> Subject: Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
> Powershell
>  
> Sorry, I sent my message too fast,
>  
> For the version (which was the subject …) I use this :
>  
> $FirefoxVersion = ( gp 
> HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\firefox*, 
> HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Firefox*).DisplayVersion
> (in case you would have 32 or 64 bits versions)
>  
> Or
> $FirefoxVersion = (get-ItemProperty 
> HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\firefox*).DisplayVersion
> (if only 32bits)
>  
> You can get the version from the previous var $FirefoxExe by starting it with 
> -v arg :
>  
> $FirefoxVersion = & $FirefoxExe "-v" | write-output
>  
>  
> 
> Réponse ou transfert de la part de Denis CARRE
> De : Enterprise [mailto:enterprise-boun...@mozilla.org] De la part de carré, 
> denis
> Envoyé : mercredi 6 septembre 2017 14:31
> À : 'Greg Haines' ; enterprise@mozilla.org
> Objet : Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
> Powershell
>  
> Hi,
>  
> I personnaly use the following in some PS scripts :
>  
>  
> $FirefoxExe = (Get-ItemProperty -Path 
> "hklm:software\microsoft\windows\currentversion\App 
> Paths\firefox.exe").'(default)'
> (full path to binary firefox.exe)
>  
> $FirefoxPath = (Get-ItemProperty -Path 
> "hklm:software\microsoft\windows\currentversion\App Paths\firefox.exe").Path
> (full path to the folder containing firefox.exe)
>  
> Don’t know if that’s the best or more esthetic way of doing it, but it’s 
> proven to work well.
>  
> 
> Réponse ou transfert de la part de Denis CARRE
> De : Enterprise [mailto:enterprise-boun...@mozilla.org] De la part de Greg 
> Haines
> Envoyé : mercredi 6 septembre 2017 11:36
> À : enterprise@mozilla.org
> Objet : [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
> Powershell
>  
> Hi Guys
>  
> ​How do i check via the command line or Powershell in Windows what version of 
> Firefox is being used?  Cant seem to find anything online that actually works.
>  
> Thanks​
>  
> --
> Greg Haines
> Systems Administrator
> End User Operations
> Technology Department
>  
> greg.hai...@telegraph.co.uk
> Telegraphmediagroup | 111 Buckingham Palace Road, London SW1W 0DT
>  
>  
>  
>  
> The contents of this message and any attachments to it are private, 
> confidential and may be the subject of legal privilege. Telegraph Media Group 
> Limited is registered in England and Wales (company number 451593) at 111 
> Buckingham Palace Road, London, SW1W 0DT. If you are not the intended 
> recipient of this email please inform us and the sender immediately. You must 
> not take any action based upon the contents of this email, nor copy it or 
> show it to anyone. Any unauthorised disclosure, use or dissemination of the 
> whole or part of the message contained in such email is prohibited. Any views 
> or opinions expressed do not necessarily represent those of Telegraph Media 
> Group Limited. It is the recipient’s responsibility to carry out any virus 
> checking.
> 
> 
> ___
> Enterprise mailing list
> Enterprise@mozilla.org
> https://mail.mozilla.org/listinfo/enterprise
> 
> To unsubscribe from this list, please visit 
> https://mail.mozilla.org/listinfo/enterprise or send an email to 
> enterprise-requ...@mozilla.org with a subject of "unsubscribe"
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or Powershell

2017-09-06 Thread Copus, Scott
Hi Greg,

All good ideas.  Sometimes I like to go directly to the app’s own installed 
registry key to determine installation status/version/etc.  You should be able 
to use the appropriate commands in either batch (reg.exe) or PowerShell.

32-bit: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mozilla\Mozilla 
Firefox\(Default)
64-bit: HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\(Default)

PowerShell example:
   $FFversion32 = (Get-ItemProperty 'HKLM:\SOFTWARE\Wow6432Node\Mozilla\Mozilla 
Firefox').'(Default)'
   $FFversion64 = (Get-ItemProperty 'HKLM:\SOFTWARE\Mozilla\Mozilla 
Firefox').'(Default)'

--
Scott Copus, Lab Systems Engineer
Academic Technology | Western Kentucky University
http://www.wku.edu/it/labs

From: Enterprise [mailto:enterprise-boun...@mozilla.org] On Behalf Of carré, 
denis
Sent: Wednesday, September 06, 2017 8:28 AM
To: carré, denis ; 'Greg Haines' 
; enterprise@mozilla.org
Subject: Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
Powershell

Sorry, I sent my message too fast,

For the version (which was the subject …) I use this :

$FirefoxVersion = ( gp 
HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\firefox*, 
HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Firefox*).DisplayVersion
(in case you would have 32 or 64 bits versions)

Or
$FirefoxVersion = (get-ItemProperty 
HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\firefox*).DisplayVersion
(if only 32bits)

You can get the version from the previous var $FirefoxExe by starting it with 
-v arg :

$FirefoxVersion = & $FirefoxExe "-v" | write-output



Réponse ou transfert de la part de Denis CARRE
De : Enterprise [mailto:enterprise-boun...@mozilla.org] De la part de carré, 
denis
Envoyé : mercredi 6 septembre 2017 14:31
À : 'Greg Haines' 
mailto:greg.hai...@telegraph.co.uk>>; 
enterprise@mozilla.org<mailto:enterprise@mozilla.org>
Objet : Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
Powershell

Hi,

I personnaly use the following in some PS scripts :


$FirefoxExe = (Get-ItemProperty -Path 
"hklm:software\microsoft\windows\currentversion\App 
Paths\firefox.exe").'(default)'
(full path to binary firefox.exe)

$FirefoxPath = (Get-ItemProperty -Path 
"hklm:software\microsoft\windows\currentversion\App Paths\firefox.exe").Path
(full path to the folder containing firefox.exe)

Don’t know if that’s the best or more esthetic way of doing it, but it’s proven 
to work well.


Réponse ou transfert de la part de Denis CARRE
De : Enterprise [mailto:enterprise-boun...@mozilla.org] De la part de Greg 
Haines
Envoyé : mercredi 6 septembre 2017 11:36
À : enterprise@mozilla.org<mailto:enterprise@mozilla.org>
Objet : [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
Powershell

Hi Guys

​How do i check via the command line or Powershell in Windows what version of 
Firefox is being used?  Cant seem to find anything online that actually works.

Thanks​

--
Greg Haines
Systems Administrator
End User Operations
Technology Department

greg.hai...@telegraph.co.uk<mailto:greg.hai...@telegraph.co.uk>
Telegraphmediagroup | 111 Buckingham Palace Road, London SW1W 0DT




The contents of this message and any attachments to it are private, 
confidential and may be the subject of legal privilege. Telegraph Media Group 
Limited is registered in England and Wales (company number 451593) at 111 
Buckingham Palace Road, London, SW1W 0DT. If you are not the intended recipient 
of this email please inform us and the sender immediately. You must not take 
any action based upon the contents of this email, nor copy it or show it to 
anyone. Any unauthorised disclosure, use or dissemination of the whole or part 
of the message contained in such email is prohibited. Any views or opinions 
expressed do not necessarily represent those of Telegraph Media Group Limited. 
It is the recipient’s responsibility to carry out any virus checking.

[Image supprimée par l'expéditeur.]
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or Powershell

2017-09-06 Thread carré , denis
Sorry, I sent my message too fast,

For the version (which was the subject …) I use this :

$FirefoxVersion = ( gp 
HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\firefox*, 
HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Firefox*).DisplayVersion
(in case you would have 32 or 64 bits versions)

Or
$FirefoxVersion = (get-ItemProperty 
HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\firefox*).DisplayVersion
(if only 32bits)

You can get the version from the previous var $FirefoxExe by starting it with 
-v arg :

$FirefoxVersion = & $FirefoxExe "-v" | write-output



Réponse ou transfert de la part de Denis CARRE
De : Enterprise [mailto:enterprise-boun...@mozilla.org] De la part de carré, 
denis
Envoyé : mercredi 6 septembre 2017 14:31
À : 'Greg Haines' ; enterprise@mozilla.org
Objet : Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
Powershell

Hi,

I personnaly use the following in some PS scripts :


$FirefoxExe = (Get-ItemProperty -Path 
"hklm:software\microsoft\windows\currentversion\App 
Paths\firefox.exe").'(default)'
(full path to binary firefox.exe)

$FirefoxPath = (Get-ItemProperty -Path 
"hklm:software\microsoft\windows\currentversion\App Paths\firefox.exe").Path
(full path to the folder containing firefox.exe)

Don’t know if that’s the best or more esthetic way of doing it, but it’s proven 
to work well.


Réponse ou transfert de la part de Denis CARRE
De : Enterprise [mailto:enterprise-boun...@mozilla.org] De la part de Greg 
Haines
Envoyé : mercredi 6 septembre 2017 11:36
À : enterprise@mozilla.org
Objet : [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
Powershell

Hi Guys

​How do i check via the command line or Powershell in Windows what version of 
Firefox is being used?  Cant seem to find anything online that actually works.

Thanks​

--
Greg Haines
Systems Administrator
End User Operations
Technology Department

greg.hai...@telegraph.co.uk<mailto:greg.hai...@telegraph.co.uk>
Telegraphmediagroup | 111 Buckingham Palace Road, London SW1W 0DT




The contents of this message and any attachments to it are private, 
confidential and may be the subject of legal privilege. Telegraph Media Group 
Limited is registered in England and Wales (company number 451593) at 111 
Buckingham Palace Road, London, SW1W 0DT. If you are not the intended recipient 
of this email please inform us and the sender immediately. You must not take 
any action based upon the contents of this email, nor copy it or show it to 
anyone. Any unauthorised disclosure, use or dissemination of the whole or part 
of the message contained in such email is prohibited. Any views or opinions 
expressed do not necessarily represent those of Telegraph Media Group Limited. 
It is the recipient’s responsibility to carry out any virus checking.

[Image supprimée par l'expéditeur.]
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or Powershell

2017-09-06 Thread Delise, John

#--

# A quick way to find a file version

$FF_FQP = "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"

$FFVersion = Get-ChildItem -path $FF_FQP

$FFVersion.VersionInfo

#--
# Substitute the fully qualified path of your firefox.exe if different than 
above. Or any other file with a known location that has a file version, not all 
do

If you have local admin rights on a remote computer you could substitute a UNC 
path.

The post that shows how to use the registry provider is also a great article 
when you want it all and you want it now!


John Delise
Windows Deployment Engineer
[Image32]
VW Credit, Inc.
IT Operations
1401 Franklin Boulevard
Libertyville, IL 60048
United States of America

Phone +1(847) 371-4136
john.del...@vwcredit.com<mailto:john.del...@vwcredit.com>

[VW-Credit-Inc.-Logo]


From: Enterprise [mailto:enterprise-boun...@mozilla.org] On Behalf Of Greg 
Haines
Sent: Wednesday, September 6, 2017 4:36 AM
To: enterprise@mozilla.org
Subject: [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
Powershell

Hi Guys

​How do i check via the command line or Powershell in Windows what version of 
Firefox is being used?  Cant seem to find anything online that actually works.

Thanks​

--
Greg Haines
Systems Administrator
End User Operations
Technology Department

greg.hai...@telegraph.co.uk<mailto:greg.hai...@telegraph.co.uk>
Telegraphmediagroup | 111 Buckingham Palace Road, London SW1W 0DT




The contents of this message and any attachments to it are private, 
confidential and may be the subject of legal privilege. Telegraph Media Group 
Limited is registered in England and Wales (company number 451593) at 111 
Buckingham Palace Road, London, SW1W 0DT. If you are not the intended recipient 
of this email please inform us and the sender immediately. You must not take 
any action based upon the contents of this email, nor copy it or show it to 
anyone. Any unauthorised disclosure, use or dissemination of the whole or part 
of the message contained in such email is prohibited. Any views or opinions 
expressed do not necessarily represent those of Telegraph Media Group Limited. 
It is the recipient’s responsibility to carry out any virus checking.

[http://s.telegraph.co.uk/Brand_Sig.jpg]
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or Powershell

2017-09-06 Thread carré , denis
Hi,

I personnaly use the following in some PS scripts :


$FirefoxExe = (Get-ItemProperty -Path 
"hklm:software\microsoft\windows\currentversion\App 
Paths\firefox.exe").'(default)'
(full path to binary firefox.exe)

$FirefoxPath = (Get-ItemProperty -Path 
"hklm:software\microsoft\windows\currentversion\App Paths\firefox.exe").Path
(full path to the folder containing firefox.exe)

Don’t know if that’s the best or more esthetic way of doing it, but it’s proven 
to work well.


Réponse ou transfert de la part de Denis CARRE
De : Enterprise [mailto:enterprise-boun...@mozilla.org] De la part de Greg 
Haines
Envoyé : mercredi 6 septembre 2017 11:36
À : enterprise@mozilla.org
Objet : [Mozilla Enterprise] Check Installed Firefox Version with CMD or 
Powershell

Hi Guys

​How do i check via the command line or Powershell in Windows what version of 
Firefox is being used?  Cant seem to find anything online that actually works.

Thanks​

--
Greg Haines
Systems Administrator
End User Operations
Technology Department

greg.hai...@telegraph.co.uk<mailto:greg.hai...@telegraph.co.uk>
Telegraphmediagroup | 111 Buckingham Palace Road, London SW1W 0DT




The contents of this message and any attachments to it are private, 
confidential and may be the subject of legal privilege. Telegraph Media Group 
Limited is registered in England and Wales (company number 451593) at 111 
Buckingham Palace Road, London, SW1W 0DT. If you are not the intended recipient 
of this email please inform us and the sender immediately. You must not take 
any action based upon the contents of this email, nor copy it or show it to 
anyone. Any unauthorised disclosure, use or dissemination of the whole or part 
of the message contained in such email is prohibited. Any views or opinions 
expressed do not necessarily represent those of Telegraph Media Group Limited. 
It is the recipient’s responsibility to carry out any virus checking.

[http://s.telegraph.co.uk/Brand_Sig.jpg]
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or Powershell

2017-09-06 Thread Greg Haines
Thank you sir.

On 6 September 2017 at 10:38, Alexandre Gauvrit 
wrote:

> There you go : https://blogs.technet.microsoft.com/heyscriptingguy/
> 2013/11/15/use-powershell-to-find-installed-software/
>
> On 06/09/2017 11:36, Greg Haines wrote:
>
> Hi Guys
>
> ​How do i check via the command line or Powershell in Windows what
> version of Firefox is being used?  Cant seem to find anything online that
> actually works.
>
> Thanks​
>
> --
> Greg Haines
> Systems Administrator
> End User Operations
> Technology Department
>
> greg.hai...@telegraph.co.uk
> *Telegraph**media**group* | 111 Buckingham Palace Road, London SW1W 0DT
>
>
>
>
> The contents of this message and any attachments to it are private,
> confidential and may be the subject of legal privilege. Telegraph Media
> Group Limited is registered in England and Wales (company number 451593) at
> 111 Buckingham Palace Road, London, SW1W 0DT. If you are not the intended
> recipient of this email please inform us and the sender immediately. You
> must not take any action based upon the contents of this email, nor copy it
> or show it to anyone. Any unauthorised disclosure, use or dissemination of
> the whole or part of the message contained in such email is prohibited. Any
> views or opinions expressed do not necessarily represent those of Telegraph
> Media Group Limited. It is the recipient’s responsibility to carry out any
> virus checking.
>
>
>
> ___
> Enterprise mailing 
> listEnterprise@mozilla.orghttps://mail.mozilla.org/listinfo/enterprise
>
> To unsubscribe from this list, please visit 
> https://mail.mozilla.org/listinfo/enterprise or send an email to 
> enterprise-requ...@mozilla.org with a subject of "unsubscribe"
>
>
> --
> Alexandre GAUVRIT
> Tranquil IT Systems
> Les Espaces Jules Verne, bâtiment A
> 12 avenue Jules Verne
> 44230 Saint Sébastien sur Loire
> tel : +33 (0) 2.40.97.57.55 
> <+33%202%2040%2097%2057%2055>http://www.tranquil-it-systems.fr
>
>


-- 
Greg Haines
Systems Administrator
End User Operations
Technology Department

greg.hai...@telegraph.co.uk
*Telegraph**media**group* | 111 Buckingham Palace Road, London SW1W 0DT

-- 



The contents of this message and any attachments to it are private, 
confidential and may be the subject of legal privilege. Telegraph Media 
Group Limited is registered in England and Wales (company number 451593) at 
111 Buckingham Palace Road, London, SW1W 0DT. If you are not the intended 
recipient of this email please inform us and the sender immediately. You 
must not take any action based upon the contents of this email, nor copy it 
or show it to anyone. Any unauthorised disclosure, use or dissemination of 
the whole or part of the message contained in such email is prohibited. Any 
views or opinions expressed do not necessarily represent those of Telegraph 
Media Group Limited. It is the recipient’s responsibility to carry out any 
virus checking.

-- 

___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

Re: [Mozilla Enterprise] Check Installed Firefox Version with CMD or Powershell

2017-09-06 Thread Alexandre Gauvrit
There you go : 
https://blogs.technet.microsoft.com/heyscriptingguy/2013/11/15/use-powershell-to-find-installed-software/



On 06/09/2017 11:36, Greg Haines wrote:

Hi Guys

​How do i check via the command line or Powershell in Windows what 
version of Firefox is being used?  Cant seem to find anything online 
that actually works.


Thanks​

--
Greg Haines
Systems Administrator
End User Operations
Technology Department

greg.hai...@telegraph.co.uk 
*Telegraph**media**group*| 111 Buckingham Palace Road, London SW1W 0DT

_
_
_
_The contents of this message and any attachments to it are private, 
confidential and may be the subject of legal privilege. Telegraph 
Media Group Limited is registered in England and Wales (company number 
451593) at 111 Buckingham Palace Road, London, SW1W 0DT. If you are 
not the intended recipient of this email please inform us and the 
sender immediately. You must not take any action based upon the 
contents of this email, nor copy it or show it to anyone. Any 
unauthorised disclosure, use or dissemination of the whole or part of 
the message contained in such email is prohibited. Any views or 
opinions expressed do not necessarily represent those of Telegraph 
Media Group Limited. It is the recipient’s responsibility to carry out 
any virus checking.




___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit https://mail.mozilla.org/listinfo/enterprise 
or send an email to enterprise-requ...@mozilla.org with a subject of 
"unsubscribe"


--
Alexandre GAUVRIT
Tranquil IT Systems
Les Espaces Jules Verne, bâtiment A
12 avenue Jules Verne
44230 Saint Sébastien sur Loire
tel : +33 (0) 2.40.97.57.55
http://www.tranquil-it-systems.fr

___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

[Mozilla Enterprise] Check Installed Firefox Version with CMD or Powershell

2017-09-06 Thread Greg Haines
Hi Guys

​How do i check via the command line or Powershell in Windows what version
of Firefox is being used?  Cant seem to find anything online that actually
works.

Thanks​

-- 
Greg Haines
Systems Administrator
End User Operations
Technology Department

greg.hai...@telegraph.co.uk
*Telegraph**media**group* | 111 Buckingham Palace Road, London SW1W 0DT

-- 



The contents of this message and any attachments to it are private, 
confidential and may be the subject of legal privilege. Telegraph Media 
Group Limited is registered in England and Wales (company number 451593) at 
111 Buckingham Palace Road, London, SW1W 0DT. If you are not the intended 
recipient of this email please inform us and the sender immediately. You 
must not take any action based upon the contents of this email, nor copy it 
or show it to anyone. Any unauthorised disclosure, use or dissemination of 
the whole or part of the message contained in such email is prohibited. Any 
views or opinions expressed do not necessarily represent those of Telegraph 
Media Group Limited. It is the recipient’s responsibility to carry out any 
virus checking.

-- 

___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"