Re: [WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-09-06 Thread Phill Hogland
The original post indicated I have created MSI/EXE using Wix .

If the '/EXE' implies a Bundle was created, and 'Condition' is used in the
Bundle then also take note that Burn built-in VersionNT and VersionNT64
variables have a different format than the related MSI variables.  
http://wixtoolset.org/documentation/manual/v3/bundle/bundle_built_in_variables.html




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-Conditional-installation-for-Windows-Server-2008-Windows-Server-2012-tp7588450p7588810.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58041391iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-08-29 Thread ak m
Condition ![CDATA[Installed OR (VersionNT = 501)]] /Condition

will install only on Windows XP 32-bit.


Any one, please help me to set the condition for the below OS which will
install only on that particular OS
1. Windows Server 2008
2 .Windows Server 2012.


Anyone Help me?



On Tue, Aug 27, 2013 at 4:20 PM, dileep s dileep.sanamp...@gmail.comwrote:

 Hi Blair,

 Thank you for the information.

 I am checking windows version to install the MSI/EXE file.

 Ex: In my code, I have used for Windows XP 32 bit,
 Condition ![CDATA[Installed OR (VersionNT = 501)]] /Condition

 So, installer will installs only Windows XP 32 bit machine.

 Same like, I have to create windows Installer for Windows Server 2008 and
 Windows Server 2012.

 How can I differentiate Windows server 2008 and Windows Vista as they have
 same VersionNT values.

 Regards,
 Dileep



 On Tue, Aug 27, 2013 at 3:19 PM, Blair Murri os...@live.com wrote:

  I'm not understanding your request. VersionNT is a property indicating
 the
  platform version of windows, expressed (in the case of MSI) as an
 integer.
  If you tell us what you are trying to do with VersionNT and what you want
  your package to do between different platforms, we could help more. An
  example of your current non-working code would help as well.
 
   Date: Tue, 27 Aug 2013 12:49:10 +0530
   From: dileep.sanamp...@gmail.com
   To: wix-users@lists.sourceforge.net
   Subject: [WiX-users] [Wix]: Conditional installation for Windows Server
  2008/Windows Server 2012
  
   Hi All,
  
   I have created MSI/EXE using Wix based on OS (Operating System).
  
   Used VersionNT property values for creating MSI/EXE.
  
   Installation is not working for Windows Server 2008/Windows Server
 2012.
  
   How can I check the conditional installation for Windows Server
   2008/Windows Server 2012.
  
   Please help me to solve this...
  
 
 --
   Introducing Performance Central, a new site from SourceForge and
   AppDynamics. Performance Central is your source for news, insights,
   analysis and resources for efficient Application Performance
 Management.
   Visit us today!
  
 
 http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
   ___
   WiX-users mailing list
   WiX-users@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wix-users
 
 
 
 --
  Introducing Performance Central, a new site from SourceForge and
  AppDynamics. Performance Central is your source for news, insights,
  analysis and resources for efficient Application Performance Management.
  Visit us today!
 
 http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 

 --
 Introducing Performance Central, a new site from SourceForge and
 AppDynamics. Performance Central is your source for news, insights,
 analysis and resources for efficient Application Performance Management.
 Visit us today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-08-29 Thread Phill Hogland
Take a look at the following two links.  While there is a 32 bit version of
Windows Server 2008, in most cases foks really mean Windows Server 2008 R2,
which, like Windows Server 2012 is only available in 64 bit configurations. 
VersionNT is undefined on 64 bit configurations and VersionNT64 should be
used.

http://msdn.microsoft.com/en-us/library/windows/desktop/aa372497(v=vs.85).aspx

http://msdn.microsoft.com/en-us/library/windows/desktop/aa372495(v=vs.85).aspx

When VersionNT = 501 that will only select Windows XP 32bit as state, so
if you want to detect the other configurations including 64 bit
configurations you need to add tests of VersionNT64 to your statement.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-Conditional-installation-for-Windows-Server-2008-Windows-Server-2012-tp7588450p7588566.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-08-29 Thread Sean Hall
VersionNT is always defined, whether it's 32-bit or not.
 
If you need to tell the difference between client and server (e.g. Windows 8 vs 
2012), look at 
http://robmensching.com/blog/posts/2008/11/3/how-to-determine-if-you-are-installing-on-windows-client
 (the NTProductType property).
 
Sean
 
 Date: Thu, 29 Aug 2013 05:41:36 -0700
 From: phogl...@rimage.com
 To: wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] [Wix]: Conditional installation for Windows Server 
 2008/Windows Server 2012
 
 Take a look at the following two links.  While there is a 32 bit version of
 Windows Server 2008, in most cases foks really mean Windows Server 2008 R2,
 which, like Windows Server 2012 is only available in 64 bit configurations. 
 VersionNT is undefined on 64 bit configurations and VersionNT64 should be
 used.
 
 http://msdn.microsoft.com/en-us/library/windows/desktop/aa372497(v=vs.85).aspx
 
 http://msdn.microsoft.com/en-us/library/windows/desktop/aa372495(v=vs.85).aspx
 
 When VersionNT = 501 that will only select Windows XP 32bit as state, so
 if you want to detect the other configurations including 64 bit
 configurations you need to add tests of VersionNT64 to your statement.
 
 
 
 --
 View this message in context: 
 http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-Conditional-installation-for-Windows-Server-2008-Windows-Server-2012-tp7588450p7588566.html
 Sent from the wix-users mailing list archive at Nabble.com.
 
 --
 Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
 Discover the easy way to master current and previous Microsoft technologies
 and advance your career. Get an incredible 1,500+ hours of step-by-step
 tutorial videos with LearnDevNow. Subscribe today and save!
 http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-08-29 Thread Phill Hogland
FYI - From this MSDN page:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa372495(v=vs.85).aspx
The installer sets the VersionNT property to the version number for the
operating system, *undefined if the operating system is not *Windows NT,
Windows 2000, Windows XP, Windows Vista, Windows Server 2008, or Windows 7.





--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-Conditional-installation-for-Windows-Server-2008-Windows-Server-2012-tp7588450p7588580.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-08-27 Thread dileep s
Hi All,

I have created MSI/EXE using Wix based on OS (Operating System).

Used VersionNT property values for creating MSI/EXE.

Installation is not working for Windows Server 2008/Windows Server 2012.

How can I check the conditional installation for Windows Server
2008/Windows Server 2012.

Please help me to solve this...
--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-08-27 Thread Blair Murri
I'm not understanding your request. VersionNT is a property indicating the 
platform version of windows, expressed (in the case of MSI) as an integer.
If you tell us what you are trying to do with VersionNT and what you want your 
package to do between different platforms, we could help more. An example of 
your current non-working code would help as well.

 Date: Tue, 27 Aug 2013 12:49:10 +0530
 From: dileep.sanamp...@gmail.com
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] [Wix]: Conditional installation for Windows Server 
 2008/Windows Server 2012
 
 Hi All,
 
 I have created MSI/EXE using Wix based on OS (Operating System).
 
 Used VersionNT property values for creating MSI/EXE.
 
 Installation is not working for Windows Server 2008/Windows Server 2012.
 
 How can I check the conditional installation for Windows Server
 2008/Windows Server 2012.
 
 Please help me to solve this...
 --
 Introducing Performance Central, a new site from SourceForge and 
 AppDynamics. Performance Central is your source for news, insights, 
 analysis and resources for efficient Application Performance Management. 
 Visit us today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-08-27 Thread dileep s
Hi Blair,

Thank you for the information.

I am checking windows version to install the MSI/EXE file.

Ex: In my code, I have used for Windows XP 32 bit,
Condition ![CDATA[Installed OR (VersionNT = 501)]] /Condition

So, installer will installs only Windows XP 32 bit machine.

Same like, I have to create windows Installer for Windows Server 2008 and
Windows Server 2012.

How can I differentiate Windows server 2008 and Windows Vista as they have
same VersionNT values.

Regards,
Dileep



On Tue, Aug 27, 2013 at 3:19 PM, Blair Murri os...@live.com wrote:

 I'm not understanding your request. VersionNT is a property indicating the
 platform version of windows, expressed (in the case of MSI) as an integer.
 If you tell us what you are trying to do with VersionNT and what you want
 your package to do between different platforms, we could help more. An
 example of your current non-working code would help as well.

  Date: Tue, 27 Aug 2013 12:49:10 +0530
  From: dileep.sanamp...@gmail.com
  To: wix-users@lists.sourceforge.net
  Subject: [WiX-users] [Wix]: Conditional installation for Windows Server
 2008/Windows Server 2012
 
  Hi All,
 
  I have created MSI/EXE using Wix based on OS (Operating System).
 
  Used VersionNT property values for creating MSI/EXE.
 
  Installation is not working for Windows Server 2008/Windows Server 2012.
 
  How can I check the conditional installation for Windows Server
  2008/Windows Server 2012.
 
  Please help me to solve this...
 
 --
  Introducing Performance Central, a new site from SourceForge and
  AppDynamics. Performance Central is your source for news, insights,
  analysis and resources for efficient Application Performance Management.
  Visit us today!
 
 http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 Introducing Performance Central, a new site from SourceForge and
 AppDynamics. Performance Central is your source for news, insights,
 analysis and resources for efficient Application Performance Management.
 Visit us today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [Wix]: Conditional installation for Windows Server 2008/Windows Server 2012

2013-08-27 Thread Porterfield, Tom
http://robmensching.com/blog/posts/2008/11/3/how-to-determine-if-you-are-installing-on-windows-client

should help.

Tom Porterfield
-Original Message-
From: dileep s [mailto:dileep.sanamp...@gmail.com] 
Sent: Tuesday, August 27, 2013 6:51 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] [Wix]: Conditional installation for Windows Server 
2008/Windows Server 2012

Hi Blair,

Thank you for the information.

I am checking windows version to install the MSI/EXE file.

Ex: In my code, I have used for Windows XP 32 bit,
Condition ![CDATA[Installed OR (VersionNT = 501)]] /Condition

So, installer will installs only Windows XP 32 bit machine.

Same like, I have to create windows Installer for Windows Server 2008 and
Windows Server 2012.

How can I differentiate Windows server 2008 and Windows Vista as they have
same VersionNT values.

Regards,
Dileep



On Tue, Aug 27, 2013 at 3:19 PM, Blair Murri os...@live.com wrote:

 I'm not understanding your request. VersionNT is a property indicating the
 platform version of windows, expressed (in the case of MSI) as an integer.
 If you tell us what you are trying to do with VersionNT and what you want
 your package to do between different platforms, we could help more. An
 example of your current non-working code would help as well.

  Date: Tue, 27 Aug 2013 12:49:10 +0530
  From: dileep.sanamp...@gmail.com
  To: wix-users@lists.sourceforge.net
  Subject: [WiX-users] [Wix]: Conditional installation for Windows Server
 2008/Windows Server 2012
 
  Hi All,
 
  I have created MSI/EXE using Wix based on OS (Operating System).
 
  Used VersionNT property values for creating MSI/EXE.
 
  Installation is not working for Windows Server 2008/Windows Server 2012.
 
  How can I check the conditional installation for Windows Server
  2008/Windows Server 2012.
 
  Please help me to solve this...
 
 --
  Introducing Performance Central, a new site from SourceForge and
  AppDynamics. Performance Central is your source for news, insights,
  analysis and resources for efficient Application Performance Management.
  Visit us today!
 
 http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 Introducing Performance Central, a new site from SourceForge and
 AppDynamics. Performance Central is your source for news, insights,
 analysis and resources for efficient Application Performance Management.
 Visit us today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users